diff --git a/corpus/statements.txt b/corpus/statements.txt index 4335065..417d507 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -100,6 +100,43 @@ done (command (command_name (word)) (simple_expansion (variable_name))) (variable_assignment (variable_name) (raw_string))))) +==================================== +C-style for statements +==================================== + +for (( c=1; c<=5; c++ )) +do + echo $c +done + +for (( c=1; c<=5; c++ )) { + echo $c +} + +for (( ; ; )) +do + echo 'forever' +done + +--- + +(program + (c_style_for_statement + (word) + (binary_expression (word) (word)) + (word) + (do_group + (command (command_name (word)) (simple_expansion (variable_name))))) + (c_style_for_statement + (word) + (binary_expression (word) (word)) + (word) + (compound_statement + (command (command_name (word)) (simple_expansion (variable_name))))) + (c_style_for_statement + (do_group + (command (command_name (word)) (raw_string))))) + ==================================== If statements ==================================== diff --git a/grammar.js b/grammar.js index a0b59f2..f5f204a 100644 --- a/grammar.js +++ b/grammar.js @@ -63,6 +63,7 @@ module.exports = grammar({ $.test_command, $.negated_command, $.for_statement, + $.c_style_for_statement, $.while_statement, $.if_statement, $.case_statement, @@ -83,6 +84,21 @@ module.exports = grammar({ $.do_group ), + c_style_for_statement: $ => seq( + 'for', + '((', + optional($._expression), + $._terminator, + optional($._expression), + $._terminator, + optional($._expression), + '))', + choice( + $.do_group, + $.compound_statement + ) + ), + while_statement: $ => seq( 'while', $._terminated_statement, diff --git a/src/grammar.json b/src/grammar.json index 75c767c..c21bf1a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -53,6 +53,10 @@ "type": "SYMBOL", "name": "for_statement" }, + { + "type": "SYMBOL", + "name": "c_style_for_statement" + }, { "type": "SYMBOL", "name": "while_statement" @@ -128,6 +132,80 @@ } ] }, + "c_style_for_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "((" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "))" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "do_group" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] + } + ] + }, "while_statement": { "type": "SEQ", "members": [ diff --git a/src/parser.c b/src/parser.c index 83683b9..09634e2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,10 +6,10 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 2887 -#define SYMBOL_COUNT 144 +#define STATE_COUNT 3057 +#define SYMBOL_COUNT 147 #define ALIAS_COUNT 5 -#define TOKEN_COUNT 90 +#define TOKEN_COUNT 92 #define EXTERNAL_TOKEN_COUNT 12 #define MAX_ALIAS_SEQUENCE_LENGTH 8 @@ -25,143 +25,146 @@ enum { sym_variable_name = 9, anon_sym_for = 10, anon_sym_in = 11, - anon_sym_while = 12, - anon_sym_do = 13, - anon_sym_done = 14, - anon_sym_if = 15, - anon_sym_then = 16, - anon_sym_fi = 17, - anon_sym_elif = 18, - anon_sym_else = 19, - anon_sym_case = 20, - anon_sym_esac = 21, - anon_sym_PIPE = 22, - anon_sym_RPAREN = 23, - anon_sym_SEMI_SEMI = 24, - anon_sym_function = 25, - anon_sym_LPAREN = 26, - anon_sym_LBRACE = 27, - anon_sym_RBRACE = 28, - anon_sym_PIPE_AMP = 29, - anon_sym_AMP_AMP = 30, - anon_sym_PIPE_PIPE = 31, - anon_sym_BANG = 32, - anon_sym_LBRACK = 33, - anon_sym_RBRACK = 34, - anon_sym_LBRACK_LBRACK = 35, - anon_sym_RBRACK_RBRACK = 36, - anon_sym_declare = 37, - anon_sym_typeset = 38, - anon_sym_export = 39, - anon_sym_readonly = 40, - anon_sym_local = 41, - anon_sym_unset = 42, - anon_sym_unsetenv = 43, - anon_sym_EQ_TILDE = 44, - anon_sym_EQ_EQ = 45, - anon_sym_EQ = 46, - anon_sym_PLUS_EQ = 47, - anon_sym_LT = 48, - anon_sym_GT = 49, - anon_sym_GT_GT = 50, - anon_sym_AMP_GT = 51, - anon_sym_AMP_GT_GT = 52, - anon_sym_LT_AMP = 53, - anon_sym_GT_AMP = 54, - anon_sym_LT_LT = 55, - anon_sym_LT_LT_DASH = 56, - anon_sym_LT_LT_LT = 57, - anon_sym_BANG_EQ = 58, - sym__special_characters = 59, - anon_sym_DQUOTE = 60, - anon_sym_DOLLAR = 61, - sym__string_content = 62, - sym_raw_string = 63, - anon_sym_POUND = 64, - anon_sym_DOLLAR_LBRACE = 65, - anon_sym_SLASH = 66, - anon_sym_COLON = 67, - anon_sym_COLON_QMARK = 68, - anon_sym_COLON_DASH = 69, - anon_sym_PERCENT = 70, - anon_sym_DASH = 71, - anon_sym_DOLLAR_LPAREN = 72, - anon_sym_BQUOTE = 73, - anon_sym_LT_LPAREN = 74, - anon_sym_GT_LPAREN = 75, - sym_comment = 76, - aux_sym_SLASH_BSLASHw_PLUS_SLASH = 77, - anon_sym_STAR = 78, - anon_sym_AT = 79, - anon_sym_QMARK = 80, - anon_sym_0 = 81, - anon_sym__ = 82, - sym_word = 83, - sym_test_operator = 84, - sym_regex = 85, - sym_regex_without_right_brace = 86, - anon_sym_SEMI = 87, - anon_sym_LF = 88, - anon_sym_AMP = 89, - sym_program = 90, - sym__terminated_statement = 91, - sym_for_statement = 92, - sym_while_statement = 93, - sym_do_group = 94, - sym_if_statement = 95, - sym_elif_clause = 96, - sym_else_clause = 97, - sym_case_statement = 98, - sym_case_item = 99, - sym_last_case_item = 100, - sym_function_definition = 101, - sym_compound_statement = 102, - sym_subshell = 103, - sym_pipeline = 104, - sym_list = 105, - sym_negated_command = 106, - sym_test_command = 107, - sym_declaration_command = 108, - sym_unset_command = 109, - sym_command = 110, - sym_command_name = 111, - sym_variable_assignment = 112, - sym_subscript = 113, - sym_file_redirect = 114, - sym_heredoc_redirect = 115, - sym_heredoc_body = 116, - sym_herestring_redirect = 117, - sym__expression = 118, - sym_binary_expression = 119, - sym_unary_expression = 120, - sym_parenthesized_expression = 121, - sym_concatenation = 122, - sym_string = 123, - sym_array = 124, - sym_simple_expansion = 125, - sym_string_expansion = 126, - sym_expansion = 127, - sym_command_substitution = 128, - sym_process_substitution = 129, - aux_sym_program_repeat1 = 130, - aux_sym_for_statement_repeat1 = 131, - aux_sym_while_statement_repeat1 = 132, - aux_sym_if_statement_repeat1 = 133, - aux_sym_case_statement_repeat1 = 134, - aux_sym_case_item_repeat1 = 135, - aux_sym_declaration_command_repeat1 = 136, - aux_sym_unset_command_repeat1 = 137, - aux_sym_command_repeat1 = 138, - aux_sym_command_repeat2 = 139, - aux_sym_heredoc_body_repeat1 = 140, - aux_sym_concatenation_repeat1 = 141, - aux_sym_string_repeat1 = 142, - aux_sym_expansion_repeat1 = 143, - alias_sym_case_item = 144, - alias_sym_regex = 145, - alias_sym_special_variable_name = 146, - alias_sym_variable_name = 147, - alias_sym_word = 148, + anon_sym_LPAREN_LPAREN = 12, + anon_sym_RPAREN_RPAREN = 13, + anon_sym_while = 14, + anon_sym_do = 15, + anon_sym_done = 16, + anon_sym_if = 17, + anon_sym_then = 18, + anon_sym_fi = 19, + anon_sym_elif = 20, + anon_sym_else = 21, + anon_sym_case = 22, + anon_sym_esac = 23, + anon_sym_PIPE = 24, + anon_sym_RPAREN = 25, + anon_sym_SEMI_SEMI = 26, + anon_sym_function = 27, + anon_sym_LPAREN = 28, + anon_sym_LBRACE = 29, + anon_sym_RBRACE = 30, + anon_sym_PIPE_AMP = 31, + anon_sym_AMP_AMP = 32, + anon_sym_PIPE_PIPE = 33, + anon_sym_BANG = 34, + anon_sym_LBRACK = 35, + anon_sym_RBRACK = 36, + anon_sym_LBRACK_LBRACK = 37, + anon_sym_RBRACK_RBRACK = 38, + anon_sym_declare = 39, + anon_sym_typeset = 40, + anon_sym_export = 41, + anon_sym_readonly = 42, + anon_sym_local = 43, + anon_sym_unset = 44, + anon_sym_unsetenv = 45, + anon_sym_EQ_TILDE = 46, + anon_sym_EQ_EQ = 47, + anon_sym_EQ = 48, + anon_sym_PLUS_EQ = 49, + anon_sym_LT = 50, + anon_sym_GT = 51, + anon_sym_GT_GT = 52, + anon_sym_AMP_GT = 53, + anon_sym_AMP_GT_GT = 54, + anon_sym_LT_AMP = 55, + anon_sym_GT_AMP = 56, + anon_sym_LT_LT = 57, + anon_sym_LT_LT_DASH = 58, + anon_sym_LT_LT_LT = 59, + anon_sym_BANG_EQ = 60, + sym__special_characters = 61, + anon_sym_DQUOTE = 62, + anon_sym_DOLLAR = 63, + sym__string_content = 64, + sym_raw_string = 65, + anon_sym_POUND = 66, + anon_sym_DOLLAR_LBRACE = 67, + anon_sym_SLASH = 68, + anon_sym_COLON = 69, + anon_sym_COLON_QMARK = 70, + anon_sym_COLON_DASH = 71, + anon_sym_PERCENT = 72, + anon_sym_DASH = 73, + anon_sym_DOLLAR_LPAREN = 74, + anon_sym_BQUOTE = 75, + anon_sym_LT_LPAREN = 76, + anon_sym_GT_LPAREN = 77, + sym_comment = 78, + aux_sym_SLASH_BSLASHw_PLUS_SLASH = 79, + anon_sym_STAR = 80, + anon_sym_AT = 81, + anon_sym_QMARK = 82, + anon_sym_0 = 83, + anon_sym__ = 84, + sym_word = 85, + sym_test_operator = 86, + sym_regex = 87, + sym_regex_without_right_brace = 88, + anon_sym_SEMI = 89, + anon_sym_LF = 90, + anon_sym_AMP = 91, + sym_program = 92, + sym__terminated_statement = 93, + sym_for_statement = 94, + sym_c_style_for_statement = 95, + sym_while_statement = 96, + sym_do_group = 97, + sym_if_statement = 98, + sym_elif_clause = 99, + sym_else_clause = 100, + sym_case_statement = 101, + sym_case_item = 102, + sym_last_case_item = 103, + sym_function_definition = 104, + sym_compound_statement = 105, + sym_subshell = 106, + sym_pipeline = 107, + sym_list = 108, + sym_negated_command = 109, + sym_test_command = 110, + sym_declaration_command = 111, + sym_unset_command = 112, + sym_command = 113, + sym_command_name = 114, + sym_variable_assignment = 115, + sym_subscript = 116, + sym_file_redirect = 117, + sym_heredoc_redirect = 118, + sym_heredoc_body = 119, + sym_herestring_redirect = 120, + sym__expression = 121, + sym_binary_expression = 122, + sym_unary_expression = 123, + sym_parenthesized_expression = 124, + sym_concatenation = 125, + sym_string = 126, + sym_array = 127, + sym_simple_expansion = 128, + sym_string_expansion = 129, + sym_expansion = 130, + sym_command_substitution = 131, + sym_process_substitution = 132, + aux_sym_program_repeat1 = 133, + aux_sym_for_statement_repeat1 = 134, + aux_sym_while_statement_repeat1 = 135, + aux_sym_if_statement_repeat1 = 136, + aux_sym_case_statement_repeat1 = 137, + aux_sym_case_item_repeat1 = 138, + aux_sym_declaration_command_repeat1 = 139, + aux_sym_unset_command_repeat1 = 140, + aux_sym_command_repeat1 = 141, + aux_sym_command_repeat2 = 142, + aux_sym_heredoc_body_repeat1 = 143, + aux_sym_concatenation_repeat1 = 144, + aux_sym_string_repeat1 = 145, + aux_sym_expansion_repeat1 = 146, + alias_sym_case_item = 147, + alias_sym_regex = 148, + alias_sym_special_variable_name = 149, + alias_sym_variable_name = 150, + alias_sym_word = 151, }; static const char *ts_symbol_names[] = { @@ -177,6 +180,8 @@ static const char *ts_symbol_names[] = { [ts_builtin_sym_end] = "END", [anon_sym_for] = "for", [anon_sym_in] = "in", + [anon_sym_LPAREN_LPAREN] = "((", + [anon_sym_RPAREN_RPAREN] = "))", [anon_sym_while] = "while", [anon_sym_do] = "do", [anon_sym_done] = "done", @@ -258,6 +263,7 @@ static const char *ts_symbol_names[] = { [sym_program] = "program", [sym__terminated_statement] = "_terminated_statement", [sym_for_statement] = "for_statement", + [sym_c_style_for_statement] = "c_style_for_statement", [sym_while_statement] = "while_statement", [sym_do_group] = "do_group", [sym_if_statement] = "if_statement", @@ -365,6 +371,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LPAREN_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN_RPAREN] = { + .visible = true, + .named = false, + }, [anon_sym_while] = { .visible = true, .named = false, @@ -689,6 +703,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_c_style_for_statement] = { + .visible = true, + .named = true, + }, [sym_while_statement] = { .visible = true, .named = true, @@ -1674,16 +1692,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 68: if (lookahead == '#') ADVANCE(57); - if (lookahead == '&') + if (lookahead == '(') ADVANCE(69); - if (lookahead == ')') - ADVANCE(18); if (lookahead == '\\') - SKIP(70); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '|') - ADVANCE(52); + SKIP(71); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1691,26 +1703,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(68); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(71); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(72); END_STATE(); case 69: - if (lookahead == '&') - ADVANCE(12); + if (lookahead == '(') + ADVANCE(70); END_STATE(); case 70: + ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); + END_STATE(); + case 71: if (lookahead == '\n') SKIP(68); END_STATE(); - case 71: + case 72: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(71); + ADVANCE(72); END_STATE(); - case 72: + case 73: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -1728,7 +1744,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(73); + ADVANCE(74); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -1741,7 +1757,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(72); + SKIP(73); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -1749,9 +1765,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 73: + case 74: if (lookahead == '\n') - SKIP(72); + SKIP(73); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1759,7 +1775,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 74: + case 75: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -1779,7 +1795,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - ADVANCE(75); + ADVANCE(76); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -1792,7 +1808,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(74); + SKIP(75); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -1800,9 +1816,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 75: + case 76: if (lookahead == '\n') - SKIP(74); + SKIP(75); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1810,7 +1826,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 76: + case 77: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -1823,16 +1839,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(15); if (lookahead == '(') ADVANCE(17); + if (lookahead == ')') + ADVANCE(18); if (lookahead == '-') - ADVANCE(77); + ADVANCE(78); if (lookahead == '<') - ADVANCE(79); - if (lookahead == '>') ADVANCE(80); + if (lookahead == '>') + ADVANCE(81); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(81); + ADVANCE(82); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -1845,7 +1863,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(76); + SKIP(77); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -1853,13 +1871,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 77: + case 78: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(3); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(78); + ADVANCE(79); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1874,23 +1892,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '`' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 78: + case 79: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(78); - END_STATE(); - case 79: - if (lookahead == '(') - ADVANCE(32); + ADVANCE(79); END_STATE(); case 80: if (lookahead == '(') - ADVANCE(41); + ADVANCE(32); END_STATE(); case 81: + if (lookahead == '(') + ADVANCE(41); + END_STATE(); + case 82: if (lookahead == '\n') - SKIP(76); + SKIP(77); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1898,9 +1916,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 82: + case 83: if (lookahead == '\n') - ADVANCE(83); + ADVANCE(84); if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -1908,19 +1926,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(7); if (lookahead == '&') - ADVANCE(84); + ADVANCE(85); if (lookahead == '\'') ADVANCE(15); if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(79); - if (lookahead == '>') ADVANCE(80); + if (lookahead == '>') + ADVANCE(81); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(85); + ADVANCE(86); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -1934,26 +1952,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(82); + SKIP(83); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(86); + ADVANCE(87); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(4); END_STATE(); - case 83: + case 84: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 84: + case 85: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(12); END_STATE(); - case 85: + case 86: if (lookahead == '\n') - SKIP(82); + SKIP(83); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1961,7 +1979,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 86: + case 87: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == '\\') ADVANCE(3); @@ -1969,7 +1987,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(86); + ADVANCE(87); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1984,9 +2002,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 87: + case 88: if (lookahead == '\n') - ADVANCE(83); + ADVANCE(84); if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -2002,13 +2020,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(30); if (lookahead == '=') - ADVANCE(88); + ADVANCE(89); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(89); + ADVANCE(90); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2022,12 +2040,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(87); + SKIP(88); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(4); END_STATE(); - case 88: + case 89: ACCEPT_TOKEN(sym_word); if (lookahead == '=') ADVANCE(37); @@ -2048,9 +2066,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '~')) ADVANCE(4); END_STATE(); - case 89: + case 90: if (lookahead == '\n') - SKIP(87); + SKIP(88); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2058,41 +2076,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 90: + case 91: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') - ADVANCE(91); + ADVANCE(92); if (lookahead == '$') ADVANCE(7); if (lookahead == '\\') - ADVANCE(95); + ADVANCE(96); if (lookahead == '`') ADVANCE(50); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(96); + ADVANCE(97); if (lookahead != 0) - ADVANCE(92); - END_STATE(); - case 91: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(92); - if (lookahead == '\\') - ADVANCE(94); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(91); + ADVANCE(93); END_STATE(); case 92: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\\') + if (lookahead == '\n') ADVANCE(93); + if (lookahead == '\\') + ADVANCE(95); if (lookahead != 0 && lookahead != '\"' && lookahead != '$' && @@ -2101,36 +2109,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 93: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(92); if (lookahead == '\\') + ADVANCE(94); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') ADVANCE(93); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(92); - if (lookahead != 0) - ADVANCE(92); END_STATE(); case 94: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(92); + ADVANCE(93); if (lookahead == '\\') ADVANCE(94); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(91); + ADVANCE(93); if (lookahead != 0) - ADVANCE(91); + ADVANCE(93); END_STATE(); case 95: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(96); - if (lookahead == '\\') ADVANCE(93); + if (lookahead == '\\') + ADVANCE(95); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') @@ -2140,91 +2145,137 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 96: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '#') - ADVANCE(91); + if (lookahead == '\n') + ADVANCE(97); if (lookahead == '\\') - ADVANCE(95); + ADVANCE(94); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(93); + if (lookahead != 0) + ADVANCE(93); + END_STATE(); + case 97: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '#') + ADVANCE(92); + if (lookahead == '\\') + ADVANCE(96); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(96); + ADVANCE(97); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && lookahead != '`') - ADVANCE(92); + ADVANCE(93); END_STATE(); - case 97: + case 98: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') ADVANCE(6); if (lookahead == '$') - ADVANCE(98); + ADVANCE(99); if (lookahead == '\'') ADVANCE(15); if (lookahead == '*') - ADVANCE(99); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '0') + if (lookahead == '-') ADVANCE(101); - if (lookahead == '?') + if (lookahead == '0') ADVANCE(102); - if (lookahead == '@') + if (lookahead == '?') ADVANCE(103); + if (lookahead == '@') + ADVANCE(104); if (lookahead == '\\') - SKIP(104); + SKIP(105); if (lookahead == '_') - ADVANCE(105); + ADVANCE(106); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(97); + SKIP(98); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(71); - END_STATE(); - case 98: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ADVANCE(72); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 101: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 102: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(71); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_QMARK); + ADVANCE(72); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 104: - if (lookahead == '\n') - SKIP(97); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 105: + if (lookahead == '\n') + SKIP(98); + END_STATE(); + case 106: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(71); + ADVANCE(72); END_STATE(); - case 106: + case 107: + if (lookahead == '#') + ADVANCE(6); + if (lookahead == '$') + ADVANCE(99); + if (lookahead == '*') + ADVANCE(100); + if (lookahead == '-') + ADVANCE(101); + if (lookahead == '0') + ADVANCE(102); + if (lookahead == '?') + ADVANCE(103); + if (lookahead == '@') + ADVANCE(104); + if (lookahead == '\\') + SKIP(108); + if (lookahead == '_') + ADVANCE(106); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(107); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(72); + END_STATE(); + case 108: if (lookahead == '\n') - ADVANCE(83); + SKIP(107); + END_STATE(); + case 109: + if (lookahead == '\n') + ADVANCE(84); if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -2242,13 +2293,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(30); if (lookahead == '=') - ADVANCE(88); + ADVANCE(89); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(107); + ADVANCE(110); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2262,14 +2313,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(106); + SKIP(109); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(4); END_STATE(); - case 107: + case 110: if (lookahead == '\n') - SKIP(106); + SKIP(109); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2277,26 +2328,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 108: + case 111: if (lookahead == 0) ADVANCE(1); if (lookahead == '#') ADVANCE(57); if (lookahead == '\\') - SKIP(109); + SKIP(112); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(108); + SKIP(111); END_STATE(); - case 109: + case 112: if (lookahead == '\n') - SKIP(108); + SKIP(111); END_STATE(); - case 110: + case 113: if (lookahead == '\n') - ADVANCE(83); + ADVANCE(84); if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -2316,7 +2367,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(111); + ADVANCE(114); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2330,14 +2381,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(110); + SKIP(113); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(4); END_STATE(); - case 111: + case 114: if (lookahead == '\n') - SKIP(110); + SKIP(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2345,9 +2396,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 112: + case 115: if (lookahead == '\n') - ADVANCE(83); + ADVANCE(84); if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -2365,13 +2416,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(30); if (lookahead == '=') - ADVANCE(88); + ADVANCE(89); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(113); + ADVANCE(116); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2385,14 +2436,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(112); + SKIP(115); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(4); END_STATE(); - case 113: + case 116: if (lookahead == '\n') - SKIP(112); + SKIP(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2400,7 +2451,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 114: + case 117: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -2412,62 +2463,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(17); if (lookahead == '<') - ADVANCE(79); - if (lookahead == '>') ADVANCE(80); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(115); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(114); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 115: - if (lookahead == '\n') - SKIP(114); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 116: - if (lookahead == '\n') - ADVANCE(83); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(117); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(79); if (lookahead == '>') - ADVANCE(80); + ADVANCE(81); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') @@ -2481,20 +2479,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(61); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(116); + SKIP(117); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 117: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); case 118: if (lookahead == '\n') - SKIP(116); + SKIP(117); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2503,27 +2501,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(4); END_STATE(); case 119: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == '\\') - SKIP(120); - if (lookahead == '{') - ADVANCE(51); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(119); - END_STATE(); - case 120: if (lookahead == '\n') - SKIP(119); - END_STATE(); - case 121: - if (lookahead == '\n') - ADVANCE(83); + ADVANCE(84); + if (lookahead == '!') + ADVANCE(2); if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -2531,7 +2512,133 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(7); if (lookahead == '&') + ADVANCE(120); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == '(') + ADVANCE(17); + if (lookahead == '-') + ADVANCE(78); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(80); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(121); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(119); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 121: + if (lookahead == '\n') + SKIP(119); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 122: + if (lookahead == '\n') ADVANCE(84); + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(120); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(80); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(123); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(122); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 123: + if (lookahead == '\n') + SKIP(122); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 124: + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '(') + ADVANCE(17); + if (lookahead == '\\') + SKIP(125); + if (lookahead == '{') + ADVANCE(51); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(124); + END_STATE(); + case 125: + if (lookahead == '\n') + SKIP(124); + END_STATE(); + case 126: + if (lookahead == '\n') + ADVANCE(84); + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(85); if (lookahead == '\'') ADVANCE(15); if (lookahead == ')') @@ -2539,13 +2646,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(79); - if (lookahead == '>') ADVANCE(80); + if (lookahead == '>') + ADVANCE(81); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(122); + ADVANCE(127); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2559,18 +2666,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(121); + SKIP(126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(86); + ADVANCE(87); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(4); END_STATE(); - case 122: + case 127: if (lookahead == '\n') - SKIP(121); + SKIP(126); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2578,9 +2685,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 123: + case 128: if (lookahead == '\n') - ADVANCE(83); + ADVANCE(84); if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -2600,13 +2707,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(30); if (lookahead == '=') - ADVANCE(88); + ADVANCE(89); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(124); + ADVANCE(129); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2620,13 +2727,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(123); + SKIP(128); if (lookahead != 0) ADVANCE(4); END_STATE(); - case 124: + case 129: if (lookahead == '\n') - SKIP(123); + SKIP(128); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2634,9 +2741,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 125: + case 130: if (lookahead == '\n') - ADVANCE(83); + ADVANCE(84); if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -2658,7 +2765,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(126); + ADVANCE(131); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2672,14 +2779,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(125); + SKIP(130); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(4); END_STATE(); - case 126: + case 131: if (lookahead == '\n') - SKIP(125); + SKIP(130); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2687,25 +2794,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 127: + case 132: if (lookahead == '\n') - ADVANCE(83); + ADVANCE(84); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(84); + ADVANCE(85); if (lookahead == ')') ADVANCE(18); if (lookahead == ';') ADVANCE(28); if (lookahead == '\\') - ADVANCE(128); + ADVANCE(133); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(127); + SKIP(132); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -2717,9 +2824,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 128: + case 133: if (lookahead == '\n') - SKIP(127); + SKIP(132); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2727,220 +2834,224 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 129: + case 134: if (lookahead == '!') - ADVANCE(130); + ADVANCE(135); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(69); + ADVANCE(137); if (lookahead == '-') - ADVANCE(132); - if (lookahead == '<') - ADVANCE(134); - if (lookahead == '=') - ADVANCE(135); - if (lookahead == '>') ADVANCE(138); + if (lookahead == '<') + ADVANCE(140); + if (lookahead == '=') + ADVANCE(141); + if (lookahead == '>') + ADVANCE(144); if (lookahead == '\\') - SKIP(139); + SKIP(145); if (lookahead == ']') ADVANCE(48); if (lookahead == '|') - ADVANCE(140); + ADVANCE(146); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(129); + SKIP(134); END_STATE(); - case 130: + case 135: if (lookahead == '=') - ADVANCE(131); + ADVANCE(136); END_STATE(); - case 131: + case 136: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 132: + case 137: + if (lookahead == '&') + ADVANCE(12); + END_STATE(); + case 138: if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(133); + ADVANCE(139); END_STATE(); - case 133: + case 139: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(133); - END_STATE(); - case 134: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') - ADVANCE(136); - if (lookahead == '~') - ADVANCE(137); - END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 139: - if (lookahead == '\n') - SKIP(129); + ADVANCE(139); END_STATE(); case 140: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') + ADVANCE(142); + if (lookahead == '~') + ADVANCE(143); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 143: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 145: + if (lookahead == '\n') + SKIP(134); + END_STATE(); + case 146: if (lookahead == '|') ADVANCE(54); END_STATE(); - case 141: + case 147: if (lookahead == '!') - ADVANCE(130); + ADVANCE(135); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(69); + ADVANCE(137); if (lookahead == '-') - ADVANCE(132); - if (lookahead == '<') - ADVANCE(134); - if (lookahead == '=') - ADVANCE(135); - if (lookahead == '>') ADVANCE(138); - if (lookahead == '\\') - SKIP(142); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '|') + if (lookahead == '<') ADVANCE(140); + if (lookahead == '=') + ADVANCE(141); + if (lookahead == '>') + ADVANCE(144); + if (lookahead == '\\') + SKIP(148); + if (lookahead == ']') + ADVANCE(149); + if (lookahead == '|') + ADVANCE(146); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(141); + SKIP(147); END_STATE(); - case 142: + case 148: if (lookahead == '\n') - SKIP(141); + SKIP(147); END_STATE(); - case 143: + case 149: if (lookahead == ']') - ADVANCE(144); + ADVANCE(150); END_STATE(); - case 144: + case 150: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 145: + case 151: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') ADVANCE(6); if (lookahead == '$') - ADVANCE(98); - if (lookahead == '*') ADVANCE(99); - if (lookahead == '-') + if (lookahead == '*') ADVANCE(100); + if (lookahead == '-') + ADVANCE(101); if (lookahead == '0') - ADVANCE(146); + ADVANCE(152); if (lookahead == '?') - ADVANCE(102); - if (lookahead == '@') ADVANCE(103); + if (lookahead == '@') + ADVANCE(104); if (lookahead == '\\') - ADVANCE(148); + ADVANCE(154); if (lookahead == '_') - ADVANCE(150); + ADVANCE(156); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(149); + ADVANCE(155); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(147); + ADVANCE(153); if (lookahead != 0 && (lookahead < '_' || lookahead > 'z')) - ADVANCE(92); + ADVANCE(93); END_STATE(); - case 146: + case 152: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(147); + ADVANCE(153); END_STATE(); - case 147: + case 153: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(147); + ADVANCE(153); END_STATE(); - case 148: + case 154: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(149); + ADVANCE(155); if (lookahead == '\\') - ADVANCE(93); + ADVANCE(94); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(92); + ADVANCE(93); if (lookahead != 0) - ADVANCE(92); + ADVANCE(93); END_STATE(); - case 149: + case 155: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') ADVANCE(6); if (lookahead == '*') - ADVANCE(99); - if (lookahead == '-') ADVANCE(100); + if (lookahead == '-') + ADVANCE(101); if (lookahead == '0') - ADVANCE(146); + ADVANCE(152); if (lookahead == '?') - ADVANCE(102); - if (lookahead == '@') ADVANCE(103); + if (lookahead == '@') + ADVANCE(104); if (lookahead == '\\') - ADVANCE(148); + ADVANCE(154); if (lookahead == '_') - ADVANCE(150); + ADVANCE(156); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(149); + ADVANCE(155); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(147); + ADVANCE(153); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '_' || lookahead > 'z')) - ADVANCE(92); + ADVANCE(93); END_STATE(); - case 150: + case 156: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(147); + ADVANCE(153); END_STATE(); - case 151: + case 157: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -2958,15 +3069,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(25); if (lookahead == '<') - ADVANCE(79); - if (lookahead == '=') - ADVANCE(152); - if (lookahead == '>') ADVANCE(80); + if (lookahead == '=') + ADVANCE(158); + if (lookahead == '>') + ADVANCE(81); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(153); + ADVANCE(159); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2979,14 +3090,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(151); + SKIP(157); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 152: + case 158: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '\\') ADVANCE(3); @@ -3005,9 +3116,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 153: + case 159: if (lookahead == '\n') - SKIP(151); + SKIP(157); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3015,40 +3126,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 154: + case 160: if (lookahead == '#') ADVANCE(57); if (lookahead == '$') - ADVANCE(98); - if (lookahead == '*') ADVANCE(99); - if (lookahead == '-') + if (lookahead == '*') ADVANCE(100); - if (lookahead == '0') + if (lookahead == '-') ADVANCE(101); - if (lookahead == '?') + if (lookahead == '0') ADVANCE(102); - if (lookahead == '@') + if (lookahead == '?') ADVANCE(103); + if (lookahead == '@') + ADVANCE(104); if (lookahead == '\\') - SKIP(155); + SKIP(161); if (lookahead == '_') - ADVANCE(105); + ADVANCE(106); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(154); + SKIP(160); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(71); + ADVANCE(72); END_STATE(); - case 155: + case 161: if (lookahead == '\n') - SKIP(154); + SKIP(160); END_STATE(); - case 156: + case 162: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -3056,19 +3167,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(7); if (lookahead == '&') - ADVANCE(69); + ADVANCE(137); if (lookahead == '\'') ADVANCE(15); if (lookahead == ')') ADVANCE(18); if (lookahead == '<') - ADVANCE(79); - if (lookahead == '>') ADVANCE(80); + if (lookahead == '>') + ADVANCE(81); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(157); + ADVANCE(163); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -3083,185 +3194,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(156); + SKIP(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(86); + ADVANCE(87); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<') ADVANCE(4); END_STATE(); - case 157: - if (lookahead == '\n') - SKIP(156); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 158: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(159); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(88); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(160); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(158); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < ';' || lookahead > '>')) - ADVANCE(4); - END_STATE(); - case 159: - if (lookahead == '&') - ADVANCE(12); - if (lookahead == '>') - ADVANCE(13); - END_STATE(); - case 160: - if (lookahead == '\n') - SKIP(158); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 161: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(159); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(88); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(162); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(161); - if (lookahead != 0 && - (lookahead < ';' || lookahead > '>')) - ADVANCE(4); - END_STATE(); - case 162: - if (lookahead == '\n') - SKIP(161); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); case 163: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(159); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(59); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(164); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(163); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') - ADVANCE(4); - END_STATE(); - case 164: if (lookahead == '\n') - SKIP(163); + SKIP(162); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3269,7 +3215,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 165: + case 164: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -3277,13 +3223,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(7); if (lookahead == '&') - ADVANCE(69); + ADVANCE(165); if (lookahead == '\'') ADVANCE(15); + if (lookahead == ')') + ADVANCE(18); if (lookahead == '<') - ADVANCE(79); + ADVANCE(30); + if (lookahead == '=') + ADVANCE(89); if (lookahead == '>') - ADVANCE(80); + ADVANCE(39); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') @@ -3302,20 +3252,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(165); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(86); + SKIP(164); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') + (lookahead < ';' || lookahead > '>')) ADVANCE(4); END_STATE(); + case 165: + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '>') + ADVANCE(13); + END_STATE(); case 166: if (lookahead == '\n') - SKIP(165); + SKIP(164); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3331,13 +3282,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(7); if (lookahead == '&') - ADVANCE(159); + ADVANCE(165); if (lookahead == '\'') ADVANCE(15); + if (lookahead == '(') + ADVANCE(17); + if (lookahead == ')') + ADVANCE(18); if (lookahead == '<') ADVANCE(30); if (lookahead == '=') - ADVANCE(88); + ADVANCE(89); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') @@ -3360,7 +3315,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(167); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && (lookahead < ';' || lookahead > '>')) ADVANCE(4); END_STATE(); @@ -3382,15 +3336,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(7); if (lookahead == '&') - ADVANCE(159); + ADVANCE(165); if (lookahead == '\'') ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); + if (lookahead == ')') + ADVANCE(18); if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(88); + ADVANCE(59); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') @@ -3414,7 +3366,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(169); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && - (lookahead < ';' || lookahead > '>')) + lookahead != ';' && + lookahead != '<') ADVANCE(4); END_STATE(); case 170: @@ -3435,13 +3388,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(7); if (lookahead == '&') - ADVANCE(159); + ADVANCE(137); if (lookahead == '\'') ADVANCE(15); if (lookahead == '<') - ADVANCE(59); + ADVANCE(80); if (lookahead == '>') - ADVANCE(39); + ADVANCE(81); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') @@ -3461,6 +3414,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(171); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(87); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -3478,6 +3435,160 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(4); END_STATE(); case 173: + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(165); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == '<') + ADVANCE(30); + if (lookahead == '=') + ADVANCE(89); + if (lookahead == '>') + ADVANCE(39); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(173); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < ';' || lookahead > '>')) + ADVANCE(4); + END_STATE(); + case 174: + if (lookahead == '\n') + SKIP(173); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 175: + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(165); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == '(') + ADVANCE(17); + if (lookahead == '<') + ADVANCE(30); + if (lookahead == '=') + ADVANCE(89); + if (lookahead == '>') + ADVANCE(39); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(176); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(175); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < ';' || lookahead > '>')) + ADVANCE(4); + END_STATE(); + case 176: + if (lookahead == '\n') + SKIP(175); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 177: + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(165); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == '<') + ADVANCE(59); + if (lookahead == '>') + ADVANCE(39); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(178); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(177); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(4); + END_STATE(); + case 178: + if (lookahead == '\n') + SKIP(177); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 179: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') @@ -3495,7 +3606,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(17); if (lookahead == ';') - ADVANCE(174); + ADVANCE(180); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') @@ -3503,7 +3614,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - ADVANCE(175); + ADVANCE(181); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -3516,18 +3627,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(173); + SKIP(179); if ((lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 174: + case 180: if (lookahead == ';') ADVANCE(29); END_STATE(); - case 175: + case 181: if (lookahead == '\n') - SKIP(173); + SKIP(179); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3535,296 +3646,278 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 176: + case 182: if (lookahead == '#') ADVANCE(57); if (lookahead == '$') - ADVANCE(177); + ADVANCE(183); if (lookahead == '\\') - SKIP(178); + SKIP(184); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(176); + SKIP(182); END_STATE(); - case 177: + case 183: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '{') ADVANCE(9); END_STATE(); - case 178: + case 184: if (lookahead == '\n') - SKIP(176); + SKIP(182); END_STATE(); - case 179: + case 185: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') - ADVANCE(180); + ADVANCE(186); if (lookahead == '$') - ADVANCE(182); + ADVANCE(188); if (lookahead == '\'') - ADVANCE(187); + ADVANCE(193); if (lookahead == '<') - ADVANCE(190); + ADVANCE(196); if (lookahead == '>') - ADVANCE(192); - if (lookahead == '[') - ADVANCE(194); - if (lookahead == '\\') - ADVANCE(195); - if (lookahead == ']') - ADVANCE(194); - if (lookahead == '`') ADVANCE(198); + if (lookahead == '[') + ADVANCE(200); + if (lookahead == '\\') + ADVANCE(201); + if (lookahead == ']') + ADVANCE(200); + if (lookahead == '`') + ADVANCE(204); if (lookahead == '{') - ADVANCE(194); + ADVANCE(200); if (lookahead == '}') - ADVANCE(194); + ADVANCE(200); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(179); + SKIP(185); if (('&' <= lookahead && lookahead <= ')') || lookahead == ';' || lookahead == '|') - ADVANCE(185); + ADVANCE(191); if (lookahead != 0) - ADVANCE(197); - END_STATE(); - case 180: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(181); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(180); - END_STATE(); - case 181: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(181); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(180); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(180); - END_STATE(); - case 182: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') - ADVANCE(183); - if (lookahead == '\\') - ADVANCE(184); - if (lookahead == '{') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(185); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '\\') - ADVANCE(184); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(185); - END_STATE(); - case 184: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(184); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(185); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(185); - END_STATE(); - case 185: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(184); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(185); + ADVANCE(203); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(184); + ADVANCE(187); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(185); + ADVANCE(186); END_STATE(); case 187: ACCEPT_TOKEN(sym_regex); - if (lookahead == '\'') - ADVANCE(188); if (lookahead == '\\') + ADVANCE(187); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(186); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(186); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(189); + if (lookahead == '\\') + ADVANCE(190); + if (lookahead == '{') + ADVANCE(192); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(191); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + if (lookahead == '\\') + ADVANCE(190); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(191); + END_STATE(); + case 190: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(190); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(191); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(191); + END_STATE(); + case 191: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(190); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(191); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + if (lookahead == '\\') + ADVANCE(190); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(191); + END_STATE(); + case 193: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\'') + ADVANCE(194); + if (lookahead == '\\') + ADVANCE(195); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(15); if (lookahead != 0) - ADVANCE(187); + ADVANCE(193); END_STATE(); - case 188: + case 194: ACCEPT_TOKEN(sym_raw_string); if (lookahead == '\\') - ADVANCE(184); + ADVANCE(190); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(185); + ADVANCE(191); END_STATE(); - case 189: + case 195: ACCEPT_TOKEN(sym_regex); if (lookahead == '\n') ADVANCE(15); if (lookahead == '\'') - ADVANCE(188); + ADVANCE(194); if (lookahead == '\\') - ADVANCE(189); + ADVANCE(195); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(187); - if (lookahead != 0) - ADVANCE(187); - END_STATE(); - case 190: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '(') - ADVANCE(191); - if (lookahead == '\\') - ADVANCE(184); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(185); - END_STATE(); - case 191: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); - if (lookahead == '\\') - ADVANCE(184); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(185); - END_STATE(); - case 192: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '(') ADVANCE(193); - if (lookahead == '\\') - ADVANCE(184); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(185); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); - if (lookahead == '\\') - ADVANCE(184); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(185); - END_STATE(); - case 194: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '[') - ADVANCE(194); - if (lookahead == '\\') - ADVANCE(184); - if (lookahead == ']') - ADVANCE(194); - if (lookahead == '{') - ADVANCE(194); - if (lookahead == '}') - ADVANCE(194); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(185); - END_STATE(); - case 195: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(196); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(185); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(197); + if (lookahead != 0) + ADVANCE(193); END_STATE(); case 196: - ACCEPT_TOKEN(sym_word); + ACCEPT_TOKEN(sym_regex); + if (lookahead == '(') + ADVANCE(197); if (lookahead == '\\') - ADVANCE(195); + ADVANCE(190); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(191); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_LT_LPAREN); + if (lookahead == '\\') + ADVANCE(190); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(191); + END_STATE(); + case 198: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '(') + ADVANCE(199); + if (lookahead == '\\') + ADVANCE(190); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(191); + END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_GT_LPAREN); + if (lookahead == '\\') + ADVANCE(190); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(191); + END_STATE(); + case 200: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '[') + ADVANCE(200); + if (lookahead == '\\') + ADVANCE(190); + if (lookahead == ']') + ADVANCE(200); + if (lookahead == '{') + ADVANCE(200); + if (lookahead == '}') + ADVANCE(200); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(191); + END_STATE(); + case 201: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(202); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(185); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(185); + ADVANCE(191); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(197); + ADVANCE(203); END_STATE(); - case 197: + case 202: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(195); + ADVANCE(201); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(191); if (('\"' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ')') || lookahead == ';' || @@ -3833,28 +3926,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(185); + ADVANCE(191); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(203); + END_STATE(); + case 203: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(201); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) + ADVANCE(191); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(197); + ADVANCE(203); END_STATE(); - case 198: + case 204: ACCEPT_TOKEN(anon_sym_BQUOTE); if (lookahead == '\\') - ADVANCE(184); + ADVANCE(190); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(185); + ADVANCE(191); END_STATE(); - case 199: + case 205: if (lookahead == '\n') - ADVANCE(83); + ADVANCE(84); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') @@ -3862,37 +3973,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(200); + ADVANCE(206); if (lookahead == '>') - ADVANCE(201); + ADVANCE(207); if (lookahead == '\\') - SKIP(202); + SKIP(208); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(199); + SKIP(205); END_STATE(); - case 200: + case 206: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(31); if (lookahead == '<') ADVANCE(33); END_STATE(); - case 201: + case 207: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '&') ADVANCE(40); if (lookahead == '>') ADVANCE(42); END_STATE(); - case 202: + case 208: if (lookahead == '\n') - SKIP(199); + SKIP(205); END_STATE(); - case 203: + case 209: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -3902,13 +4013,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(15); if (lookahead == '<') - ADVANCE(79); - if (lookahead == '>') ADVANCE(80); + if (lookahead == '>') + ADVANCE(81); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(204); + ADVANCE(210); if (lookahead == ']') ADVANCE(48); if (lookahead == '`') @@ -3921,182 +4032,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(203); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 204: - if (lookahead == '\n') - SKIP(203); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 205: - if (lookahead == '!') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(58); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(59); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(45); - if (lookahead == '\\') - ADVANCE(206); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(55); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(205); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 206: - if (lookahead == '\n') - SKIP(205); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 207: - if (lookahead == '!') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(58); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(59); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(45); - if (lookahead == '\\') - ADVANCE(208); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(207); - if (lookahead != 0 && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 208: - if (lookahead == '\n') - SKIP(207); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 209: - if (lookahead == '\n') - ADVANCE(83); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(200); - if (lookahead == '>') - ADVANCE(201); - if (lookahead == '\\') - SKIP(210); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(209); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 210: if (lookahead == '\n') SKIP(209); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); END_STATE(); case 211: + if (lookahead == '\n') + ADVANCE(84); if (lookahead == '!') - ADVANCE(130); + ADVANCE(135); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(69); - if (lookahead == ')') - ADVANCE(18); + ADVANCE(85); if (lookahead == '-') - ADVANCE(132); - if (lookahead == '<') - ADVANCE(134); - if (lookahead == '=') - ADVANCE(135); - if (lookahead == '>') ADVANCE(138); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(140); + if (lookahead == '=') + ADVANCE(141); + if (lookahead == '>') + ADVANCE(144); if (lookahead == '\\') SKIP(212); if (lookahead == '|') - ADVANCE(140); + ADVANCE(146); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(211); @@ -4107,162 +4084,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 213: if (lookahead == '!') - ADVANCE(214); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(180); - if (lookahead == '$') - ADVANCE(182); - if (lookahead == '\'') - ADVANCE(187); - if (lookahead == '(') - ADVANCE(215); - if (lookahead == '-') - ADVANCE(216); - if (lookahead == '<') - ADVANCE(190); - if (lookahead == '>') - ADVANCE(192); - if (lookahead == '[') - ADVANCE(194); - if (lookahead == '\\') - ADVANCE(195); - if (lookahead == ']') - ADVANCE(194); - if (lookahead == '`') - ADVANCE(198); - if (lookahead == '{') - ADVANCE(194); - if (lookahead == '}') - ADVANCE(194); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(213); - if (('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '|') - ADVANCE(185); - if (lookahead != 0) - ADVANCE(197); - END_STATE(); - case 214: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') - ADVANCE(195); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(185); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(197); - END_STATE(); - case 215: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '\\') - ADVANCE(184); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(185); - END_STATE(); - case 216: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(195); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(185); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(217); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(197); - END_STATE(); - case 217: - ACCEPT_TOKEN(sym_test_operator); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(217); - END_STATE(); - case 218: - if (lookahead == '!') - ADVANCE(130); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(69); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '-') - ADVANCE(132); - if (lookahead == '<') - ADVANCE(134); - if (lookahead == '=') - ADVANCE(135); - if (lookahead == '>') - ADVANCE(138); - if (lookahead == '\\') - SKIP(219); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '|') - ADVANCE(220); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(218); - END_STATE(); - case 219: - if (lookahead == '\n') - SKIP(218); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') - ADVANCE(54); - END_STATE(); - case 221: + ADVANCE(2); if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(7); + if (lookahead == '&') + ADVANCE(58); if (lookahead == '\'') ADVANCE(15); + if (lookahead == '(') + ADVANCE(17); if (lookahead == '<') - ADVANCE(79); + ADVANCE(59); if (lookahead == '>') - ADVANCE(80); + ADVANCE(39); if (lookahead == '[') - ADVANCE(61); + ADVANCE(45); if (lookahead == '\\') - ADVANCE(222); + ADVANCE(214); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -4275,7 +4117,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(221); + SKIP(213); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4283,9 +4125,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 222: + case 214: if (lookahead == '\n') - SKIP(221); + SKIP(213); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4293,7 +4135,339 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); + case 215: + if (lookahead == '\n') + ADVANCE(84); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(216); + if (lookahead == '>') + ADVANCE(207); + if (lookahead == '\\') + SKIP(217); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(215); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(31); + END_STATE(); + case 217: + if (lookahead == '\n') + SKIP(215); + END_STATE(); + case 218: + if (lookahead == '!') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(58); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == '(') + ADVANCE(17); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(59); + if (lookahead == '>') + ADVANCE(39); + if (lookahead == '[') + ADVANCE(45); + if (lookahead == '\\') + ADVANCE(219); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(218); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 219: + if (lookahead == '\n') + SKIP(218); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 220: + if (lookahead == '\n') + ADVANCE(84); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(206); + if (lookahead == '>') + ADVANCE(207); + if (lookahead == '\\') + SKIP(221); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(220); + END_STATE(); + case 221: + if (lookahead == '\n') + SKIP(220); + END_STATE(); + case 222: + if (lookahead == '!') + ADVANCE(135); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(137); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == '-') + ADVANCE(138); + if (lookahead == '<') + ADVANCE(140); + if (lookahead == '=') + ADVANCE(141); + if (lookahead == '>') + ADVANCE(144); + if (lookahead == '\\') + SKIP(223); + if (lookahead == '|') + ADVANCE(146); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(222); + END_STATE(); case 223: + if (lookahead == '\n') + SKIP(222); + END_STATE(); + case 224: + if (lookahead == '!') + ADVANCE(225); + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(186); + if (lookahead == '$') + ADVANCE(188); + if (lookahead == '\'') + ADVANCE(193); + if (lookahead == '(') + ADVANCE(226); + if (lookahead == '-') + ADVANCE(227); + if (lookahead == '<') + ADVANCE(196); + if (lookahead == '>') + ADVANCE(198); + if (lookahead == '[') + ADVANCE(200); + if (lookahead == '\\') + ADVANCE(201); + if (lookahead == ']') + ADVANCE(200); + if (lookahead == '`') + ADVANCE(204); + if (lookahead == '{') + ADVANCE(200); + if (lookahead == '}') + ADVANCE(200); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(224); + if (('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '|') + ADVANCE(191); + if (lookahead != 0) + ADVANCE(203); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '\\') + ADVANCE(201); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) + ADVANCE(191); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(203); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '\\') + ADVANCE(190); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(191); + END_STATE(); + case 227: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(201); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) + ADVANCE(191); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(228); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(203); + END_STATE(); + case 228: + ACCEPT_TOKEN(sym_test_operator); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(228); + END_STATE(); + case 229: + if (lookahead == '!') + ADVANCE(135); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(137); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == '-') + ADVANCE(138); + if (lookahead == '<') + ADVANCE(140); + if (lookahead == '=') + ADVANCE(141); + if (lookahead == '>') + ADVANCE(144); + if (lookahead == '\\') + SKIP(230); + if (lookahead == ']') + ADVANCE(149); + if (lookahead == '|') + ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(229); + END_STATE(); + case 230: + if (lookahead == '\n') + SKIP(229); + END_STATE(); + case 231: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') + ADVANCE(54); + END_STATE(); + case 232: + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == '<') + ADVANCE(80); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(233); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '}') + ADVANCE(55); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(232); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 233: + if (lookahead == '\n') + SKIP(232); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 234: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -4309,15 +4483,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(25); if (lookahead == '<') - ADVANCE(79); - if (lookahead == '=') - ADVANCE(152); - if (lookahead == '>') ADVANCE(80); + if (lookahead == '=') + ADVANCE(158); + if (lookahead == '>') + ADVANCE(81); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(224); + ADVANCE(235); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -4330,172 +4504,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(223); + SKIP(234); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 224: - if (lookahead == '\n') - SKIP(223); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 225: - if (lookahead == '#') - ADVANCE(226); - if (lookahead == '\\') - ADVANCE(228); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(225); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '#' && - lookahead != '}') - ADVANCE(229); - END_STATE(); - case 226: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(227); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '}') - ADVANCE(226); - END_STATE(); - case 227: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(227); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '}') - ADVANCE(226); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(226); - END_STATE(); - case 228: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(228); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '}') - ADVANCE(229); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(229); - END_STATE(); - case 229: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(228); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '}') - ADVANCE(229); - END_STATE(); - case 230: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(159); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(200); - if (lookahead == '>') - ADVANCE(201); - if (lookahead == '\\') - SKIP(231); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(230); - END_STATE(); - case 231: - if (lookahead == '\n') - SKIP(230); - END_STATE(); - case 232: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(159); - if (lookahead == '<') - ADVANCE(200); - if (lookahead == '>') - ADVANCE(201); - if (lookahead == '\\') - SKIP(233); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(232); - END_STATE(); - case 233: - if (lookahead == '\n') - SKIP(232); - END_STATE(); - case 234: - if (lookahead == '\n') - ADVANCE(83); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(200); - if (lookahead == '>') - ADVANCE(201); - if (lookahead == '\\') - ADVANCE(235); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(234); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); case 235: if (lookahead == '\n') SKIP(234); @@ -4507,100 +4522,109 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(4); END_STATE(); case 236: - if (lookahead == '\"') - ADVANCE(5); if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(79); - if (lookahead == '>') - ADVANCE(80); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') ADVANCE(237); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(61); + if (lookahead == '\\') + ADVANCE(239); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(236); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + lookahead != '\"' && + lookahead != '#' && + lookahead != '}') + ADVANCE(240); END_STATE(); case 237: - if (lookahead == '\n') - SKIP(236); + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\\') + ADVANCE(238); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); + lookahead != ' ' && + lookahead != '}') + ADVANCE(237); END_STATE(); case 238: - if (lookahead == '!') - ADVANCE(130); + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\\') + ADVANCE(238); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == '}') + ADVANCE(237); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(237); + END_STATE(); + case 239: + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\\') + ADVANCE(239); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == '}') + ADVANCE(240); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(240); + END_STATE(); + case 240: + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\\') + ADVANCE(239); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '}') + ADVANCE(240); + END_STATE(); + case 241: if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(69); + ADVANCE(165); if (lookahead == ')') ADVANCE(18); - if (lookahead == '-') - ADVANCE(132); if (lookahead == '<') - ADVANCE(134); - if (lookahead == '=') - ADVANCE(135); + ADVANCE(206); if (lookahead == '>') - ADVANCE(138); + ADVANCE(207); if (lookahead == '\\') - SKIP(239); - if (lookahead == ']') - ADVANCE(143); + SKIP(242); if (lookahead == '|') - ADVANCE(140); + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(238); + SKIP(241); END_STATE(); - case 239: + case 242: if (lookahead == '\n') - SKIP(238); + SKIP(241); END_STATE(); - case 240: + case 243: if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(159); - if (lookahead == ')') - ADVANCE(18); + ADVANCE(165); if (lookahead == '<') - ADVANCE(200); + ADVANCE(206); if (lookahead == '>') - ADVANCE(201); + ADVANCE(207); if (lookahead == '\\') - SKIP(241); + SKIP(244); if (lookahead == '`') ADVANCE(50); if (lookahead == '|') @@ -4609,43 +4633,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(240); - END_STATE(); - case 241: - if (lookahead == '\n') - SKIP(240); - END_STATE(); - case 242: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '\\') SKIP(243); - if (lookahead == '|') - ADVANCE(244); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(242); - END_STATE(); - case 243: - if (lookahead == '\n') - SKIP(242); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '\n') + SKIP(243); END_STATE(); case 245: if (lookahead == '\n') - ADVANCE(83); + ADVANCE(84); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(84); + ADVANCE(11); + if (lookahead == ')') + ADVANCE(18); if (lookahead == ';') ADVANCE(28); + if (lookahead == '<') + ADVANCE(206); + if (lookahead == '>') + ADVANCE(207); if (lookahead == '\\') ADVANCE(246); if (lookahead == '|') @@ -4657,9 +4665,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) @@ -4676,26 +4681,222 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(4); END_STATE(); case 247: + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(80); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(248); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(247); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 248: if (lookahead == '\n') - ADVANCE(83); + SKIP(247); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 249: + if (lookahead == '!') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == '(') + ADVANCE(17); + if (lookahead == ')') + ADVANCE(250); + if (lookahead == '-') + ADVANCE(78); + if (lookahead == '<') + ADVANCE(80); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(252); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(249); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 250: + if (lookahead == ')') + ADVANCE(251); + END_STATE(); + case 251: + ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); + END_STATE(); + case 252: + if (lookahead == '\n') + SKIP(249); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 253: + if (lookahead == '\n') + ADVANCE(84); + if (lookahead == '!') + ADVANCE(254); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(11); + ADVANCE(85); + if (lookahead == '-') + ADVANCE(78); if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(200); + ADVANCE(140); + if (lookahead == '=') + ADVANCE(36); if (lookahead == '>') - ADVANCE(201); + ADVANCE(144); if (lookahead == '\\') - ADVANCE(248); + ADVANCE(256); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(247); + SKIP(253); + if (lookahead != 0 && + (lookahead < ' ' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 254: + ACCEPT_TOKEN(sym_word); + if (lookahead == '=') + ADVANCE(255); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + (lookahead < ';' || lookahead > '>') && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 256: + if (lookahead == '\n') + SKIP(253); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 257: + if (lookahead == '\n') + ADVANCE(84); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(216); + if (lookahead == '>') + ADVANCE(207); + if (lookahead == '\\') + ADVANCE(258); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(257); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -4704,9 +4905,338 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 248: + case 258: if (lookahead == '\n') - SKIP(247); + SKIP(257); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 259: + if (lookahead == '\n') + ADVANCE(84); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(216); + if (lookahead == '>') + ADVANCE(207); + if (lookahead == '\\') + SKIP(260); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(259); + END_STATE(); + case 260: + if (lookahead == '\n') + SKIP(259); + END_STATE(); + case 261: + if (lookahead == '!') + ADVANCE(135); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(137); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == '-') + ADVANCE(138); + if (lookahead == '<') + ADVANCE(140); + if (lookahead == '=') + ADVANCE(141); + if (lookahead == '>') + ADVANCE(144); + if (lookahead == '\\') + SKIP(262); + if (lookahead == ']') + ADVANCE(149); + if (lookahead == '|') + ADVANCE(146); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(261); + END_STATE(); + case 262: + if (lookahead == '\n') + SKIP(261); + END_STATE(); + case 263: + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(165); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(216); + if (lookahead == '>') + ADVANCE(207); + if (lookahead == '\\') + SKIP(264); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(263); + END_STATE(); + case 264: + if (lookahead == '\n') + SKIP(263); + END_STATE(); + case 265: + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(165); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(206); + if (lookahead == '>') + ADVANCE(207); + if (lookahead == '\\') + SKIP(266); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(265); + END_STATE(); + case 266: + if (lookahead == '\n') + SKIP(265); + END_STATE(); + case 267: + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(165); + if (lookahead == '<') + ADVANCE(216); + if (lookahead == '>') + ADVANCE(207); + if (lookahead == '\\') + SKIP(268); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(267); + END_STATE(); + case 268: + if (lookahead == '\n') + SKIP(267); + END_STATE(); + case 269: + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '\\') + ADVANCE(270); + if (lookahead == '{') + ADVANCE(51); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(269); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 270: + if (lookahead == '\n') + SKIP(269); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 271: + if (lookahead == '!') + ADVANCE(135); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(137); + if (lookahead == ')') + ADVANCE(250); + if (lookahead == '-') + ADVANCE(138); + if (lookahead == '<') + ADVANCE(140); + if (lookahead == '=') + ADVANCE(141); + if (lookahead == '>') + ADVANCE(144); + if (lookahead == '\\') + SKIP(272); + if (lookahead == '|') + ADVANCE(146); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(271); + END_STATE(); + case 272: + if (lookahead == '\n') + SKIP(271); + END_STATE(); + case 273: + if (lookahead == '#') + ADVANCE(57); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == '\\') + SKIP(274); + if (lookahead == '|') + ADVANCE(275); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(273); + END_STATE(); + case 274: + if (lookahead == '\n') + SKIP(273); + END_STATE(); + case 275: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 276: + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(165); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(216); + if (lookahead == '>') + ADVANCE(207); + if (lookahead == '\\') + SKIP(277); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(276); + END_STATE(); + case 277: + if (lookahead == '\n') + SKIP(276); + END_STATE(); + case 278: + if (lookahead == '\n') + ADVANCE(84); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(206); + if (lookahead == '>') + ADVANCE(207); + if (lookahead == '\\') + ADVANCE(279); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(278); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 279: + if (lookahead == '\n') + SKIP(278); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 280: + if (lookahead == '\n') + ADVANCE(84); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(216); + if (lookahead == '>') + ADVANCE(207); + if (lookahead == '\\') + ADVANCE(281); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(280); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 281: + if (lookahead == '\n') + SKIP(280); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5069,2886 +5599,3056 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4] = {.lex_state = 68}, [5] = {.lex_state = 56, .external_lex_state = 2}, [6] = {.lex_state = 56, .external_lex_state = 2}, - [7] = {.lex_state = 72}, - [8] = {.lex_state = 72}, + [7] = {.lex_state = 73}, + [8] = {.lex_state = 73}, [9] = {.lex_state = 56, .external_lex_state = 2}, - [10] = {.lex_state = 74, .external_lex_state = 2}, - [11] = {.lex_state = 76}, - [12] = {.lex_state = 76}, - [13] = {.lex_state = 82, .external_lex_state = 3}, - [14] = {.lex_state = 82, .external_lex_state = 4}, - [15] = {.lex_state = 72}, - [16] = {.lex_state = 87, .external_lex_state = 5}, - [17] = {.lex_state = 90}, - [18] = {.lex_state = 97}, - [19] = {.lex_state = 87, .external_lex_state = 5}, - [20] = {.lex_state = 97, .external_lex_state = 6}, + [10] = {.lex_state = 75, .external_lex_state = 2}, + [11] = {.lex_state = 77}, + [12] = {.lex_state = 77}, + [13] = {.lex_state = 83, .external_lex_state = 3}, + [14] = {.lex_state = 83, .external_lex_state = 4}, + [15] = {.lex_state = 73}, + [16] = {.lex_state = 88, .external_lex_state = 5}, + [17] = {.lex_state = 91}, + [18] = {.lex_state = 98}, + [19] = {.lex_state = 88, .external_lex_state = 5}, + [20] = {.lex_state = 107, .external_lex_state = 6}, [21] = {.lex_state = 56, .external_lex_state = 2}, [22] = {.lex_state = 56, .external_lex_state = 2}, [23] = {.lex_state = 56, .external_lex_state = 2}, - [24] = {.lex_state = 106, .external_lex_state = 5}, - [25] = {.lex_state = 108}, - [26] = {.lex_state = 82, .external_lex_state = 4}, - [27] = {.lex_state = 87, .external_lex_state = 7}, - [28] = {.lex_state = 110, .external_lex_state = 8}, + [24] = {.lex_state = 109, .external_lex_state = 5}, + [25] = {.lex_state = 111}, + [26] = {.lex_state = 83, .external_lex_state = 4}, + [27] = {.lex_state = 88, .external_lex_state = 7}, + [28] = {.lex_state = 113, .external_lex_state = 8}, [29] = {.lex_state = 62}, - [30] = {.lex_state = 72, .external_lex_state = 2}, - [31] = {.lex_state = 112, .external_lex_state = 7}, - [32] = {.lex_state = 56, .external_lex_state = 2}, - [33] = {.lex_state = 72, .external_lex_state = 2}, - [34] = {.lex_state = 72}, - [35] = {.lex_state = 72}, - [36] = {.lex_state = 114, .external_lex_state = 9}, - [37] = {.lex_state = 116, .external_lex_state = 4}, - [38] = {.lex_state = 72}, - [39] = {.lex_state = 82, .external_lex_state = 4}, - [40] = {.lex_state = 110, .external_lex_state = 8}, - [41] = {.lex_state = 72}, - [42] = {.lex_state = 116, .external_lex_state = 10}, - [43] = {.lex_state = 90}, - [44] = {.lex_state = 97}, - [45] = {.lex_state = 116, .external_lex_state = 10}, - [46] = {.lex_state = 97, .external_lex_state = 6}, + [30] = {.lex_state = 115, .external_lex_state = 7}, + [31] = {.lex_state = 56, .external_lex_state = 2}, + [32] = {.lex_state = 73, .external_lex_state = 2}, + [33] = {.lex_state = 73}, + [34] = {.lex_state = 73}, + [35] = {.lex_state = 117, .external_lex_state = 9}, + [36] = {.lex_state = 119, .external_lex_state = 4}, + [37] = {.lex_state = 122, .external_lex_state = 4}, + [38] = {.lex_state = 73}, + [39] = {.lex_state = 83, .external_lex_state = 4}, + [40] = {.lex_state = 113, .external_lex_state = 8}, + [41] = {.lex_state = 73}, + [42] = {.lex_state = 122, .external_lex_state = 10}, + [43] = {.lex_state = 91}, + [44] = {.lex_state = 98}, + [45] = {.lex_state = 122, .external_lex_state = 10}, + [46] = {.lex_state = 107, .external_lex_state = 6}, [47] = {.lex_state = 56, .external_lex_state = 2}, [48] = {.lex_state = 56, .external_lex_state = 2}, [49] = {.lex_state = 56, .external_lex_state = 2}, - [50] = {.lex_state = 116, .external_lex_state = 4}, - [51] = {.lex_state = 119}, + [50] = {.lex_state = 122, .external_lex_state = 4}, + [51] = {.lex_state = 124}, [52] = {.lex_state = 62}, [53] = {.lex_state = 56, .external_lex_state = 2}, - [54] = {.lex_state = 72}, - [55] = {.lex_state = 74, .external_lex_state = 2}, - [56] = {.lex_state = 76}, - [57] = {.lex_state = 76}, - [58] = {.lex_state = 121, .external_lex_state = 3}, - [59] = {.lex_state = 121, .external_lex_state = 4}, - [60] = {.lex_state = 112, .external_lex_state = 5}, - [61] = {.lex_state = 112, .external_lex_state = 5}, - [62] = {.lex_state = 123, .external_lex_state = 5}, - [63] = {.lex_state = 121, .external_lex_state = 4}, - [64] = {.lex_state = 112, .external_lex_state = 7}, - [65] = {.lex_state = 125, .external_lex_state = 8}, + [54] = {.lex_state = 73}, + [55] = {.lex_state = 75, .external_lex_state = 2}, + [56] = {.lex_state = 77}, + [57] = {.lex_state = 77}, + [58] = {.lex_state = 126, .external_lex_state = 3}, + [59] = {.lex_state = 126, .external_lex_state = 4}, + [60] = {.lex_state = 115, .external_lex_state = 5}, + [61] = {.lex_state = 115, .external_lex_state = 5}, + [62] = {.lex_state = 128, .external_lex_state = 5}, + [63] = {.lex_state = 126, .external_lex_state = 4}, + [64] = {.lex_state = 115, .external_lex_state = 7}, + [65] = {.lex_state = 130, .external_lex_state = 8}, [66] = {.lex_state = 62}, [67] = {.lex_state = 56, .external_lex_state = 2}, - [68] = {.lex_state = 72, .external_lex_state = 2}, + [68] = {.lex_state = 73, .external_lex_state = 2}, [69] = {.lex_state = 62}, - [70] = {.lex_state = 127, .external_lex_state = 4}, + [70] = {.lex_state = 132, .external_lex_state = 4}, [71] = {.lex_state = 62}, - [72] = {.lex_state = 76}, - [73] = {.lex_state = 76}, - [74] = {.lex_state = 129, .external_lex_state = 11}, - [75] = {.lex_state = 90}, - [76] = {.lex_state = 97}, - [77] = {.lex_state = 129, .external_lex_state = 11}, - [78] = {.lex_state = 97, .external_lex_state = 6}, + [72] = {.lex_state = 77}, + [73] = {.lex_state = 77}, + [74] = {.lex_state = 134, .external_lex_state = 11}, + [75] = {.lex_state = 91}, + [76] = {.lex_state = 98}, + [77] = {.lex_state = 134, .external_lex_state = 11}, + [78] = {.lex_state = 107, .external_lex_state = 6}, [79] = {.lex_state = 56, .external_lex_state = 2}, [80] = {.lex_state = 56, .external_lex_state = 2}, [81] = {.lex_state = 56, .external_lex_state = 2}, - [82] = {.lex_state = 129, .external_lex_state = 12}, - [83] = {.lex_state = 76}, - [84] = {.lex_state = 76}, - [85] = {.lex_state = 141, .external_lex_state = 13}, - [86] = {.lex_state = 90}, - [87] = {.lex_state = 97}, - [88] = {.lex_state = 141, .external_lex_state = 13}, - [89] = {.lex_state = 97, .external_lex_state = 6}, + [82] = {.lex_state = 134, .external_lex_state = 12}, + [83] = {.lex_state = 77}, + [84] = {.lex_state = 77}, + [85] = {.lex_state = 147, .external_lex_state = 13}, + [86] = {.lex_state = 91}, + [87] = {.lex_state = 98}, + [88] = {.lex_state = 147, .external_lex_state = 13}, + [89] = {.lex_state = 107, .external_lex_state = 6}, [90] = {.lex_state = 56, .external_lex_state = 2}, [91] = {.lex_state = 56, .external_lex_state = 2}, [92] = {.lex_state = 56, .external_lex_state = 2}, - [93] = {.lex_state = 141}, + [93] = {.lex_state = 147}, [94] = {.lex_state = 62}, - [95] = {.lex_state = 82, .external_lex_state = 14}, - [96] = {.lex_state = 90}, - [97] = {.lex_state = 97}, - [98] = {.lex_state = 82, .external_lex_state = 14}, - [99] = {.lex_state = 97, .external_lex_state = 6}, + [95] = {.lex_state = 83, .external_lex_state = 14}, + [96] = {.lex_state = 91}, + [97] = {.lex_state = 98}, + [98] = {.lex_state = 83, .external_lex_state = 14}, + [99] = {.lex_state = 107, .external_lex_state = 6}, [100] = {.lex_state = 56, .external_lex_state = 2}, [101] = {.lex_state = 56, .external_lex_state = 2}, [102] = {.lex_state = 56, .external_lex_state = 2}, - [103] = {.lex_state = 121, .external_lex_state = 3}, - [104] = {.lex_state = 62}, - [105] = {.lex_state = 82, .external_lex_state = 3}, - [106] = {.lex_state = 82, .external_lex_state = 10}, - [107] = {.lex_state = 90}, - [108] = {.lex_state = 97}, - [109] = {.lex_state = 82, .external_lex_state = 10}, - [110] = {.lex_state = 97, .external_lex_state = 6}, - [111] = {.lex_state = 56, .external_lex_state = 2}, + [103] = {.lex_state = 126, .external_lex_state = 3}, + [104] = {.lex_state = 126, .external_lex_state = 3}, + [105] = {.lex_state = 62}, + [106] = {.lex_state = 83, .external_lex_state = 3}, + [107] = {.lex_state = 83, .external_lex_state = 10}, + [108] = {.lex_state = 91}, + [109] = {.lex_state = 98}, + [110] = {.lex_state = 83, .external_lex_state = 10}, + [111] = {.lex_state = 107, .external_lex_state = 6}, [112] = {.lex_state = 56, .external_lex_state = 2}, [113] = {.lex_state = 56, .external_lex_state = 2}, - [114] = {.lex_state = 121, .external_lex_state = 4}, - [115] = {.lex_state = 82, .external_lex_state = 4}, - [116] = {.lex_state = 72, .external_lex_state = 15}, - [117] = {.lex_state = 90}, - [118] = {.lex_state = 97}, - [119] = {.lex_state = 72, .external_lex_state = 15}, - [120] = {.lex_state = 97, .external_lex_state = 6}, - [121] = {.lex_state = 56, .external_lex_state = 2}, + [114] = {.lex_state = 56, .external_lex_state = 2}, + [115] = {.lex_state = 126, .external_lex_state = 4}, + [116] = {.lex_state = 83, .external_lex_state = 4}, + [117] = {.lex_state = 73, .external_lex_state = 15}, + [118] = {.lex_state = 91}, + [119] = {.lex_state = 98}, + [120] = {.lex_state = 73, .external_lex_state = 15}, + [121] = {.lex_state = 107, .external_lex_state = 6}, [122] = {.lex_state = 56, .external_lex_state = 2}, [123] = {.lex_state = 56, .external_lex_state = 2}, - [124] = {.lex_state = 72, .external_lex_state = 2}, - [125] = {.lex_state = 72}, - [126] = {.lex_state = 87, .external_lex_state = 5}, - [127] = {.lex_state = 112, .external_lex_state = 5}, - [128] = {.lex_state = 145}, - [129] = {.lex_state = 90, .external_lex_state = 13}, - [130] = {.lex_state = 97, .external_lex_state = 6}, - [131] = {.lex_state = 56, .external_lex_state = 2}, + [124] = {.lex_state = 56, .external_lex_state = 2}, + [125] = {.lex_state = 73, .external_lex_state = 2}, + [126] = {.lex_state = 73}, + [127] = {.lex_state = 88, .external_lex_state = 5}, + [128] = {.lex_state = 115, .external_lex_state = 5}, + [129] = {.lex_state = 151}, + [130] = {.lex_state = 91, .external_lex_state = 13}, + [131] = {.lex_state = 107, .external_lex_state = 6}, [132] = {.lex_state = 56, .external_lex_state = 2}, - [133] = {.lex_state = 90}, - [134] = {.lex_state = 112, .external_lex_state = 5}, - [135] = {.lex_state = 112, .external_lex_state = 5}, - [136] = {.lex_state = 112, .external_lex_state = 5}, - [137] = {.lex_state = 62}, - [138] = {.lex_state = 151, .external_lex_state = 16}, - [139] = {.lex_state = 154, .external_lex_state = 6}, - [140] = {.lex_state = 151, .external_lex_state = 16}, - [141] = {.lex_state = 151, .external_lex_state = 16}, - [142] = {.lex_state = 62}, - [143] = {.lex_state = 68}, - [144] = {.lex_state = 56, .external_lex_state = 2}, + [133] = {.lex_state = 56, .external_lex_state = 2}, + [134] = {.lex_state = 91}, + [135] = {.lex_state = 115, .external_lex_state = 5}, + [136] = {.lex_state = 115, .external_lex_state = 5}, + [137] = {.lex_state = 115, .external_lex_state = 5}, + [138] = {.lex_state = 62}, + [139] = {.lex_state = 157, .external_lex_state = 16}, + [140] = {.lex_state = 160, .external_lex_state = 6}, + [141] = {.lex_state = 157, .external_lex_state = 16}, + [142] = {.lex_state = 157, .external_lex_state = 16}, + [143] = {.lex_state = 62}, + [144] = {.lex_state = 68}, [145] = {.lex_state = 56, .external_lex_state = 2}, - [146] = {.lex_state = 72}, - [147] = {.lex_state = 72}, - [148] = {.lex_state = 56, .external_lex_state = 2}, - [149] = {.lex_state = 74, .external_lex_state = 2}, - [150] = {.lex_state = 76}, - [151] = {.lex_state = 76}, - [152] = {.lex_state = 156, .external_lex_state = 6}, - [153] = {.lex_state = 156}, - [154] = {.lex_state = 158, .external_lex_state = 17}, - [155] = {.lex_state = 90}, - [156] = {.lex_state = 97}, - [157] = {.lex_state = 158, .external_lex_state = 17}, - [158] = {.lex_state = 97, .external_lex_state = 6}, - [159] = {.lex_state = 56, .external_lex_state = 2}, + [146] = {.lex_state = 56, .external_lex_state = 2}, + [147] = {.lex_state = 73}, + [148] = {.lex_state = 73}, + [149] = {.lex_state = 56, .external_lex_state = 2}, + [150] = {.lex_state = 75, .external_lex_state = 2}, + [151] = {.lex_state = 77}, + [152] = {.lex_state = 77}, + [153] = {.lex_state = 162, .external_lex_state = 6}, + [154] = {.lex_state = 162}, + [155] = {.lex_state = 164, .external_lex_state = 17}, + [156] = {.lex_state = 91}, + [157] = {.lex_state = 98}, + [158] = {.lex_state = 164, .external_lex_state = 17}, + [159] = {.lex_state = 107, .external_lex_state = 6}, [160] = {.lex_state = 56, .external_lex_state = 2}, [161] = {.lex_state = 56, .external_lex_state = 2}, - [162] = {.lex_state = 161, .external_lex_state = 17}, - [163] = {.lex_state = 68}, - [164] = {.lex_state = 158, .external_lex_state = 18}, - [165] = {.lex_state = 163, .external_lex_state = 2}, - [166] = {.lex_state = 62}, - [167] = {.lex_state = 158, .external_lex_state = 18}, - [168] = {.lex_state = 72, .external_lex_state = 2}, - [169] = {.lex_state = 62}, - [170] = {.lex_state = 56, .external_lex_state = 2}, - [171] = {.lex_state = 72}, - [172] = {.lex_state = 74, .external_lex_state = 2}, - [173] = {.lex_state = 76}, - [174] = {.lex_state = 76}, - [175] = {.lex_state = 165, .external_lex_state = 6}, - [176] = {.lex_state = 156}, - [177] = {.lex_state = 167, .external_lex_state = 17}, - [178] = {.lex_state = 167, .external_lex_state = 17}, - [179] = {.lex_state = 169, .external_lex_state = 17}, - [180] = {.lex_state = 68}, - [181] = {.lex_state = 167, .external_lex_state = 18}, - [182] = {.lex_state = 171, .external_lex_state = 2}, - [183] = {.lex_state = 62}, - [184] = {.lex_state = 72, .external_lex_state = 2}, - [185] = {.lex_state = 68}, - [186] = {.lex_state = 163, .external_lex_state = 2}, - [187] = {.lex_state = 68}, - [188] = {.lex_state = 56, .external_lex_state = 2}, - [189] = {.lex_state = 173, .external_lex_state = 2}, - [190] = {.lex_state = 56, .external_lex_state = 2}, - [191] = {.lex_state = 127, .external_lex_state = 4}, - [192] = {.lex_state = 176, .external_lex_state = 19}, - [193] = {.lex_state = 56}, - [194] = {.lex_state = 179}, - [195] = {.lex_state = 72}, - [196] = {.lex_state = 56, .external_lex_state = 20}, - [197] = {.lex_state = 72}, - [198] = {.lex_state = 87, .external_lex_state = 5}, - [199] = {.lex_state = 87, .external_lex_state = 5}, - [200] = {.lex_state = 127, .external_lex_state = 4}, - [201] = {.lex_state = 199, .external_lex_state = 7}, - [202] = {.lex_state = 87, .external_lex_state = 7}, - [203] = {.lex_state = 56, .external_lex_state = 2}, - [204] = {.lex_state = 87, .external_lex_state = 7}, - [205] = {.lex_state = 72, .external_lex_state = 2}, - [206] = {.lex_state = 72, .external_lex_state = 15}, - [207] = {.lex_state = 72, .external_lex_state = 15}, - [208] = {.lex_state = 72, .external_lex_state = 2}, - [209] = {.lex_state = 203, .external_lex_state = 11}, - [210] = {.lex_state = 203, .external_lex_state = 11}, - [211] = {.lex_state = 203, .external_lex_state = 11}, - [212] = {.lex_state = 125, .external_lex_state = 8}, - [213] = {.lex_state = 163}, - [214] = {.lex_state = 110, .external_lex_state = 21}, - [215] = {.lex_state = 90}, - [216] = {.lex_state = 97}, - [217] = {.lex_state = 110, .external_lex_state = 21}, - [218] = {.lex_state = 97, .external_lex_state = 6}, - [219] = {.lex_state = 56, .external_lex_state = 2}, - [220] = {.lex_state = 56, .external_lex_state = 2}, + [162] = {.lex_state = 56, .external_lex_state = 2}, + [163] = {.lex_state = 167, .external_lex_state = 17}, + [164] = {.lex_state = 162}, + [165] = {.lex_state = 164, .external_lex_state = 18}, + [166] = {.lex_state = 169, .external_lex_state = 2}, + [167] = {.lex_state = 62}, + [168] = {.lex_state = 164, .external_lex_state = 18}, + [169] = {.lex_state = 73, .external_lex_state = 2}, + [170] = {.lex_state = 62}, + [171] = {.lex_state = 56, .external_lex_state = 2}, + [172] = {.lex_state = 73}, + [173] = {.lex_state = 75, .external_lex_state = 2}, + [174] = {.lex_state = 77}, + [175] = {.lex_state = 77}, + [176] = {.lex_state = 171, .external_lex_state = 6}, + [177] = {.lex_state = 162}, + [178] = {.lex_state = 173, .external_lex_state = 17}, + [179] = {.lex_state = 173, .external_lex_state = 17}, + [180] = {.lex_state = 175, .external_lex_state = 17}, + [181] = {.lex_state = 162}, + [182] = {.lex_state = 173, .external_lex_state = 18}, + [183] = {.lex_state = 177, .external_lex_state = 2}, + [184] = {.lex_state = 62}, + [185] = {.lex_state = 73, .external_lex_state = 2}, + [186] = {.lex_state = 162}, + [187] = {.lex_state = 169, .external_lex_state = 2}, + [188] = {.lex_state = 77}, + [189] = {.lex_state = 56, .external_lex_state = 2}, + [190] = {.lex_state = 179, .external_lex_state = 2}, + [191] = {.lex_state = 56, .external_lex_state = 2}, + [192] = {.lex_state = 132, .external_lex_state = 4}, + [193] = {.lex_state = 182, .external_lex_state = 19}, + [194] = {.lex_state = 56}, + [195] = {.lex_state = 185}, + [196] = {.lex_state = 73}, + [197] = {.lex_state = 56, .external_lex_state = 20}, + [198] = {.lex_state = 73}, + [199] = {.lex_state = 88, .external_lex_state = 5}, + [200] = {.lex_state = 88, .external_lex_state = 5}, + [201] = {.lex_state = 132, .external_lex_state = 4}, + [202] = {.lex_state = 115, .external_lex_state = 7}, + [203] = {.lex_state = 205, .external_lex_state = 7}, + [204] = {.lex_state = 88, .external_lex_state = 7}, + [205] = {.lex_state = 56, .external_lex_state = 2}, + [206] = {.lex_state = 88, .external_lex_state = 7}, + [207] = {.lex_state = 73, .external_lex_state = 2}, + [208] = {.lex_state = 73, .external_lex_state = 15}, + [209] = {.lex_state = 73, .external_lex_state = 15}, + [210] = {.lex_state = 73, .external_lex_state = 2}, + [211] = {.lex_state = 209, .external_lex_state = 11}, + [212] = {.lex_state = 209, .external_lex_state = 11}, + [213] = {.lex_state = 209, .external_lex_state = 11}, + [214] = {.lex_state = 130, .external_lex_state = 8}, + [215] = {.lex_state = 169}, + [216] = {.lex_state = 113, .external_lex_state = 21}, + [217] = {.lex_state = 91}, + [218] = {.lex_state = 98}, + [219] = {.lex_state = 113, .external_lex_state = 21}, + [220] = {.lex_state = 107, .external_lex_state = 6}, [221] = {.lex_state = 56, .external_lex_state = 2}, - [222] = {.lex_state = 72}, - [223] = {.lex_state = 72}, - [224] = {.lex_state = 56, .external_lex_state = 2}, - [225] = {.lex_state = 199, .external_lex_state = 7}, - [226] = {.lex_state = 72}, - [227] = {.lex_state = 56, .external_lex_state = 2}, - [228] = {.lex_state = 72}, - [229] = {.lex_state = 116, .external_lex_state = 4}, - [230] = {.lex_state = 72}, - [231] = {.lex_state = 116, .external_lex_state = 10}, - [232] = {.lex_state = 116, .external_lex_state = 10}, - [233] = {.lex_state = 145}, - [234] = {.lex_state = 90}, - [235] = {.lex_state = 116, .external_lex_state = 10}, - [236] = {.lex_state = 116, .external_lex_state = 10}, - [237] = {.lex_state = 116, .external_lex_state = 10}, - [238] = {.lex_state = 116, .external_lex_state = 4}, - [239] = {.lex_state = 72}, - [240] = {.lex_state = 62}, - [241] = {.lex_state = 151, .external_lex_state = 16}, - [242] = {.lex_state = 154, .external_lex_state = 6}, - [243] = {.lex_state = 151, .external_lex_state = 16}, - [244] = {.lex_state = 151, .external_lex_state = 16}, - [245] = {.lex_state = 68}, - [246] = {.lex_state = 163, .external_lex_state = 2}, - [247] = {.lex_state = 68}, - [248] = {.lex_state = 171, .external_lex_state = 2}, - [249] = {.lex_state = 68}, - [250] = {.lex_state = 163, .external_lex_state = 2}, - [251] = {.lex_state = 68}, - [252] = {.lex_state = 205, .external_lex_state = 22}, - [253] = {.lex_state = 110, .external_lex_state = 23}, - [254] = {.lex_state = 114, .external_lex_state = 9}, - [255] = {.lex_state = 72}, - [256] = {.lex_state = 119}, - [257] = {.lex_state = 129, .external_lex_state = 12}, - [258] = {.lex_state = 141}, - [259] = {.lex_state = 62}, - [260] = {.lex_state = 121, .external_lex_state = 14}, - [261] = {.lex_state = 121, .external_lex_state = 14}, - [262] = {.lex_state = 62}, - [263] = {.lex_state = 121, .external_lex_state = 3}, - [264] = {.lex_state = 121, .external_lex_state = 10}, - [265] = {.lex_state = 121, .external_lex_state = 10}, - [266] = {.lex_state = 121, .external_lex_state = 4}, - [267] = {.lex_state = 112, .external_lex_state = 5}, - [268] = {.lex_state = 68}, - [269] = {.lex_state = 56, .external_lex_state = 2}, - [270] = {.lex_state = 127, .external_lex_state = 4}, - [271] = {.lex_state = 207, .external_lex_state = 2}, - [272] = {.lex_state = 56, .external_lex_state = 2}, - [273] = {.lex_state = 56}, - [274] = {.lex_state = 179}, - [275] = {.lex_state = 72}, - [276] = {.lex_state = 72}, - [277] = {.lex_state = 112, .external_lex_state = 5}, - [278] = {.lex_state = 112, .external_lex_state = 5}, - [279] = {.lex_state = 209, .external_lex_state = 7}, - [280] = {.lex_state = 112, .external_lex_state = 7}, - [281] = {.lex_state = 121, .external_lex_state = 4}, - [282] = {.lex_state = 125, .external_lex_state = 8}, + [222] = {.lex_state = 56, .external_lex_state = 2}, + [223] = {.lex_state = 56, .external_lex_state = 2}, + [224] = {.lex_state = 119, .external_lex_state = 4}, + [225] = {.lex_state = 77}, + [226] = {.lex_state = 77}, + [227] = {.lex_state = 211, .external_lex_state = 10}, + [228] = {.lex_state = 91}, + [229] = {.lex_state = 98}, + [230] = {.lex_state = 211, .external_lex_state = 10}, + [231] = {.lex_state = 107, .external_lex_state = 6}, + [232] = {.lex_state = 56, .external_lex_state = 2}, + [233] = {.lex_state = 56, .external_lex_state = 2}, + [234] = {.lex_state = 56, .external_lex_state = 2}, + [235] = {.lex_state = 211, .external_lex_state = 4}, + [236] = {.lex_state = 73}, + [237] = {.lex_state = 73}, + [238] = {.lex_state = 56, .external_lex_state = 2}, + [239] = {.lex_state = 205, .external_lex_state = 7}, + [240] = {.lex_state = 73}, + [241] = {.lex_state = 56, .external_lex_state = 2}, + [242] = {.lex_state = 73}, + [243] = {.lex_state = 119, .external_lex_state = 4}, + [244] = {.lex_state = 73}, + [245] = {.lex_state = 122, .external_lex_state = 10}, + [246] = {.lex_state = 122, .external_lex_state = 10}, + [247] = {.lex_state = 151}, + [248] = {.lex_state = 91}, + [249] = {.lex_state = 122, .external_lex_state = 10}, + [250] = {.lex_state = 122, .external_lex_state = 10}, + [251] = {.lex_state = 122, .external_lex_state = 10}, + [252] = {.lex_state = 119, .external_lex_state = 4}, + [253] = {.lex_state = 73}, + [254] = {.lex_state = 62}, + [255] = {.lex_state = 157, .external_lex_state = 16}, + [256] = {.lex_state = 160, .external_lex_state = 6}, + [257] = {.lex_state = 157, .external_lex_state = 16}, + [258] = {.lex_state = 157, .external_lex_state = 16}, + [259] = {.lex_state = 162}, + [260] = {.lex_state = 169, .external_lex_state = 2}, + [261] = {.lex_state = 162}, + [262] = {.lex_state = 177, .external_lex_state = 2}, + [263] = {.lex_state = 162}, + [264] = {.lex_state = 169, .external_lex_state = 2}, + [265] = {.lex_state = 77}, + [266] = {.lex_state = 213, .external_lex_state = 22}, + [267] = {.lex_state = 215, .external_lex_state = 23}, + [268] = {.lex_state = 117, .external_lex_state = 9}, + [269] = {.lex_state = 73}, + [270] = {.lex_state = 124}, + [271] = {.lex_state = 134, .external_lex_state = 12}, + [272] = {.lex_state = 147}, + [273] = {.lex_state = 62}, + [274] = {.lex_state = 126, .external_lex_state = 14}, + [275] = {.lex_state = 126, .external_lex_state = 14}, + [276] = {.lex_state = 62}, + [277] = {.lex_state = 126, .external_lex_state = 3}, + [278] = {.lex_state = 126, .external_lex_state = 10}, + [279] = {.lex_state = 126, .external_lex_state = 10}, + [280] = {.lex_state = 126, .external_lex_state = 4}, + [281] = {.lex_state = 115, .external_lex_state = 5}, + [282] = {.lex_state = 77}, [283] = {.lex_state = 56, .external_lex_state = 2}, - [284] = {.lex_state = 112, .external_lex_state = 7}, - [285] = {.lex_state = 114, .external_lex_state = 9}, - [286] = {.lex_state = 76}, - [287] = {.lex_state = 211, .external_lex_state = 13}, - [288] = {.lex_state = 211, .external_lex_state = 13}, - [289] = {.lex_state = 211}, - [290] = {.lex_state = 129, .external_lex_state = 12}, - [291] = {.lex_state = 72}, - [292] = {.lex_state = 129, .external_lex_state = 11}, - [293] = {.lex_state = 129, .external_lex_state = 11}, - [294] = {.lex_state = 145}, - [295] = {.lex_state = 90}, - [296] = {.lex_state = 129, .external_lex_state = 11}, - [297] = {.lex_state = 129, .external_lex_state = 11}, - [298] = {.lex_state = 129, .external_lex_state = 11}, - [299] = {.lex_state = 62}, - [300] = {.lex_state = 151, .external_lex_state = 16}, - [301] = {.lex_state = 154, .external_lex_state = 6}, - [302] = {.lex_state = 151, .external_lex_state = 16}, - [303] = {.lex_state = 151, .external_lex_state = 16}, - [304] = {.lex_state = 68}, - [305] = {.lex_state = 163, .external_lex_state = 2}, - [306] = {.lex_state = 68}, - [307] = {.lex_state = 171, .external_lex_state = 2}, - [308] = {.lex_state = 68}, - [309] = {.lex_state = 163, .external_lex_state = 2}, - [310] = {.lex_state = 76}, - [311] = {.lex_state = 199, .external_lex_state = 23}, - [312] = {.lex_state = 213}, - [313] = {.lex_state = 211}, - [314] = {.lex_state = 141}, - [315] = {.lex_state = 72}, - [316] = {.lex_state = 141, .external_lex_state = 13}, - [317] = {.lex_state = 218, .external_lex_state = 13}, - [318] = {.lex_state = 145}, - [319] = {.lex_state = 90}, - [320] = {.lex_state = 218, .external_lex_state = 13}, - [321] = {.lex_state = 218, .external_lex_state = 13}, - [322] = {.lex_state = 218, .external_lex_state = 13}, - [323] = {.lex_state = 62}, - [324] = {.lex_state = 151, .external_lex_state = 16}, - [325] = {.lex_state = 154, .external_lex_state = 6}, - [326] = {.lex_state = 151, .external_lex_state = 16}, - [327] = {.lex_state = 151, .external_lex_state = 16}, - [328] = {.lex_state = 68}, - [329] = {.lex_state = 163, .external_lex_state = 2}, - [330] = {.lex_state = 68}, - [331] = {.lex_state = 171, .external_lex_state = 2}, - [332] = {.lex_state = 68}, - [333] = {.lex_state = 163, .external_lex_state = 2}, - [334] = {.lex_state = 76}, - [335] = {.lex_state = 213}, - [336] = {.lex_state = 114, .external_lex_state = 9}, - [337] = {.lex_state = 72}, - [338] = {.lex_state = 82, .external_lex_state = 14}, - [339] = {.lex_state = 121, .external_lex_state = 14}, - [340] = {.lex_state = 145}, - [341] = {.lex_state = 90}, - [342] = {.lex_state = 121, .external_lex_state = 14}, - [343] = {.lex_state = 121, .external_lex_state = 14}, - [344] = {.lex_state = 121, .external_lex_state = 14}, - [345] = {.lex_state = 62}, - [346] = {.lex_state = 151, .external_lex_state = 16}, - [347] = {.lex_state = 154, .external_lex_state = 6}, - [348] = {.lex_state = 151, .external_lex_state = 16}, - [349] = {.lex_state = 151, .external_lex_state = 16}, - [350] = {.lex_state = 68}, - [351] = {.lex_state = 163, .external_lex_state = 2}, - [352] = {.lex_state = 68}, - [353] = {.lex_state = 171, .external_lex_state = 2}, - [354] = {.lex_state = 68}, - [355] = {.lex_state = 163, .external_lex_state = 2}, - [356] = {.lex_state = 82, .external_lex_state = 3}, - [357] = {.lex_state = 72}, - [358] = {.lex_state = 82, .external_lex_state = 10}, - [359] = {.lex_state = 121, .external_lex_state = 10}, - [360] = {.lex_state = 145}, - [361] = {.lex_state = 90}, - [362] = {.lex_state = 121, .external_lex_state = 10}, - [363] = {.lex_state = 121, .external_lex_state = 10}, - [364] = {.lex_state = 121, .external_lex_state = 10}, - [365] = {.lex_state = 62}, - [366] = {.lex_state = 151, .external_lex_state = 16}, - [367] = {.lex_state = 154, .external_lex_state = 6}, - [368] = {.lex_state = 151, .external_lex_state = 16}, - [369] = {.lex_state = 151, .external_lex_state = 16}, - [370] = {.lex_state = 68}, - [371] = {.lex_state = 163, .external_lex_state = 2}, - [372] = {.lex_state = 68}, - [373] = {.lex_state = 171, .external_lex_state = 2}, - [374] = {.lex_state = 68}, - [375] = {.lex_state = 163, .external_lex_state = 2}, - [376] = {.lex_state = 82, .external_lex_state = 4}, - [377] = {.lex_state = 72}, - [378] = {.lex_state = 72, .external_lex_state = 15}, - [379] = {.lex_state = 163, .external_lex_state = 15}, - [380] = {.lex_state = 145}, - [381] = {.lex_state = 90}, - [382] = {.lex_state = 163, .external_lex_state = 15}, - [383] = {.lex_state = 163, .external_lex_state = 15}, - [384] = {.lex_state = 163, .external_lex_state = 15}, - [385] = {.lex_state = 62}, - [386] = {.lex_state = 151, .external_lex_state = 16}, - [387] = {.lex_state = 154, .external_lex_state = 6}, - [388] = {.lex_state = 151, .external_lex_state = 16}, - [389] = {.lex_state = 151, .external_lex_state = 16}, - [390] = {.lex_state = 68}, - [391] = {.lex_state = 163, .external_lex_state = 2}, - [392] = {.lex_state = 68}, - [393] = {.lex_state = 171, .external_lex_state = 2}, - [394] = {.lex_state = 68}, - [395] = {.lex_state = 163, .external_lex_state = 2}, - [396] = {.lex_state = 112, .external_lex_state = 5}, - [397] = {.lex_state = 87, .external_lex_state = 5}, - [398] = {.lex_state = 112, .external_lex_state = 5}, - [399] = {.lex_state = 90, .external_lex_state = 13}, - [400] = {.lex_state = 90, .external_lex_state = 13}, - [401] = {.lex_state = 90, .external_lex_state = 13}, - [402] = {.lex_state = 90}, - [403] = {.lex_state = 62}, - [404] = {.lex_state = 151, .external_lex_state = 16}, - [405] = {.lex_state = 154, .external_lex_state = 6}, - [406] = {.lex_state = 151, .external_lex_state = 16}, - [407] = {.lex_state = 151, .external_lex_state = 16}, - [408] = {.lex_state = 68}, - [409] = {.lex_state = 163, .external_lex_state = 2}, - [410] = {.lex_state = 68}, - [411] = {.lex_state = 171, .external_lex_state = 2}, - [412] = {.lex_state = 145}, - [413] = {.lex_state = 90}, - [414] = {.lex_state = 72}, - [415] = {.lex_state = 221, .external_lex_state = 16}, - [416] = {.lex_state = 112, .external_lex_state = 5}, - [417] = {.lex_state = 223, .external_lex_state = 24}, - [418] = {.lex_state = 90}, - [419] = {.lex_state = 97}, - [420] = {.lex_state = 223, .external_lex_state = 24}, - [421] = {.lex_state = 97, .external_lex_state = 6}, - [422] = {.lex_state = 225}, - [423] = {.lex_state = 56, .external_lex_state = 2}, - [424] = {.lex_state = 56, .external_lex_state = 2}, - [425] = {.lex_state = 56, .external_lex_state = 2}, - [426] = {.lex_state = 223, .external_lex_state = 16}, - [427] = {.lex_state = 62}, - [428] = {.lex_state = 151, .external_lex_state = 16}, - [429] = {.lex_state = 151, .external_lex_state = 16}, - [430] = {.lex_state = 151, .external_lex_state = 16}, - [431] = {.lex_state = 112, .external_lex_state = 5}, - [432] = {.lex_state = 225}, - [433] = {.lex_state = 223, .external_lex_state = 16}, - [434] = {.lex_state = 112, .external_lex_state = 5}, - [435] = {.lex_state = 225}, - [436] = {.lex_state = 223, .external_lex_state = 16}, - [437] = {.lex_state = 114, .external_lex_state = 9}, - [438] = {.lex_state = 116, .external_lex_state = 4}, - [439] = {.lex_state = 72}, - [440] = {.lex_state = 72}, - [441] = {.lex_state = 116, .external_lex_state = 10}, - [442] = {.lex_state = 116, .external_lex_state = 10}, - [443] = {.lex_state = 116, .external_lex_state = 4}, - [444] = {.lex_state = 119}, - [445] = {.lex_state = 121, .external_lex_state = 4}, - [446] = {.lex_state = 125, .external_lex_state = 8}, - [447] = {.lex_state = 56, .external_lex_state = 2}, - [448] = {.lex_state = 68}, - [449] = {.lex_state = 129, .external_lex_state = 12}, - [450] = {.lex_state = 141}, - [451] = {.lex_state = 62}, - [452] = {.lex_state = 156, .external_lex_state = 25}, - [453] = {.lex_state = 90}, - [454] = {.lex_state = 97}, - [455] = {.lex_state = 156, .external_lex_state = 25}, - [456] = {.lex_state = 97, .external_lex_state = 6}, - [457] = {.lex_state = 56, .external_lex_state = 2}, - [458] = {.lex_state = 56, .external_lex_state = 2}, - [459] = {.lex_state = 56, .external_lex_state = 2}, - [460] = {.lex_state = 156, .external_lex_state = 6}, - [461] = {.lex_state = 62}, - [462] = {.lex_state = 156, .external_lex_state = 6}, - [463] = {.lex_state = 156, .external_lex_state = 13}, - [464] = {.lex_state = 90}, - [465] = {.lex_state = 97}, - [466] = {.lex_state = 156, .external_lex_state = 13}, - [467] = {.lex_state = 97, .external_lex_state = 6}, - [468] = {.lex_state = 56, .external_lex_state = 2}, - [469] = {.lex_state = 56, .external_lex_state = 2}, - [470] = {.lex_state = 56, .external_lex_state = 2}, - [471] = {.lex_state = 156}, - [472] = {.lex_state = 156}, - [473] = {.lex_state = 72}, - [474] = {.lex_state = 158, .external_lex_state = 17}, - [475] = {.lex_state = 158, .external_lex_state = 17}, - [476] = {.lex_state = 145}, - [477] = {.lex_state = 90}, - [478] = {.lex_state = 158, .external_lex_state = 17}, - [479] = {.lex_state = 158, .external_lex_state = 17}, - [480] = {.lex_state = 158, .external_lex_state = 17}, - [481] = {.lex_state = 62}, - [482] = {.lex_state = 151, .external_lex_state = 16}, - [483] = {.lex_state = 154, .external_lex_state = 6}, - [484] = {.lex_state = 151, .external_lex_state = 16}, - [485] = {.lex_state = 151, .external_lex_state = 16}, - [486] = {.lex_state = 68}, - [487] = {.lex_state = 163, .external_lex_state = 2}, - [488] = {.lex_state = 68}, - [489] = {.lex_state = 171, .external_lex_state = 2}, - [490] = {.lex_state = 68}, - [491] = {.lex_state = 163, .external_lex_state = 2}, - [492] = {.lex_state = 68}, - [493] = {.lex_state = 56, .external_lex_state = 2}, - [494] = {.lex_state = 112, .external_lex_state = 5}, - [495] = {.lex_state = 56, .external_lex_state = 2}, - [496] = {.lex_state = 68}, - [497] = {.lex_state = 176, .external_lex_state = 19}, - [498] = {.lex_state = 56}, - [499] = {.lex_state = 179}, - [500] = {.lex_state = 72}, - [501] = {.lex_state = 56, .external_lex_state = 20}, - [502] = {.lex_state = 72}, - [503] = {.lex_state = 158, .external_lex_state = 17}, - [504] = {.lex_state = 158, .external_lex_state = 17}, - [505] = {.lex_state = 68}, - [506] = {.lex_state = 230, .external_lex_state = 18}, - [507] = {.lex_state = 158, .external_lex_state = 18}, - [508] = {.lex_state = 158, .external_lex_state = 18}, - [509] = {.lex_state = 114, .external_lex_state = 9}, - [510] = {.lex_state = 72}, - [511] = {.lex_state = 119}, - [512] = {.lex_state = 129, .external_lex_state = 12}, - [513] = {.lex_state = 141}, - [514] = {.lex_state = 62}, - [515] = {.lex_state = 165, .external_lex_state = 25}, - [516] = {.lex_state = 165, .external_lex_state = 25}, - [517] = {.lex_state = 62}, - [518] = {.lex_state = 165, .external_lex_state = 6}, - [519] = {.lex_state = 165, .external_lex_state = 13}, - [520] = {.lex_state = 165, .external_lex_state = 13}, - [521] = {.lex_state = 156}, - [522] = {.lex_state = 167, .external_lex_state = 17}, - [523] = {.lex_state = 68}, - [524] = {.lex_state = 56, .external_lex_state = 2}, - [525] = {.lex_state = 56, .external_lex_state = 2}, - [526] = {.lex_state = 56}, - [527] = {.lex_state = 179}, - [528] = {.lex_state = 72}, - [529] = {.lex_state = 72}, - [530] = {.lex_state = 167, .external_lex_state = 17}, - [531] = {.lex_state = 167, .external_lex_state = 17}, - [532] = {.lex_state = 232, .external_lex_state = 18}, - [533] = {.lex_state = 167, .external_lex_state = 18}, - [534] = {.lex_state = 167, .external_lex_state = 18}, - [535] = {.lex_state = 112, .external_lex_state = 5}, - [536] = {.lex_state = 119}, - [537] = {.lex_state = 127, .external_lex_state = 4}, - [538] = {.lex_state = 125, .external_lex_state = 8}, - [539] = {.lex_state = 82, .external_lex_state = 4}, - [540] = {.lex_state = 110, .external_lex_state = 8}, - [541] = {.lex_state = 127, .external_lex_state = 4}, - [542] = {.lex_state = 97}, - [543] = {.lex_state = 97, .external_lex_state = 6}, - [544] = {.lex_state = 176, .external_lex_state = 19}, - [545] = {.lex_state = 72}, - [546] = {.lex_state = 87, .external_lex_state = 5}, - [547] = {.lex_state = 87, .external_lex_state = 5}, - [548] = {.lex_state = 112, .external_lex_state = 7}, - [549] = {.lex_state = 199, .external_lex_state = 5}, - [550] = {.lex_state = 199, .external_lex_state = 5}, - [551] = {.lex_state = 234, .external_lex_state = 7}, - [552] = {.lex_state = 234, .external_lex_state = 7}, - [553] = {.lex_state = 199, .external_lex_state = 5}, - [554] = {.lex_state = 199, .external_lex_state = 5}, - [555] = {.lex_state = 234, .external_lex_state = 7}, - [556] = {.lex_state = 127, .external_lex_state = 4}, - [557] = {.lex_state = 199, .external_lex_state = 7}, - [558] = {.lex_state = 199, .external_lex_state = 7}, - [559] = {.lex_state = 87, .external_lex_state = 7}, - [560] = {.lex_state = 87, .external_lex_state = 7}, - [561] = {.lex_state = 203, .external_lex_state = 12}, - [562] = {.lex_state = 62, .external_lex_state = 13}, - [563] = {.lex_state = 203, .external_lex_state = 11}, - [564] = {.lex_state = 203, .external_lex_state = 12}, - [565] = {.lex_state = 62, .external_lex_state = 13}, - [566] = {.lex_state = 129, .external_lex_state = 12}, - [567] = {.lex_state = 125, .external_lex_state = 8}, - [568] = {.lex_state = 236, .external_lex_state = 13}, - [569] = {.lex_state = 90}, - [570] = {.lex_state = 97}, - [571] = {.lex_state = 236, .external_lex_state = 13}, - [572] = {.lex_state = 97, .external_lex_state = 6}, - [573] = {.lex_state = 56, .external_lex_state = 2}, - [574] = {.lex_state = 56, .external_lex_state = 2}, - [575] = {.lex_state = 56, .external_lex_state = 2}, - [576] = {.lex_state = 163}, - [577] = {.lex_state = 72}, - [578] = {.lex_state = 110, .external_lex_state = 21}, - [579] = {.lex_state = 125, .external_lex_state = 21}, - [580] = {.lex_state = 145}, - [581] = {.lex_state = 90}, - [582] = {.lex_state = 125, .external_lex_state = 21}, - [583] = {.lex_state = 125, .external_lex_state = 21}, - [584] = {.lex_state = 125, .external_lex_state = 21}, - [585] = {.lex_state = 62}, - [586] = {.lex_state = 151, .external_lex_state = 16}, - [587] = {.lex_state = 154, .external_lex_state = 6}, - [588] = {.lex_state = 151, .external_lex_state = 16}, - [589] = {.lex_state = 151, .external_lex_state = 16}, - [590] = {.lex_state = 68}, - [591] = {.lex_state = 163, .external_lex_state = 2}, - [592] = {.lex_state = 68}, - [593] = {.lex_state = 171, .external_lex_state = 2}, - [594] = {.lex_state = 68}, - [595] = {.lex_state = 163, .external_lex_state = 2}, - [596] = {.lex_state = 116, .external_lex_state = 10}, - [597] = {.lex_state = 116, .external_lex_state = 10}, - [598] = {.lex_state = 116, .external_lex_state = 4}, - [599] = {.lex_state = 56, .external_lex_state = 2}, - [600] = {.lex_state = 127, .external_lex_state = 4}, - [601] = {.lex_state = 234, .external_lex_state = 7}, - [602] = {.lex_state = 56, .external_lex_state = 2}, - [603] = {.lex_state = 127, .external_lex_state = 4}, - [604] = {.lex_state = 199, .external_lex_state = 7}, - [605] = {.lex_state = 127, .external_lex_state = 4}, - [606] = {.lex_state = 56, .external_lex_state = 2}, - [607] = {.lex_state = 56, .external_lex_state = 2}, - [608] = {.lex_state = 72}, - [609] = {.lex_state = 72}, - [610] = {.lex_state = 56, .external_lex_state = 2}, - [611] = {.lex_state = 72}, - [612] = {.lex_state = 116, .external_lex_state = 10}, - [613] = {.lex_state = 72}, - [614] = {.lex_state = 116, .external_lex_state = 4}, - [615] = {.lex_state = 116, .external_lex_state = 10}, - [616] = {.lex_state = 116, .external_lex_state = 10}, - [617] = {.lex_state = 145}, - [618] = {.lex_state = 72}, - [619] = {.lex_state = 116, .external_lex_state = 4}, - [620] = {.lex_state = 221, .external_lex_state = 16}, - [621] = {.lex_state = 116, .external_lex_state = 10}, - [622] = {.lex_state = 225}, - [623] = {.lex_state = 223, .external_lex_state = 16}, - [624] = {.lex_state = 62}, - [625] = {.lex_state = 151, .external_lex_state = 16}, - [626] = {.lex_state = 151, .external_lex_state = 16}, - [627] = {.lex_state = 151, .external_lex_state = 16}, - [628] = {.lex_state = 116, .external_lex_state = 10}, - [629] = {.lex_state = 225}, - [630] = {.lex_state = 223, .external_lex_state = 16}, - [631] = {.lex_state = 116, .external_lex_state = 10}, - [632] = {.lex_state = 225}, - [633] = {.lex_state = 223, .external_lex_state = 16}, - [634] = {.lex_state = 116, .external_lex_state = 10}, - [635] = {.lex_state = 116, .external_lex_state = 10}, - [636] = {.lex_state = 119}, - [637] = {.lex_state = 125, .external_lex_state = 23}, - [638] = {.lex_state = 82, .external_lex_state = 4}, - [639] = {.lex_state = 110, .external_lex_state = 8}, - [640] = {.lex_state = 205, .external_lex_state = 22}, - [641] = {.lex_state = 56}, - [642] = {.lex_state = 72}, - [643] = {.lex_state = 127, .external_lex_state = 4}, - [644] = {.lex_state = 125, .external_lex_state = 21}, - [645] = {.lex_state = 125, .external_lex_state = 21}, - [646] = {.lex_state = 209, .external_lex_state = 7}, - [647] = {.lex_state = 68}, - [648] = {.lex_state = 125, .external_lex_state = 23}, - [649] = {.lex_state = 209, .external_lex_state = 23}, - [650] = {.lex_state = 114, .external_lex_state = 9}, - [651] = {.lex_state = 121, .external_lex_state = 14}, - [652] = {.lex_state = 121, .external_lex_state = 3}, - [653] = {.lex_state = 121, .external_lex_state = 10}, - [654] = {.lex_state = 121, .external_lex_state = 4}, - [655] = {.lex_state = 112, .external_lex_state = 5}, - [656] = {.lex_state = 119}, - [657] = {.lex_state = 127, .external_lex_state = 4}, - [658] = {.lex_state = 121, .external_lex_state = 4}, - [659] = {.lex_state = 125, .external_lex_state = 8}, - [660] = {.lex_state = 72}, - [661] = {.lex_state = 112, .external_lex_state = 5}, - [662] = {.lex_state = 112, .external_lex_state = 5}, - [663] = {.lex_state = 209, .external_lex_state = 5}, - [664] = {.lex_state = 209, .external_lex_state = 5}, - [665] = {.lex_state = 209, .external_lex_state = 5}, - [666] = {.lex_state = 209, .external_lex_state = 5}, - [667] = {.lex_state = 209, .external_lex_state = 7}, - [668] = {.lex_state = 209, .external_lex_state = 7}, - [669] = {.lex_state = 112, .external_lex_state = 7}, - [670] = {.lex_state = 207, .external_lex_state = 2}, - [671] = {.lex_state = 112, .external_lex_state = 7}, - [672] = {.lex_state = 163, .external_lex_state = 2}, - [673] = {.lex_state = 163}, - [674] = {.lex_state = 72, .external_lex_state = 15}, - [675] = {.lex_state = 72, .external_lex_state = 15}, - [676] = {.lex_state = 211}, - [677] = {.lex_state = 211, .external_lex_state = 13}, - [678] = {.lex_state = 129, .external_lex_state = 12}, - [679] = {.lex_state = 76}, - [680] = {.lex_state = 213}, - [681] = {.lex_state = 129, .external_lex_state = 11}, - [682] = {.lex_state = 129, .external_lex_state = 11}, - [683] = {.lex_state = 129, .external_lex_state = 11}, - [684] = {.lex_state = 145}, - [685] = {.lex_state = 221, .external_lex_state = 16}, - [686] = {.lex_state = 129, .external_lex_state = 11}, - [687] = {.lex_state = 225}, - [688] = {.lex_state = 223, .external_lex_state = 16}, - [689] = {.lex_state = 62}, - [690] = {.lex_state = 151, .external_lex_state = 16}, - [691] = {.lex_state = 151, .external_lex_state = 16}, - [692] = {.lex_state = 151, .external_lex_state = 16}, - [693] = {.lex_state = 129, .external_lex_state = 11}, - [694] = {.lex_state = 225}, - [695] = {.lex_state = 223, .external_lex_state = 16}, - [696] = {.lex_state = 129, .external_lex_state = 11}, - [697] = {.lex_state = 225}, - [698] = {.lex_state = 223, .external_lex_state = 16}, - [699] = {.lex_state = 129, .external_lex_state = 11}, - [700] = {.lex_state = 129, .external_lex_state = 11}, - [701] = {.lex_state = 129, .external_lex_state = 12}, - [702] = {.lex_state = 56}, - [703] = {.lex_state = 72}, - [704] = {.lex_state = 56, .external_lex_state = 20}, - [705] = {.lex_state = 72}, - [706] = {.lex_state = 199, .external_lex_state = 23}, - [707] = {.lex_state = 129, .external_lex_state = 12}, - [708] = {.lex_state = 238}, - [709] = {.lex_state = 218, .external_lex_state = 13}, - [710] = {.lex_state = 141, .external_lex_state = 13}, - [711] = {.lex_state = 218, .external_lex_state = 13}, - [712] = {.lex_state = 145}, - [713] = {.lex_state = 221, .external_lex_state = 16}, - [714] = {.lex_state = 218, .external_lex_state = 13}, - [715] = {.lex_state = 225}, - [716] = {.lex_state = 223, .external_lex_state = 16}, - [717] = {.lex_state = 62}, - [718] = {.lex_state = 151, .external_lex_state = 16}, - [719] = {.lex_state = 151, .external_lex_state = 16}, - [720] = {.lex_state = 151, .external_lex_state = 16}, - [721] = {.lex_state = 218, .external_lex_state = 13}, - [722] = {.lex_state = 225}, - [723] = {.lex_state = 223, .external_lex_state = 16}, - [724] = {.lex_state = 218, .external_lex_state = 13}, - [725] = {.lex_state = 225}, - [726] = {.lex_state = 223, .external_lex_state = 16}, - [727] = {.lex_state = 218, .external_lex_state = 13}, - [728] = {.lex_state = 218, .external_lex_state = 13}, - [729] = {.lex_state = 238}, - [730] = {.lex_state = 238}, - [731] = {.lex_state = 121, .external_lex_state = 3}, - [732] = {.lex_state = 163}, - [733] = {.lex_state = 82, .external_lex_state = 14}, - [734] = {.lex_state = 82, .external_lex_state = 14}, - [735] = {.lex_state = 121, .external_lex_state = 14}, - [736] = {.lex_state = 82, .external_lex_state = 14}, - [737] = {.lex_state = 121, .external_lex_state = 14}, - [738] = {.lex_state = 145}, - [739] = {.lex_state = 221, .external_lex_state = 16}, - [740] = {.lex_state = 121, .external_lex_state = 14}, - [741] = {.lex_state = 225}, - [742] = {.lex_state = 223, .external_lex_state = 16}, - [743] = {.lex_state = 62}, - [744] = {.lex_state = 151, .external_lex_state = 16}, - [745] = {.lex_state = 151, .external_lex_state = 16}, - [746] = {.lex_state = 151, .external_lex_state = 16}, - [747] = {.lex_state = 121, .external_lex_state = 14}, - [748] = {.lex_state = 225}, - [749] = {.lex_state = 223, .external_lex_state = 16}, - [750] = {.lex_state = 121, .external_lex_state = 14}, - [751] = {.lex_state = 225}, - [752] = {.lex_state = 223, .external_lex_state = 16}, - [753] = {.lex_state = 121, .external_lex_state = 14}, - [754] = {.lex_state = 121, .external_lex_state = 14}, - [755] = {.lex_state = 121, .external_lex_state = 10}, - [756] = {.lex_state = 82, .external_lex_state = 10}, - [757] = {.lex_state = 121, .external_lex_state = 10}, - [758] = {.lex_state = 145}, - [759] = {.lex_state = 221, .external_lex_state = 16}, - [760] = {.lex_state = 121, .external_lex_state = 10}, - [761] = {.lex_state = 225}, - [762] = {.lex_state = 223, .external_lex_state = 16}, - [763] = {.lex_state = 62}, - [764] = {.lex_state = 151, .external_lex_state = 16}, - [765] = {.lex_state = 151, .external_lex_state = 16}, - [766] = {.lex_state = 151, .external_lex_state = 16}, - [767] = {.lex_state = 121, .external_lex_state = 10}, - [768] = {.lex_state = 225}, - [769] = {.lex_state = 223, .external_lex_state = 16}, - [770] = {.lex_state = 121, .external_lex_state = 10}, - [771] = {.lex_state = 225}, - [772] = {.lex_state = 223, .external_lex_state = 16}, - [773] = {.lex_state = 121, .external_lex_state = 10}, - [774] = {.lex_state = 121, .external_lex_state = 10}, - [775] = {.lex_state = 163, .external_lex_state = 15}, - [776] = {.lex_state = 72, .external_lex_state = 15}, - [777] = {.lex_state = 163, .external_lex_state = 15}, - [778] = {.lex_state = 145}, - [779] = {.lex_state = 221, .external_lex_state = 16}, - [780] = {.lex_state = 163, .external_lex_state = 15}, - [781] = {.lex_state = 225}, - [782] = {.lex_state = 223, .external_lex_state = 16}, - [783] = {.lex_state = 62}, - [784] = {.lex_state = 151, .external_lex_state = 16}, - [785] = {.lex_state = 151, .external_lex_state = 16}, - [786] = {.lex_state = 151, .external_lex_state = 16}, - [787] = {.lex_state = 163, .external_lex_state = 15}, - [788] = {.lex_state = 225}, - [789] = {.lex_state = 223, .external_lex_state = 16}, - [790] = {.lex_state = 163, .external_lex_state = 15}, - [791] = {.lex_state = 225}, - [792] = {.lex_state = 223, .external_lex_state = 16}, - [793] = {.lex_state = 163, .external_lex_state = 15}, - [794] = {.lex_state = 163, .external_lex_state = 15}, - [795] = {.lex_state = 90}, - [796] = {.lex_state = 221, .external_lex_state = 16}, - [797] = {.lex_state = 90, .external_lex_state = 13}, - [798] = {.lex_state = 225}, - [799] = {.lex_state = 223, .external_lex_state = 16}, - [800] = {.lex_state = 62}, - [801] = {.lex_state = 151, .external_lex_state = 16}, - [802] = {.lex_state = 151, .external_lex_state = 16}, - [803] = {.lex_state = 151, .external_lex_state = 16}, - [804] = {.lex_state = 90, .external_lex_state = 13}, - [805] = {.lex_state = 225}, - [806] = {.lex_state = 223, .external_lex_state = 16}, - [807] = {.lex_state = 90, .external_lex_state = 13}, - [808] = {.lex_state = 225}, - [809] = {.lex_state = 223, .external_lex_state = 16}, - [810] = {.lex_state = 90, .external_lex_state = 13}, - [811] = {.lex_state = 112, .external_lex_state = 5}, - [812] = {.lex_state = 145}, - [813] = {.lex_state = 203, .external_lex_state = 11}, - [814] = {.lex_state = 203, .external_lex_state = 11}, - [815] = {.lex_state = 203, .external_lex_state = 11}, - [816] = {.lex_state = 112, .external_lex_state = 5}, - [817] = {.lex_state = 205, .external_lex_state = 24}, - [818] = {.lex_state = 90}, - [819] = {.lex_state = 97}, - [820] = {.lex_state = 205, .external_lex_state = 24}, - [821] = {.lex_state = 97, .external_lex_state = 6}, - [822] = {.lex_state = 56, .external_lex_state = 2}, - [823] = {.lex_state = 56, .external_lex_state = 2}, - [824] = {.lex_state = 56, .external_lex_state = 2}, - [825] = {.lex_state = 205, .external_lex_state = 16}, - [826] = {.lex_state = 72}, - [827] = {.lex_state = 223, .external_lex_state = 24}, - [828] = {.lex_state = 223, .external_lex_state = 24}, - [829] = {.lex_state = 145}, - [830] = {.lex_state = 90}, - [831] = {.lex_state = 223, .external_lex_state = 24}, - [832] = {.lex_state = 223, .external_lex_state = 24}, - [833] = {.lex_state = 223, .external_lex_state = 24}, - [834] = {.lex_state = 62}, - [835] = {.lex_state = 151, .external_lex_state = 16}, - [836] = {.lex_state = 154, .external_lex_state = 6}, - [837] = {.lex_state = 151, .external_lex_state = 16}, - [838] = {.lex_state = 151, .external_lex_state = 16}, - [839] = {.lex_state = 223, .external_lex_state = 16}, - [840] = {.lex_state = 68}, - [841] = {.lex_state = 163, .external_lex_state = 2}, - [842] = {.lex_state = 68}, - [843] = {.lex_state = 171, .external_lex_state = 2}, - [844] = {.lex_state = 68}, - [845] = {.lex_state = 163, .external_lex_state = 2}, - [846] = {.lex_state = 112, .external_lex_state = 5}, - [847] = {.lex_state = 223, .external_lex_state = 16}, - [848] = {.lex_state = 221, .external_lex_state = 16}, - [849] = {.lex_state = 112, .external_lex_state = 5}, - [850] = {.lex_state = 225}, - [851] = {.lex_state = 223, .external_lex_state = 16}, - [852] = {.lex_state = 112, .external_lex_state = 5}, - [853] = {.lex_state = 225}, - [854] = {.lex_state = 223, .external_lex_state = 16}, - [855] = {.lex_state = 225}, - [856] = {.lex_state = 223, .external_lex_state = 16}, - [857] = {.lex_state = 223, .external_lex_state = 16}, - [858] = {.lex_state = 112, .external_lex_state = 5}, - [859] = {.lex_state = 223, .external_lex_state = 16}, - [860] = {.lex_state = 163, .external_lex_state = 15}, - [861] = {.lex_state = 163, .external_lex_state = 15}, - [862] = {.lex_state = 72}, - [863] = {.lex_state = 72}, + [284] = {.lex_state = 132, .external_lex_state = 4}, + [285] = {.lex_state = 218, .external_lex_state = 2}, + [286] = {.lex_state = 56, .external_lex_state = 2}, + [287] = {.lex_state = 56}, + [288] = {.lex_state = 185}, + [289] = {.lex_state = 73}, + [290] = {.lex_state = 73}, + [291] = {.lex_state = 115, .external_lex_state = 5}, + [292] = {.lex_state = 115, .external_lex_state = 5}, + [293] = {.lex_state = 220, .external_lex_state = 7}, + [294] = {.lex_state = 115, .external_lex_state = 7}, + [295] = {.lex_state = 126, .external_lex_state = 4}, + [296] = {.lex_state = 130, .external_lex_state = 8}, + [297] = {.lex_state = 56, .external_lex_state = 2}, + [298] = {.lex_state = 115, .external_lex_state = 7}, + [299] = {.lex_state = 117, .external_lex_state = 9}, + [300] = {.lex_state = 77}, + [301] = {.lex_state = 222, .external_lex_state = 13}, + [302] = {.lex_state = 222, .external_lex_state = 13}, + [303] = {.lex_state = 222}, + [304] = {.lex_state = 134, .external_lex_state = 12}, + [305] = {.lex_state = 73}, + [306] = {.lex_state = 134, .external_lex_state = 11}, + [307] = {.lex_state = 134, .external_lex_state = 11}, + [308] = {.lex_state = 151}, + [309] = {.lex_state = 91}, + [310] = {.lex_state = 134, .external_lex_state = 11}, + [311] = {.lex_state = 134, .external_lex_state = 11}, + [312] = {.lex_state = 134, .external_lex_state = 11}, + [313] = {.lex_state = 62}, + [314] = {.lex_state = 157, .external_lex_state = 16}, + [315] = {.lex_state = 160, .external_lex_state = 6}, + [316] = {.lex_state = 157, .external_lex_state = 16}, + [317] = {.lex_state = 157, .external_lex_state = 16}, + [318] = {.lex_state = 162}, + [319] = {.lex_state = 169, .external_lex_state = 2}, + [320] = {.lex_state = 162}, + [321] = {.lex_state = 177, .external_lex_state = 2}, + [322] = {.lex_state = 162}, + [323] = {.lex_state = 169, .external_lex_state = 2}, + [324] = {.lex_state = 77}, + [325] = {.lex_state = 205, .external_lex_state = 23}, + [326] = {.lex_state = 224}, + [327] = {.lex_state = 222}, + [328] = {.lex_state = 147}, + [329] = {.lex_state = 73}, + [330] = {.lex_state = 147, .external_lex_state = 13}, + [331] = {.lex_state = 229, .external_lex_state = 13}, + [332] = {.lex_state = 151}, + [333] = {.lex_state = 91}, + [334] = {.lex_state = 229, .external_lex_state = 13}, + [335] = {.lex_state = 229, .external_lex_state = 13}, + [336] = {.lex_state = 229, .external_lex_state = 13}, + [337] = {.lex_state = 62}, + [338] = {.lex_state = 157, .external_lex_state = 16}, + [339] = {.lex_state = 160, .external_lex_state = 6}, + [340] = {.lex_state = 157, .external_lex_state = 16}, + [341] = {.lex_state = 157, .external_lex_state = 16}, + [342] = {.lex_state = 162}, + [343] = {.lex_state = 169, .external_lex_state = 2}, + [344] = {.lex_state = 162}, + [345] = {.lex_state = 177, .external_lex_state = 2}, + [346] = {.lex_state = 162}, + [347] = {.lex_state = 169, .external_lex_state = 2}, + [348] = {.lex_state = 77}, + [349] = {.lex_state = 224}, + [350] = {.lex_state = 117, .external_lex_state = 9}, + [351] = {.lex_state = 73}, + [352] = {.lex_state = 83, .external_lex_state = 14}, + [353] = {.lex_state = 126, .external_lex_state = 14}, + [354] = {.lex_state = 151}, + [355] = {.lex_state = 91}, + [356] = {.lex_state = 126, .external_lex_state = 14}, + [357] = {.lex_state = 126, .external_lex_state = 14}, + [358] = {.lex_state = 126, .external_lex_state = 14}, + [359] = {.lex_state = 62}, + [360] = {.lex_state = 157, .external_lex_state = 16}, + [361] = {.lex_state = 160, .external_lex_state = 6}, + [362] = {.lex_state = 157, .external_lex_state = 16}, + [363] = {.lex_state = 157, .external_lex_state = 16}, + [364] = {.lex_state = 162}, + [365] = {.lex_state = 169, .external_lex_state = 2}, + [366] = {.lex_state = 162}, + [367] = {.lex_state = 177, .external_lex_state = 2}, + [368] = {.lex_state = 162}, + [369] = {.lex_state = 169, .external_lex_state = 2}, + [370] = {.lex_state = 83, .external_lex_state = 3}, + [371] = {.lex_state = 73}, + [372] = {.lex_state = 83, .external_lex_state = 10}, + [373] = {.lex_state = 126, .external_lex_state = 10}, + [374] = {.lex_state = 151}, + [375] = {.lex_state = 91}, + [376] = {.lex_state = 126, .external_lex_state = 10}, + [377] = {.lex_state = 126, .external_lex_state = 10}, + [378] = {.lex_state = 126, .external_lex_state = 10}, + [379] = {.lex_state = 62}, + [380] = {.lex_state = 157, .external_lex_state = 16}, + [381] = {.lex_state = 160, .external_lex_state = 6}, + [382] = {.lex_state = 157, .external_lex_state = 16}, + [383] = {.lex_state = 157, .external_lex_state = 16}, + [384] = {.lex_state = 162}, + [385] = {.lex_state = 169, .external_lex_state = 2}, + [386] = {.lex_state = 162}, + [387] = {.lex_state = 177, .external_lex_state = 2}, + [388] = {.lex_state = 162}, + [389] = {.lex_state = 169, .external_lex_state = 2}, + [390] = {.lex_state = 83, .external_lex_state = 4}, + [391] = {.lex_state = 73}, + [392] = {.lex_state = 73, .external_lex_state = 15}, + [393] = {.lex_state = 169, .external_lex_state = 15}, + [394] = {.lex_state = 151}, + [395] = {.lex_state = 91}, + [396] = {.lex_state = 169, .external_lex_state = 15}, + [397] = {.lex_state = 169, .external_lex_state = 15}, + [398] = {.lex_state = 169, .external_lex_state = 15}, + [399] = {.lex_state = 62}, + [400] = {.lex_state = 157, .external_lex_state = 16}, + [401] = {.lex_state = 160, .external_lex_state = 6}, + [402] = {.lex_state = 157, .external_lex_state = 16}, + [403] = {.lex_state = 157, .external_lex_state = 16}, + [404] = {.lex_state = 162}, + [405] = {.lex_state = 169, .external_lex_state = 2}, + [406] = {.lex_state = 162}, + [407] = {.lex_state = 177, .external_lex_state = 2}, + [408] = {.lex_state = 162}, + [409] = {.lex_state = 169, .external_lex_state = 2}, + [410] = {.lex_state = 115, .external_lex_state = 5}, + [411] = {.lex_state = 88, .external_lex_state = 5}, + [412] = {.lex_state = 115, .external_lex_state = 5}, + [413] = {.lex_state = 91, .external_lex_state = 13}, + [414] = {.lex_state = 91, .external_lex_state = 13}, + [415] = {.lex_state = 91, .external_lex_state = 13}, + [416] = {.lex_state = 91}, + [417] = {.lex_state = 62}, + [418] = {.lex_state = 157, .external_lex_state = 16}, + [419] = {.lex_state = 160, .external_lex_state = 6}, + [420] = {.lex_state = 157, .external_lex_state = 16}, + [421] = {.lex_state = 157, .external_lex_state = 16}, + [422] = {.lex_state = 162}, + [423] = {.lex_state = 169, .external_lex_state = 2}, + [424] = {.lex_state = 162}, + [425] = {.lex_state = 177, .external_lex_state = 2}, + [426] = {.lex_state = 151}, + [427] = {.lex_state = 91}, + [428] = {.lex_state = 73}, + [429] = {.lex_state = 232, .external_lex_state = 16}, + [430] = {.lex_state = 115, .external_lex_state = 5}, + [431] = {.lex_state = 234, .external_lex_state = 24}, + [432] = {.lex_state = 91}, + [433] = {.lex_state = 98}, + [434] = {.lex_state = 234, .external_lex_state = 24}, + [435] = {.lex_state = 107, .external_lex_state = 6}, + [436] = {.lex_state = 236}, + [437] = {.lex_state = 56, .external_lex_state = 2}, + [438] = {.lex_state = 56, .external_lex_state = 2}, + [439] = {.lex_state = 56, .external_lex_state = 2}, + [440] = {.lex_state = 234, .external_lex_state = 16}, + [441] = {.lex_state = 62}, + [442] = {.lex_state = 157, .external_lex_state = 16}, + [443] = {.lex_state = 157, .external_lex_state = 16}, + [444] = {.lex_state = 157, .external_lex_state = 16}, + [445] = {.lex_state = 115, .external_lex_state = 5}, + [446] = {.lex_state = 236}, + [447] = {.lex_state = 234, .external_lex_state = 16}, + [448] = {.lex_state = 115, .external_lex_state = 5}, + [449] = {.lex_state = 236}, + [450] = {.lex_state = 234, .external_lex_state = 16}, + [451] = {.lex_state = 117, .external_lex_state = 9}, + [452] = {.lex_state = 119, .external_lex_state = 4}, + [453] = {.lex_state = 122, .external_lex_state = 4}, + [454] = {.lex_state = 73}, + [455] = {.lex_state = 73}, + [456] = {.lex_state = 122, .external_lex_state = 10}, + [457] = {.lex_state = 122, .external_lex_state = 10}, + [458] = {.lex_state = 122, .external_lex_state = 4}, + [459] = {.lex_state = 124}, + [460] = {.lex_state = 126, .external_lex_state = 4}, + [461] = {.lex_state = 130, .external_lex_state = 8}, + [462] = {.lex_state = 56, .external_lex_state = 2}, + [463] = {.lex_state = 162}, + [464] = {.lex_state = 134, .external_lex_state = 12}, + [465] = {.lex_state = 147}, + [466] = {.lex_state = 62}, + [467] = {.lex_state = 162, .external_lex_state = 25}, + [468] = {.lex_state = 91}, + [469] = {.lex_state = 98}, + [470] = {.lex_state = 162, .external_lex_state = 25}, + [471] = {.lex_state = 107, .external_lex_state = 6}, + [472] = {.lex_state = 56, .external_lex_state = 2}, + [473] = {.lex_state = 56, .external_lex_state = 2}, + [474] = {.lex_state = 56, .external_lex_state = 2}, + [475] = {.lex_state = 162, .external_lex_state = 6}, + [476] = {.lex_state = 162, .external_lex_state = 6}, + [477] = {.lex_state = 62}, + [478] = {.lex_state = 162, .external_lex_state = 6}, + [479] = {.lex_state = 162, .external_lex_state = 13}, + [480] = {.lex_state = 91}, + [481] = {.lex_state = 98}, + [482] = {.lex_state = 162, .external_lex_state = 13}, + [483] = {.lex_state = 107, .external_lex_state = 6}, + [484] = {.lex_state = 56, .external_lex_state = 2}, + [485] = {.lex_state = 56, .external_lex_state = 2}, + [486] = {.lex_state = 56, .external_lex_state = 2}, + [487] = {.lex_state = 162}, + [488] = {.lex_state = 162}, + [489] = {.lex_state = 73}, + [490] = {.lex_state = 164, .external_lex_state = 17}, + [491] = {.lex_state = 164, .external_lex_state = 17}, + [492] = {.lex_state = 151}, + [493] = {.lex_state = 91}, + [494] = {.lex_state = 164, .external_lex_state = 17}, + [495] = {.lex_state = 164, .external_lex_state = 17}, + [496] = {.lex_state = 164, .external_lex_state = 17}, + [497] = {.lex_state = 62}, + [498] = {.lex_state = 157, .external_lex_state = 16}, + [499] = {.lex_state = 160, .external_lex_state = 6}, + [500] = {.lex_state = 157, .external_lex_state = 16}, + [501] = {.lex_state = 157, .external_lex_state = 16}, + [502] = {.lex_state = 162}, + [503] = {.lex_state = 169, .external_lex_state = 2}, + [504] = {.lex_state = 162}, + [505] = {.lex_state = 177, .external_lex_state = 2}, + [506] = {.lex_state = 162}, + [507] = {.lex_state = 169, .external_lex_state = 2}, + [508] = {.lex_state = 77}, + [509] = {.lex_state = 56, .external_lex_state = 2}, + [510] = {.lex_state = 115, .external_lex_state = 5}, + [511] = {.lex_state = 56, .external_lex_state = 2}, + [512] = {.lex_state = 162}, + [513] = {.lex_state = 182, .external_lex_state = 19}, + [514] = {.lex_state = 56}, + [515] = {.lex_state = 185}, + [516] = {.lex_state = 73}, + [517] = {.lex_state = 56, .external_lex_state = 20}, + [518] = {.lex_state = 73}, + [519] = {.lex_state = 164, .external_lex_state = 17}, + [520] = {.lex_state = 164, .external_lex_state = 17}, + [521] = {.lex_state = 162}, + [522] = {.lex_state = 164, .external_lex_state = 18}, + [523] = {.lex_state = 241, .external_lex_state = 18}, + [524] = {.lex_state = 164, .external_lex_state = 18}, + [525] = {.lex_state = 164, .external_lex_state = 18}, + [526] = {.lex_state = 117, .external_lex_state = 9}, + [527] = {.lex_state = 73}, + [528] = {.lex_state = 124}, + [529] = {.lex_state = 134, .external_lex_state = 12}, + [530] = {.lex_state = 147}, + [531] = {.lex_state = 62}, + [532] = {.lex_state = 171, .external_lex_state = 25}, + [533] = {.lex_state = 171, .external_lex_state = 25}, + [534] = {.lex_state = 62}, + [535] = {.lex_state = 171, .external_lex_state = 6}, + [536] = {.lex_state = 162, .external_lex_state = 13}, + [537] = {.lex_state = 162, .external_lex_state = 13}, + [538] = {.lex_state = 162}, + [539] = {.lex_state = 173, .external_lex_state = 17}, + [540] = {.lex_state = 77}, + [541] = {.lex_state = 56, .external_lex_state = 2}, + [542] = {.lex_state = 56, .external_lex_state = 2}, + [543] = {.lex_state = 56}, + [544] = {.lex_state = 185}, + [545] = {.lex_state = 73}, + [546] = {.lex_state = 73}, + [547] = {.lex_state = 173, .external_lex_state = 17}, + [548] = {.lex_state = 173, .external_lex_state = 17}, + [549] = {.lex_state = 243, .external_lex_state = 18}, + [550] = {.lex_state = 173, .external_lex_state = 18}, + [551] = {.lex_state = 173, .external_lex_state = 18}, + [552] = {.lex_state = 115, .external_lex_state = 5}, + [553] = {.lex_state = 124}, + [554] = {.lex_state = 132, .external_lex_state = 4}, + [555] = {.lex_state = 130, .external_lex_state = 8}, + [556] = {.lex_state = 83, .external_lex_state = 4}, + [557] = {.lex_state = 113, .external_lex_state = 8}, + [558] = {.lex_state = 132, .external_lex_state = 4}, + [559] = {.lex_state = 98}, + [560] = {.lex_state = 107, .external_lex_state = 6}, + [561] = {.lex_state = 182, .external_lex_state = 19}, + [562] = {.lex_state = 73}, + [563] = {.lex_state = 88, .external_lex_state = 5}, + [564] = {.lex_state = 88, .external_lex_state = 5}, + [565] = {.lex_state = 115, .external_lex_state = 7}, + [566] = {.lex_state = 205, .external_lex_state = 5}, + [567] = {.lex_state = 205, .external_lex_state = 5}, + [568] = {.lex_state = 245, .external_lex_state = 7}, + [569] = {.lex_state = 245, .external_lex_state = 7}, + [570] = {.lex_state = 205, .external_lex_state = 5}, + [571] = {.lex_state = 205, .external_lex_state = 5}, + [572] = {.lex_state = 245, .external_lex_state = 7}, + [573] = {.lex_state = 132, .external_lex_state = 4}, + [574] = {.lex_state = 205, .external_lex_state = 7}, + [575] = {.lex_state = 205, .external_lex_state = 7}, + [576] = {.lex_state = 88, .external_lex_state = 7}, + [577] = {.lex_state = 88, .external_lex_state = 7}, + [578] = {.lex_state = 209, .external_lex_state = 12}, + [579] = {.lex_state = 62, .external_lex_state = 13}, + [580] = {.lex_state = 209, .external_lex_state = 11}, + [581] = {.lex_state = 209, .external_lex_state = 12}, + [582] = {.lex_state = 62, .external_lex_state = 13}, + [583] = {.lex_state = 134, .external_lex_state = 12}, + [584] = {.lex_state = 130, .external_lex_state = 8}, + [585] = {.lex_state = 247, .external_lex_state = 13}, + [586] = {.lex_state = 91}, + [587] = {.lex_state = 98}, + [588] = {.lex_state = 247, .external_lex_state = 13}, + [589] = {.lex_state = 107, .external_lex_state = 6}, + [590] = {.lex_state = 56, .external_lex_state = 2}, + [591] = {.lex_state = 56, .external_lex_state = 2}, + [592] = {.lex_state = 56, .external_lex_state = 2}, + [593] = {.lex_state = 169}, + [594] = {.lex_state = 73}, + [595] = {.lex_state = 113, .external_lex_state = 21}, + [596] = {.lex_state = 130, .external_lex_state = 21}, + [597] = {.lex_state = 151}, + [598] = {.lex_state = 91}, + [599] = {.lex_state = 130, .external_lex_state = 21}, + [600] = {.lex_state = 130, .external_lex_state = 21}, + [601] = {.lex_state = 130, .external_lex_state = 21}, + [602] = {.lex_state = 62}, + [603] = {.lex_state = 157, .external_lex_state = 16}, + [604] = {.lex_state = 160, .external_lex_state = 6}, + [605] = {.lex_state = 157, .external_lex_state = 16}, + [606] = {.lex_state = 157, .external_lex_state = 16}, + [607] = {.lex_state = 162}, + [608] = {.lex_state = 169, .external_lex_state = 2}, + [609] = {.lex_state = 162}, + [610] = {.lex_state = 177, .external_lex_state = 2}, + [611] = {.lex_state = 162}, + [612] = {.lex_state = 169, .external_lex_state = 2}, + [613] = {.lex_state = 249}, + [614] = {.lex_state = 211, .external_lex_state = 4}, + [615] = {.lex_state = 222}, + [616] = {.lex_state = 211, .external_lex_state = 4}, + [617] = {.lex_state = 73}, + [618] = {.lex_state = 211, .external_lex_state = 10}, + [619] = {.lex_state = 253, .external_lex_state = 10}, + [620] = {.lex_state = 151}, + [621] = {.lex_state = 91}, + [622] = {.lex_state = 253, .external_lex_state = 10}, + [623] = {.lex_state = 253, .external_lex_state = 10}, + [624] = {.lex_state = 253, .external_lex_state = 10}, + [625] = {.lex_state = 62}, + [626] = {.lex_state = 157, .external_lex_state = 16}, + [627] = {.lex_state = 160, .external_lex_state = 6}, + [628] = {.lex_state = 157, .external_lex_state = 16}, + [629] = {.lex_state = 157, .external_lex_state = 16}, + [630] = {.lex_state = 162}, + [631] = {.lex_state = 169, .external_lex_state = 2}, + [632] = {.lex_state = 162}, + [633] = {.lex_state = 177, .external_lex_state = 2}, + [634] = {.lex_state = 162}, + [635] = {.lex_state = 169, .external_lex_state = 2}, + [636] = {.lex_state = 119, .external_lex_state = 4}, + [637] = {.lex_state = 77}, + [638] = {.lex_state = 224}, + [639] = {.lex_state = 122, .external_lex_state = 10}, + [640] = {.lex_state = 122, .external_lex_state = 10}, + [641] = {.lex_state = 122, .external_lex_state = 4}, + [642] = {.lex_state = 56, .external_lex_state = 2}, + [643] = {.lex_state = 132, .external_lex_state = 4}, + [644] = {.lex_state = 245, .external_lex_state = 7}, + [645] = {.lex_state = 56, .external_lex_state = 2}, + [646] = {.lex_state = 132, .external_lex_state = 4}, + [647] = {.lex_state = 205, .external_lex_state = 7}, + [648] = {.lex_state = 132, .external_lex_state = 4}, + [649] = {.lex_state = 56, .external_lex_state = 2}, + [650] = {.lex_state = 56, .external_lex_state = 2}, + [651] = {.lex_state = 73}, + [652] = {.lex_state = 56, .external_lex_state = 2}, + [653] = {.lex_state = 73}, + [654] = {.lex_state = 122, .external_lex_state = 10}, + [655] = {.lex_state = 73}, + [656] = {.lex_state = 119, .external_lex_state = 4}, + [657] = {.lex_state = 122, .external_lex_state = 10}, + [658] = {.lex_state = 122, .external_lex_state = 10}, + [659] = {.lex_state = 151}, + [660] = {.lex_state = 73}, + [661] = {.lex_state = 119, .external_lex_state = 4}, + [662] = {.lex_state = 232, .external_lex_state = 16}, + [663] = {.lex_state = 122, .external_lex_state = 10}, + [664] = {.lex_state = 236}, + [665] = {.lex_state = 234, .external_lex_state = 16}, + [666] = {.lex_state = 62}, + [667] = {.lex_state = 157, .external_lex_state = 16}, + [668] = {.lex_state = 157, .external_lex_state = 16}, + [669] = {.lex_state = 157, .external_lex_state = 16}, + [670] = {.lex_state = 122, .external_lex_state = 10}, + [671] = {.lex_state = 236}, + [672] = {.lex_state = 234, .external_lex_state = 16}, + [673] = {.lex_state = 122, .external_lex_state = 10}, + [674] = {.lex_state = 236}, + [675] = {.lex_state = 234, .external_lex_state = 16}, + [676] = {.lex_state = 122, .external_lex_state = 10}, + [677] = {.lex_state = 122, .external_lex_state = 10}, + [678] = {.lex_state = 124}, + [679] = {.lex_state = 257, .external_lex_state = 23}, + [680] = {.lex_state = 83, .external_lex_state = 4}, + [681] = {.lex_state = 113, .external_lex_state = 8}, + [682] = {.lex_state = 213, .external_lex_state = 22}, + [683] = {.lex_state = 56}, + [684] = {.lex_state = 73}, + [685] = {.lex_state = 132, .external_lex_state = 4}, + [686] = {.lex_state = 130, .external_lex_state = 21}, + [687] = {.lex_state = 130, .external_lex_state = 21}, + [688] = {.lex_state = 220, .external_lex_state = 7}, + [689] = {.lex_state = 77}, + [690] = {.lex_state = 259, .external_lex_state = 23}, + [691] = {.lex_state = 220, .external_lex_state = 23}, + [692] = {.lex_state = 117, .external_lex_state = 9}, + [693] = {.lex_state = 126, .external_lex_state = 14}, + [694] = {.lex_state = 126, .external_lex_state = 3}, + [695] = {.lex_state = 126, .external_lex_state = 10}, + [696] = {.lex_state = 126, .external_lex_state = 4}, + [697] = {.lex_state = 115, .external_lex_state = 5}, + [698] = {.lex_state = 124}, + [699] = {.lex_state = 132, .external_lex_state = 4}, + [700] = {.lex_state = 126, .external_lex_state = 4}, + [701] = {.lex_state = 130, .external_lex_state = 8}, + [702] = {.lex_state = 73}, + [703] = {.lex_state = 115, .external_lex_state = 5}, + [704] = {.lex_state = 115, .external_lex_state = 5}, + [705] = {.lex_state = 220, .external_lex_state = 5}, + [706] = {.lex_state = 220, .external_lex_state = 5}, + [707] = {.lex_state = 220, .external_lex_state = 5}, + [708] = {.lex_state = 220, .external_lex_state = 5}, + [709] = {.lex_state = 220, .external_lex_state = 7}, + [710] = {.lex_state = 220, .external_lex_state = 7}, + [711] = {.lex_state = 115, .external_lex_state = 7}, + [712] = {.lex_state = 218, .external_lex_state = 2}, + [713] = {.lex_state = 115, .external_lex_state = 7}, + [714] = {.lex_state = 169, .external_lex_state = 2}, + [715] = {.lex_state = 169}, + [716] = {.lex_state = 73, .external_lex_state = 15}, + [717] = {.lex_state = 73, .external_lex_state = 15}, + [718] = {.lex_state = 222}, + [719] = {.lex_state = 222, .external_lex_state = 13}, + [720] = {.lex_state = 134, .external_lex_state = 12}, + [721] = {.lex_state = 77}, + [722] = {.lex_state = 224}, + [723] = {.lex_state = 134, .external_lex_state = 11}, + [724] = {.lex_state = 134, .external_lex_state = 11}, + [725] = {.lex_state = 134, .external_lex_state = 11}, + [726] = {.lex_state = 151}, + [727] = {.lex_state = 232, .external_lex_state = 16}, + [728] = {.lex_state = 134, .external_lex_state = 11}, + [729] = {.lex_state = 236}, + [730] = {.lex_state = 234, .external_lex_state = 16}, + [731] = {.lex_state = 62}, + [732] = {.lex_state = 157, .external_lex_state = 16}, + [733] = {.lex_state = 157, .external_lex_state = 16}, + [734] = {.lex_state = 157, .external_lex_state = 16}, + [735] = {.lex_state = 134, .external_lex_state = 11}, + [736] = {.lex_state = 236}, + [737] = {.lex_state = 234, .external_lex_state = 16}, + [738] = {.lex_state = 134, .external_lex_state = 11}, + [739] = {.lex_state = 236}, + [740] = {.lex_state = 234, .external_lex_state = 16}, + [741] = {.lex_state = 134, .external_lex_state = 11}, + [742] = {.lex_state = 134, .external_lex_state = 11}, + [743] = {.lex_state = 134, .external_lex_state = 12}, + [744] = {.lex_state = 56}, + [745] = {.lex_state = 73}, + [746] = {.lex_state = 56, .external_lex_state = 20}, + [747] = {.lex_state = 73}, + [748] = {.lex_state = 205, .external_lex_state = 23}, + [749] = {.lex_state = 134, .external_lex_state = 12}, + [750] = {.lex_state = 261}, + [751] = {.lex_state = 229, .external_lex_state = 13}, + [752] = {.lex_state = 147, .external_lex_state = 13}, + [753] = {.lex_state = 229, .external_lex_state = 13}, + [754] = {.lex_state = 151}, + [755] = {.lex_state = 232, .external_lex_state = 16}, + [756] = {.lex_state = 229, .external_lex_state = 13}, + [757] = {.lex_state = 236}, + [758] = {.lex_state = 234, .external_lex_state = 16}, + [759] = {.lex_state = 62}, + [760] = {.lex_state = 157, .external_lex_state = 16}, + [761] = {.lex_state = 157, .external_lex_state = 16}, + [762] = {.lex_state = 157, .external_lex_state = 16}, + [763] = {.lex_state = 229, .external_lex_state = 13}, + [764] = {.lex_state = 236}, + [765] = {.lex_state = 234, .external_lex_state = 16}, + [766] = {.lex_state = 229, .external_lex_state = 13}, + [767] = {.lex_state = 236}, + [768] = {.lex_state = 234, .external_lex_state = 16}, + [769] = {.lex_state = 229, .external_lex_state = 13}, + [770] = {.lex_state = 229, .external_lex_state = 13}, + [771] = {.lex_state = 261}, + [772] = {.lex_state = 261}, + [773] = {.lex_state = 126, .external_lex_state = 3}, + [774] = {.lex_state = 169}, + [775] = {.lex_state = 83, .external_lex_state = 14}, + [776] = {.lex_state = 83, .external_lex_state = 14}, + [777] = {.lex_state = 126, .external_lex_state = 14}, + [778] = {.lex_state = 83, .external_lex_state = 14}, + [779] = {.lex_state = 126, .external_lex_state = 14}, + [780] = {.lex_state = 151}, + [781] = {.lex_state = 232, .external_lex_state = 16}, + [782] = {.lex_state = 126, .external_lex_state = 14}, + [783] = {.lex_state = 236}, + [784] = {.lex_state = 234, .external_lex_state = 16}, + [785] = {.lex_state = 62}, + [786] = {.lex_state = 157, .external_lex_state = 16}, + [787] = {.lex_state = 157, .external_lex_state = 16}, + [788] = {.lex_state = 157, .external_lex_state = 16}, + [789] = {.lex_state = 126, .external_lex_state = 14}, + [790] = {.lex_state = 236}, + [791] = {.lex_state = 234, .external_lex_state = 16}, + [792] = {.lex_state = 126, .external_lex_state = 14}, + [793] = {.lex_state = 236}, + [794] = {.lex_state = 234, .external_lex_state = 16}, + [795] = {.lex_state = 126, .external_lex_state = 14}, + [796] = {.lex_state = 126, .external_lex_state = 14}, + [797] = {.lex_state = 126, .external_lex_state = 10}, + [798] = {.lex_state = 83, .external_lex_state = 10}, + [799] = {.lex_state = 126, .external_lex_state = 10}, + [800] = {.lex_state = 151}, + [801] = {.lex_state = 232, .external_lex_state = 16}, + [802] = {.lex_state = 126, .external_lex_state = 10}, + [803] = {.lex_state = 236}, + [804] = {.lex_state = 234, .external_lex_state = 16}, + [805] = {.lex_state = 62}, + [806] = {.lex_state = 157, .external_lex_state = 16}, + [807] = {.lex_state = 157, .external_lex_state = 16}, + [808] = {.lex_state = 157, .external_lex_state = 16}, + [809] = {.lex_state = 126, .external_lex_state = 10}, + [810] = {.lex_state = 236}, + [811] = {.lex_state = 234, .external_lex_state = 16}, + [812] = {.lex_state = 126, .external_lex_state = 10}, + [813] = {.lex_state = 236}, + [814] = {.lex_state = 234, .external_lex_state = 16}, + [815] = {.lex_state = 126, .external_lex_state = 10}, + [816] = {.lex_state = 126, .external_lex_state = 10}, + [817] = {.lex_state = 169, .external_lex_state = 15}, + [818] = {.lex_state = 73, .external_lex_state = 15}, + [819] = {.lex_state = 169, .external_lex_state = 15}, + [820] = {.lex_state = 151}, + [821] = {.lex_state = 232, .external_lex_state = 16}, + [822] = {.lex_state = 169, .external_lex_state = 15}, + [823] = {.lex_state = 236}, + [824] = {.lex_state = 234, .external_lex_state = 16}, + [825] = {.lex_state = 62}, + [826] = {.lex_state = 157, .external_lex_state = 16}, + [827] = {.lex_state = 157, .external_lex_state = 16}, + [828] = {.lex_state = 157, .external_lex_state = 16}, + [829] = {.lex_state = 169, .external_lex_state = 15}, + [830] = {.lex_state = 236}, + [831] = {.lex_state = 234, .external_lex_state = 16}, + [832] = {.lex_state = 169, .external_lex_state = 15}, + [833] = {.lex_state = 236}, + [834] = {.lex_state = 234, .external_lex_state = 16}, + [835] = {.lex_state = 169, .external_lex_state = 15}, + [836] = {.lex_state = 169, .external_lex_state = 15}, + [837] = {.lex_state = 91}, + [838] = {.lex_state = 232, .external_lex_state = 16}, + [839] = {.lex_state = 91, .external_lex_state = 13}, + [840] = {.lex_state = 236}, + [841] = {.lex_state = 234, .external_lex_state = 16}, + [842] = {.lex_state = 62}, + [843] = {.lex_state = 157, .external_lex_state = 16}, + [844] = {.lex_state = 157, .external_lex_state = 16}, + [845] = {.lex_state = 157, .external_lex_state = 16}, + [846] = {.lex_state = 91, .external_lex_state = 13}, + [847] = {.lex_state = 236}, + [848] = {.lex_state = 234, .external_lex_state = 16}, + [849] = {.lex_state = 91, .external_lex_state = 13}, + [850] = {.lex_state = 236}, + [851] = {.lex_state = 234, .external_lex_state = 16}, + [852] = {.lex_state = 91, .external_lex_state = 13}, + [853] = {.lex_state = 115, .external_lex_state = 5}, + [854] = {.lex_state = 151}, + [855] = {.lex_state = 209, .external_lex_state = 11}, + [856] = {.lex_state = 209, .external_lex_state = 11}, + [857] = {.lex_state = 209, .external_lex_state = 11}, + [858] = {.lex_state = 115, .external_lex_state = 5}, + [859] = {.lex_state = 213, .external_lex_state = 24}, + [860] = {.lex_state = 91}, + [861] = {.lex_state = 98}, + [862] = {.lex_state = 213, .external_lex_state = 24}, + [863] = {.lex_state = 107, .external_lex_state = 6}, [864] = {.lex_state = 56, .external_lex_state = 2}, - [865] = {.lex_state = 230, .external_lex_state = 18}, + [865] = {.lex_state = 56, .external_lex_state = 2}, [866] = {.lex_state = 56, .external_lex_state = 2}, - [867] = {.lex_state = 116, .external_lex_state = 4}, - [868] = {.lex_state = 72}, - [869] = {.lex_state = 116, .external_lex_state = 4}, - [870] = {.lex_state = 72}, - [871] = {.lex_state = 68}, - [872] = {.lex_state = 205, .external_lex_state = 22}, - [873] = {.lex_state = 163, .external_lex_state = 26}, - [874] = {.lex_state = 68}, - [875] = {.lex_state = 207, .external_lex_state = 2}, - [876] = {.lex_state = 121, .external_lex_state = 4}, - [877] = {.lex_state = 125, .external_lex_state = 8}, - [878] = {.lex_state = 230, .external_lex_state = 26}, - [879] = {.lex_state = 114, .external_lex_state = 9}, - [880] = {.lex_state = 72}, - [881] = {.lex_state = 156, .external_lex_state = 25}, - [882] = {.lex_state = 156, .external_lex_state = 25}, - [883] = {.lex_state = 145}, - [884] = {.lex_state = 90}, - [885] = {.lex_state = 156, .external_lex_state = 25}, - [886] = {.lex_state = 156, .external_lex_state = 25}, - [887] = {.lex_state = 156, .external_lex_state = 25}, - [888] = {.lex_state = 62}, - [889] = {.lex_state = 151, .external_lex_state = 16}, - [890] = {.lex_state = 154, .external_lex_state = 6}, - [891] = {.lex_state = 151, .external_lex_state = 16}, - [892] = {.lex_state = 151, .external_lex_state = 16}, - [893] = {.lex_state = 68}, - [894] = {.lex_state = 163, .external_lex_state = 2}, - [895] = {.lex_state = 68}, - [896] = {.lex_state = 171, .external_lex_state = 2}, - [897] = {.lex_state = 68}, - [898] = {.lex_state = 163, .external_lex_state = 2}, - [899] = {.lex_state = 156, .external_lex_state = 6}, - [900] = {.lex_state = 72}, - [901] = {.lex_state = 156, .external_lex_state = 13}, - [902] = {.lex_state = 156, .external_lex_state = 13}, - [903] = {.lex_state = 145}, - [904] = {.lex_state = 90}, - [905] = {.lex_state = 156, .external_lex_state = 13}, - [906] = {.lex_state = 156, .external_lex_state = 13}, - [907] = {.lex_state = 156, .external_lex_state = 13}, - [908] = {.lex_state = 62}, - [909] = {.lex_state = 151, .external_lex_state = 16}, - [910] = {.lex_state = 154, .external_lex_state = 6}, - [911] = {.lex_state = 151, .external_lex_state = 16}, - [912] = {.lex_state = 151, .external_lex_state = 16}, - [913] = {.lex_state = 68}, - [914] = {.lex_state = 163, .external_lex_state = 2}, - [915] = {.lex_state = 68}, - [916] = {.lex_state = 171, .external_lex_state = 2}, - [917] = {.lex_state = 68}, - [918] = {.lex_state = 163, .external_lex_state = 2}, - [919] = {.lex_state = 156}, - [920] = {.lex_state = 158, .external_lex_state = 17}, - [921] = {.lex_state = 158, .external_lex_state = 17}, - [922] = {.lex_state = 158, .external_lex_state = 17}, - [923] = {.lex_state = 145}, - [924] = {.lex_state = 221, .external_lex_state = 16}, - [925] = {.lex_state = 158, .external_lex_state = 17}, - [926] = {.lex_state = 225}, - [927] = {.lex_state = 223, .external_lex_state = 16}, - [928] = {.lex_state = 62}, - [929] = {.lex_state = 151, .external_lex_state = 16}, - [930] = {.lex_state = 151, .external_lex_state = 16}, - [931] = {.lex_state = 151, .external_lex_state = 16}, - [932] = {.lex_state = 158, .external_lex_state = 17}, - [933] = {.lex_state = 225}, - [934] = {.lex_state = 223, .external_lex_state = 16}, - [935] = {.lex_state = 158, .external_lex_state = 17}, - [936] = {.lex_state = 225}, - [937] = {.lex_state = 223, .external_lex_state = 16}, - [938] = {.lex_state = 158, .external_lex_state = 17}, - [939] = {.lex_state = 158, .external_lex_state = 17}, - [940] = {.lex_state = 119}, - [941] = {.lex_state = 68}, - [942] = {.lex_state = 163, .external_lex_state = 2}, - [943] = {.lex_state = 68}, - [944] = {.lex_state = 163, .external_lex_state = 2}, - [945] = {.lex_state = 68}, - [946] = {.lex_state = 176, .external_lex_state = 19}, - [947] = {.lex_state = 72}, - [948] = {.lex_state = 158, .external_lex_state = 17}, - [949] = {.lex_state = 158, .external_lex_state = 17}, - [950] = {.lex_state = 158, .external_lex_state = 18}, - [951] = {.lex_state = 230, .external_lex_state = 17}, - [952] = {.lex_state = 230, .external_lex_state = 17}, - [953] = {.lex_state = 240, .external_lex_state = 18}, - [954] = {.lex_state = 240, .external_lex_state = 18}, - [955] = {.lex_state = 230, .external_lex_state = 17}, - [956] = {.lex_state = 230, .external_lex_state = 17}, - [957] = {.lex_state = 240, .external_lex_state = 18}, - [958] = {.lex_state = 68}, - [959] = {.lex_state = 230, .external_lex_state = 18}, - [960] = {.lex_state = 230, .external_lex_state = 18}, - [961] = {.lex_state = 158, .external_lex_state = 18}, - [962] = {.lex_state = 158, .external_lex_state = 18}, - [963] = {.lex_state = 171, .external_lex_state = 15}, - [964] = {.lex_state = 171, .external_lex_state = 15}, - [965] = {.lex_state = 232, .external_lex_state = 18}, - [966] = {.lex_state = 68}, - [967] = {.lex_state = 163, .external_lex_state = 26}, - [968] = {.lex_state = 232, .external_lex_state = 26}, - [969] = {.lex_state = 114, .external_lex_state = 9}, - [970] = {.lex_state = 165, .external_lex_state = 25}, - [971] = {.lex_state = 165, .external_lex_state = 6}, - [972] = {.lex_state = 165, .external_lex_state = 13}, - [973] = {.lex_state = 156}, - [974] = {.lex_state = 167, .external_lex_state = 17}, - [975] = {.lex_state = 119}, - [976] = {.lex_state = 171, .external_lex_state = 2}, - [977] = {.lex_state = 68}, - [978] = {.lex_state = 171, .external_lex_state = 2}, - [979] = {.lex_state = 72}, - [980] = {.lex_state = 167, .external_lex_state = 17}, - [981] = {.lex_state = 167, .external_lex_state = 17}, - [982] = {.lex_state = 232, .external_lex_state = 17}, - [983] = {.lex_state = 232, .external_lex_state = 17}, - [984] = {.lex_state = 232, .external_lex_state = 17}, - [985] = {.lex_state = 232, .external_lex_state = 17}, - [986] = {.lex_state = 232, .external_lex_state = 18}, - [987] = {.lex_state = 232, .external_lex_state = 18}, - [988] = {.lex_state = 167, .external_lex_state = 18}, - [989] = {.lex_state = 167, .external_lex_state = 18}, - [990] = {.lex_state = 110, .external_lex_state = 23}, - [991] = {.lex_state = 176, .external_lex_state = 19}, - [992] = {.lex_state = 176, .external_lex_state = 19}, - [993] = {.lex_state = 62}, - [994] = {.lex_state = 151, .external_lex_state = 16}, - [995] = {.lex_state = 154, .external_lex_state = 6}, - [996] = {.lex_state = 151, .external_lex_state = 16}, - [997] = {.lex_state = 151, .external_lex_state = 16}, - [998] = {.lex_state = 127, .external_lex_state = 4}, - [999] = {.lex_state = 176, .external_lex_state = 19}, - [1000] = {.lex_state = 199, .external_lex_state = 5}, - [1001] = {.lex_state = 199, .external_lex_state = 5}, - [1002] = {.lex_state = 234, .external_lex_state = 7}, - [1003] = {.lex_state = 199, .external_lex_state = 5}, - [1004] = {.lex_state = 127, .external_lex_state = 4}, - [1005] = {.lex_state = 199, .external_lex_state = 7}, - [1006] = {.lex_state = 62, .external_lex_state = 13}, - [1007] = {.lex_state = 62}, - [1008] = {.lex_state = 203, .external_lex_state = 11}, - [1009] = {.lex_state = 62, .external_lex_state = 13}, - [1010] = {.lex_state = 62}, - [1011] = {.lex_state = 72}, - [1012] = {.lex_state = 236, .external_lex_state = 13}, - [1013] = {.lex_state = 236, .external_lex_state = 13}, - [1014] = {.lex_state = 145}, - [1015] = {.lex_state = 90}, - [1016] = {.lex_state = 236, .external_lex_state = 13}, - [1017] = {.lex_state = 236, .external_lex_state = 13}, - [1018] = {.lex_state = 236, .external_lex_state = 13}, - [1019] = {.lex_state = 62}, - [1020] = {.lex_state = 151, .external_lex_state = 16}, - [1021] = {.lex_state = 154, .external_lex_state = 6}, - [1022] = {.lex_state = 151, .external_lex_state = 16}, - [1023] = {.lex_state = 151, .external_lex_state = 16}, - [1024] = {.lex_state = 68}, - [1025] = {.lex_state = 163, .external_lex_state = 2}, - [1026] = {.lex_state = 68}, - [1027] = {.lex_state = 171, .external_lex_state = 2}, - [1028] = {.lex_state = 68}, - [1029] = {.lex_state = 163, .external_lex_state = 2}, - [1030] = {.lex_state = 125, .external_lex_state = 8}, - [1031] = {.lex_state = 163}, - [1032] = {.lex_state = 125, .external_lex_state = 21}, - [1033] = {.lex_state = 110, .external_lex_state = 21}, - [1034] = {.lex_state = 125, .external_lex_state = 21}, - [1035] = {.lex_state = 145}, - [1036] = {.lex_state = 221, .external_lex_state = 16}, - [1037] = {.lex_state = 125, .external_lex_state = 21}, - [1038] = {.lex_state = 225}, - [1039] = {.lex_state = 223, .external_lex_state = 16}, - [1040] = {.lex_state = 62}, - [1041] = {.lex_state = 151, .external_lex_state = 16}, - [1042] = {.lex_state = 151, .external_lex_state = 16}, - [1043] = {.lex_state = 151, .external_lex_state = 16}, - [1044] = {.lex_state = 125, .external_lex_state = 21}, - [1045] = {.lex_state = 225}, - [1046] = {.lex_state = 223, .external_lex_state = 16}, - [1047] = {.lex_state = 125, .external_lex_state = 21}, - [1048] = {.lex_state = 225}, - [1049] = {.lex_state = 223, .external_lex_state = 16}, - [1050] = {.lex_state = 125, .external_lex_state = 21}, - [1051] = {.lex_state = 125, .external_lex_state = 21}, - [1052] = {.lex_state = 116, .external_lex_state = 10}, - [1053] = {.lex_state = 72}, - [1054] = {.lex_state = 116, .external_lex_state = 4}, - [1055] = {.lex_state = 127, .external_lex_state = 4}, - [1056] = {.lex_state = 56, .external_lex_state = 2}, - [1057] = {.lex_state = 234, .external_lex_state = 7}, - [1058] = {.lex_state = 56, .external_lex_state = 2}, - [1059] = {.lex_state = 127, .external_lex_state = 4}, - [1060] = {.lex_state = 72}, - [1061] = {.lex_state = 56, .external_lex_state = 2}, - [1062] = {.lex_state = 127, .external_lex_state = 4}, - [1063] = {.lex_state = 72}, - [1064] = {.lex_state = 56, .external_lex_state = 2}, - [1065] = {.lex_state = 72}, - [1066] = {.lex_state = 72}, - [1067] = {.lex_state = 127, .external_lex_state = 4}, - [1068] = {.lex_state = 242, .external_lex_state = 13}, - [1069] = {.lex_state = 242, .external_lex_state = 13}, - [1070] = {.lex_state = 72}, - [1071] = {.lex_state = 242}, - [1072] = {.lex_state = 72}, - [1073] = {.lex_state = 72}, - [1074] = {.lex_state = 116, .external_lex_state = 10}, - [1075] = {.lex_state = 127, .external_lex_state = 4}, - [1076] = {.lex_state = 72}, - [1077] = {.lex_state = 72}, - [1078] = {.lex_state = 72}, - [1079] = {.lex_state = 116, .external_lex_state = 10}, - [1080] = {.lex_state = 205, .external_lex_state = 24}, - [1081] = {.lex_state = 205, .external_lex_state = 24}, - [1082] = {.lex_state = 205, .external_lex_state = 16}, - [1083] = {.lex_state = 223, .external_lex_state = 16}, - [1084] = {.lex_state = 116, .external_lex_state = 10}, - [1085] = {.lex_state = 221, .external_lex_state = 16}, - [1086] = {.lex_state = 116, .external_lex_state = 10}, - [1087] = {.lex_state = 225}, - [1088] = {.lex_state = 223, .external_lex_state = 16}, - [1089] = {.lex_state = 116, .external_lex_state = 10}, - [1090] = {.lex_state = 225}, - [1091] = {.lex_state = 223, .external_lex_state = 16}, - [1092] = {.lex_state = 225}, - [1093] = {.lex_state = 223, .external_lex_state = 16}, - [1094] = {.lex_state = 223, .external_lex_state = 16}, - [1095] = {.lex_state = 116, .external_lex_state = 10}, - [1096] = {.lex_state = 223, .external_lex_state = 16}, - [1097] = {.lex_state = 110, .external_lex_state = 23}, - [1098] = {.lex_state = 205, .external_lex_state = 22}, - [1099] = {.lex_state = 125, .external_lex_state = 23}, - [1100] = {.lex_state = 205, .external_lex_state = 22}, - [1101] = {.lex_state = 72}, - [1102] = {.lex_state = 245, .external_lex_state = 10}, - [1103] = {.lex_state = 245, .external_lex_state = 10}, - [1104] = {.lex_state = 127, .external_lex_state = 4}, - [1105] = {.lex_state = 125, .external_lex_state = 21}, - [1106] = {.lex_state = 209, .external_lex_state = 7}, - [1107] = {.lex_state = 119}, - [1108] = {.lex_state = 56}, - [1109] = {.lex_state = 72}, - [1110] = {.lex_state = 56}, - [1111] = {.lex_state = 72}, - [1112] = {.lex_state = 72}, - [1113] = {.lex_state = 209, .external_lex_state = 23}, - [1114] = {.lex_state = 121, .external_lex_state = 14}, - [1115] = {.lex_state = 121, .external_lex_state = 14}, - [1116] = {.lex_state = 121, .external_lex_state = 14}, - [1117] = {.lex_state = 121, .external_lex_state = 10}, - [1118] = {.lex_state = 125, .external_lex_state = 23}, - [1119] = {.lex_state = 209, .external_lex_state = 5}, - [1120] = {.lex_state = 209, .external_lex_state = 5}, - [1121] = {.lex_state = 209, .external_lex_state = 5}, - [1122] = {.lex_state = 127, .external_lex_state = 4}, - [1123] = {.lex_state = 209, .external_lex_state = 7}, - [1124] = {.lex_state = 163, .external_lex_state = 2}, - [1125] = {.lex_state = 163}, - [1126] = {.lex_state = 211, .external_lex_state = 13}, - [1127] = {.lex_state = 129, .external_lex_state = 11}, - [1128] = {.lex_state = 129, .external_lex_state = 11}, - [1129] = {.lex_state = 205, .external_lex_state = 24}, - [1130] = {.lex_state = 205, .external_lex_state = 24}, - [1131] = {.lex_state = 205, .external_lex_state = 16}, - [1132] = {.lex_state = 223, .external_lex_state = 16}, - [1133] = {.lex_state = 129, .external_lex_state = 11}, - [1134] = {.lex_state = 221, .external_lex_state = 16}, - [1135] = {.lex_state = 129, .external_lex_state = 11}, - [1136] = {.lex_state = 225}, - [1137] = {.lex_state = 223, .external_lex_state = 16}, - [1138] = {.lex_state = 129, .external_lex_state = 11}, - [1139] = {.lex_state = 225}, - [1140] = {.lex_state = 223, .external_lex_state = 16}, - [1141] = {.lex_state = 225}, - [1142] = {.lex_state = 223, .external_lex_state = 16}, - [1143] = {.lex_state = 223, .external_lex_state = 16}, - [1144] = {.lex_state = 129, .external_lex_state = 11}, - [1145] = {.lex_state = 223, .external_lex_state = 16}, - [1146] = {.lex_state = 72}, - [1147] = {.lex_state = 199, .external_lex_state = 27}, - [1148] = {.lex_state = 90}, - [1149] = {.lex_state = 97}, - [1150] = {.lex_state = 199, .external_lex_state = 27}, - [1151] = {.lex_state = 97, .external_lex_state = 6}, - [1152] = {.lex_state = 56, .external_lex_state = 2}, - [1153] = {.lex_state = 56, .external_lex_state = 2}, - [1154] = {.lex_state = 56, .external_lex_state = 2}, - [1155] = {.lex_state = 234, .external_lex_state = 23}, - [1156] = {.lex_state = 234, .external_lex_state = 23}, - [1157] = {.lex_state = 199, .external_lex_state = 27}, - [1158] = {.lex_state = 199, .external_lex_state = 27}, - [1159] = {.lex_state = 234, .external_lex_state = 23}, - [1160] = {.lex_state = 199, .external_lex_state = 23}, - [1161] = {.lex_state = 218, .external_lex_state = 13}, - [1162] = {.lex_state = 218, .external_lex_state = 13}, - [1163] = {.lex_state = 205, .external_lex_state = 24}, - [1164] = {.lex_state = 205, .external_lex_state = 24}, - [1165] = {.lex_state = 205, .external_lex_state = 16}, - [1166] = {.lex_state = 223, .external_lex_state = 16}, - [1167] = {.lex_state = 218, .external_lex_state = 13}, - [1168] = {.lex_state = 221, .external_lex_state = 16}, - [1169] = {.lex_state = 218, .external_lex_state = 13}, - [1170] = {.lex_state = 225}, - [1171] = {.lex_state = 223, .external_lex_state = 16}, - [1172] = {.lex_state = 218, .external_lex_state = 13}, - [1173] = {.lex_state = 225}, - [1174] = {.lex_state = 223, .external_lex_state = 16}, - [1175] = {.lex_state = 225}, - [1176] = {.lex_state = 223, .external_lex_state = 16}, - [1177] = {.lex_state = 223, .external_lex_state = 16}, - [1178] = {.lex_state = 218, .external_lex_state = 13}, - [1179] = {.lex_state = 223, .external_lex_state = 16}, - [1180] = {.lex_state = 121, .external_lex_state = 3}, - [1181] = {.lex_state = 163}, - [1182] = {.lex_state = 121, .external_lex_state = 14}, - [1183] = {.lex_state = 121, .external_lex_state = 14}, - [1184] = {.lex_state = 205, .external_lex_state = 24}, - [1185] = {.lex_state = 205, .external_lex_state = 24}, - [1186] = {.lex_state = 205, .external_lex_state = 16}, - [1187] = {.lex_state = 223, .external_lex_state = 16}, - [1188] = {.lex_state = 121, .external_lex_state = 14}, - [1189] = {.lex_state = 221, .external_lex_state = 16}, - [1190] = {.lex_state = 121, .external_lex_state = 14}, - [1191] = {.lex_state = 225}, - [1192] = {.lex_state = 223, .external_lex_state = 16}, - [1193] = {.lex_state = 121, .external_lex_state = 14}, - [1194] = {.lex_state = 225}, - [1195] = {.lex_state = 223, .external_lex_state = 16}, - [1196] = {.lex_state = 225}, - [1197] = {.lex_state = 223, .external_lex_state = 16}, - [1198] = {.lex_state = 223, .external_lex_state = 16}, - [1199] = {.lex_state = 121, .external_lex_state = 14}, - [1200] = {.lex_state = 223, .external_lex_state = 16}, - [1201] = {.lex_state = 121, .external_lex_state = 10}, - [1202] = {.lex_state = 121, .external_lex_state = 10}, - [1203] = {.lex_state = 205, .external_lex_state = 24}, - [1204] = {.lex_state = 205, .external_lex_state = 24}, - [1205] = {.lex_state = 205, .external_lex_state = 16}, - [1206] = {.lex_state = 223, .external_lex_state = 16}, - [1207] = {.lex_state = 121, .external_lex_state = 10}, - [1208] = {.lex_state = 221, .external_lex_state = 16}, - [1209] = {.lex_state = 121, .external_lex_state = 10}, - [1210] = {.lex_state = 225}, - [1211] = {.lex_state = 223, .external_lex_state = 16}, - [1212] = {.lex_state = 121, .external_lex_state = 10}, - [1213] = {.lex_state = 225}, - [1214] = {.lex_state = 223, .external_lex_state = 16}, - [1215] = {.lex_state = 225}, - [1216] = {.lex_state = 223, .external_lex_state = 16}, - [1217] = {.lex_state = 223, .external_lex_state = 16}, - [1218] = {.lex_state = 121, .external_lex_state = 10}, - [1219] = {.lex_state = 223, .external_lex_state = 16}, - [1220] = {.lex_state = 163, .external_lex_state = 15}, - [1221] = {.lex_state = 163, .external_lex_state = 15}, - [1222] = {.lex_state = 205, .external_lex_state = 24}, - [1223] = {.lex_state = 205, .external_lex_state = 24}, - [1224] = {.lex_state = 205, .external_lex_state = 16}, - [1225] = {.lex_state = 223, .external_lex_state = 16}, - [1226] = {.lex_state = 163, .external_lex_state = 15}, - [1227] = {.lex_state = 221, .external_lex_state = 16}, - [1228] = {.lex_state = 163, .external_lex_state = 15}, - [1229] = {.lex_state = 225}, - [1230] = {.lex_state = 223, .external_lex_state = 16}, - [1231] = {.lex_state = 163, .external_lex_state = 15}, - [1232] = {.lex_state = 225}, - [1233] = {.lex_state = 223, .external_lex_state = 16}, - [1234] = {.lex_state = 225}, - [1235] = {.lex_state = 223, .external_lex_state = 16}, - [1236] = {.lex_state = 223, .external_lex_state = 16}, - [1237] = {.lex_state = 163, .external_lex_state = 15}, - [1238] = {.lex_state = 223, .external_lex_state = 16}, - [1239] = {.lex_state = 90, .external_lex_state = 13}, - [1240] = {.lex_state = 205, .external_lex_state = 24}, - [1241] = {.lex_state = 205, .external_lex_state = 24}, - [1242] = {.lex_state = 205, .external_lex_state = 16}, - [1243] = {.lex_state = 223, .external_lex_state = 16}, - [1244] = {.lex_state = 90, .external_lex_state = 13}, - [1245] = {.lex_state = 221, .external_lex_state = 16}, - [1246] = {.lex_state = 90, .external_lex_state = 13}, - [1247] = {.lex_state = 225}, - [1248] = {.lex_state = 223, .external_lex_state = 16}, - [1249] = {.lex_state = 90, .external_lex_state = 13}, - [1250] = {.lex_state = 225}, - [1251] = {.lex_state = 223, .external_lex_state = 16}, - [1252] = {.lex_state = 225}, - [1253] = {.lex_state = 223, .external_lex_state = 16}, - [1254] = {.lex_state = 223, .external_lex_state = 16}, - [1255] = {.lex_state = 90, .external_lex_state = 13}, - [1256] = {.lex_state = 223, .external_lex_state = 16}, - [1257] = {.lex_state = 203, .external_lex_state = 12}, - [1258] = {.lex_state = 151, .external_lex_state = 24}, - [1259] = {.lex_state = 203, .external_lex_state = 12}, - [1260] = {.lex_state = 151, .external_lex_state = 24}, - [1261] = {.lex_state = 129, .external_lex_state = 12}, - [1262] = {.lex_state = 72}, - [1263] = {.lex_state = 112, .external_lex_state = 5}, - [1264] = {.lex_state = 205, .external_lex_state = 24}, - [1265] = {.lex_state = 205, .external_lex_state = 24}, - [1266] = {.lex_state = 145}, - [1267] = {.lex_state = 90}, - [1268] = {.lex_state = 205, .external_lex_state = 24}, - [1269] = {.lex_state = 205, .external_lex_state = 24}, - [1270] = {.lex_state = 205, .external_lex_state = 24}, - [1271] = {.lex_state = 112, .external_lex_state = 5}, - [1272] = {.lex_state = 62}, - [1273] = {.lex_state = 151, .external_lex_state = 16}, - [1274] = {.lex_state = 154, .external_lex_state = 6}, - [1275] = {.lex_state = 151, .external_lex_state = 16}, - [1276] = {.lex_state = 151, .external_lex_state = 16}, - [1277] = {.lex_state = 68}, - [1278] = {.lex_state = 163, .external_lex_state = 2}, - [1279] = {.lex_state = 68}, - [1280] = {.lex_state = 171, .external_lex_state = 2}, - [1281] = {.lex_state = 68}, - [1282] = {.lex_state = 163, .external_lex_state = 2}, - [1283] = {.lex_state = 223, .external_lex_state = 24}, - [1284] = {.lex_state = 223, .external_lex_state = 24}, - [1285] = {.lex_state = 223, .external_lex_state = 24}, - [1286] = {.lex_state = 145}, - [1287] = {.lex_state = 221, .external_lex_state = 16}, - [1288] = {.lex_state = 223, .external_lex_state = 24}, - [1289] = {.lex_state = 225}, - [1290] = {.lex_state = 223, .external_lex_state = 16}, - [1291] = {.lex_state = 62}, - [1292] = {.lex_state = 151, .external_lex_state = 16}, - [1293] = {.lex_state = 151, .external_lex_state = 16}, - [1294] = {.lex_state = 151, .external_lex_state = 16}, - [1295] = {.lex_state = 223, .external_lex_state = 24}, - [1296] = {.lex_state = 225}, - [1297] = {.lex_state = 223, .external_lex_state = 16}, - [1298] = {.lex_state = 223, .external_lex_state = 24}, - [1299] = {.lex_state = 225}, - [1300] = {.lex_state = 223, .external_lex_state = 16}, - [1301] = {.lex_state = 112, .external_lex_state = 5}, - [1302] = {.lex_state = 223, .external_lex_state = 16}, - [1303] = {.lex_state = 223, .external_lex_state = 24}, - [1304] = {.lex_state = 223, .external_lex_state = 24}, - [1305] = {.lex_state = 205, .external_lex_state = 24}, - [1306] = {.lex_state = 205, .external_lex_state = 24}, - [1307] = {.lex_state = 205, .external_lex_state = 16}, - [1308] = {.lex_state = 223, .external_lex_state = 16}, - [1309] = {.lex_state = 112, .external_lex_state = 5}, - [1310] = {.lex_state = 223, .external_lex_state = 16}, - [1311] = {.lex_state = 112, .external_lex_state = 5}, - [1312] = {.lex_state = 223, .external_lex_state = 16}, - [1313] = {.lex_state = 112, .external_lex_state = 5}, - [1314] = {.lex_state = 223, .external_lex_state = 16}, - [1315] = {.lex_state = 112, .external_lex_state = 5}, - [1316] = {.lex_state = 223, .external_lex_state = 16}, - [1317] = {.lex_state = 163, .external_lex_state = 15}, - [1318] = {.lex_state = 116, .external_lex_state = 4}, - [1319] = {.lex_state = 56, .external_lex_state = 2}, - [1320] = {.lex_state = 68}, - [1321] = {.lex_state = 240, .external_lex_state = 18}, - [1322] = {.lex_state = 56, .external_lex_state = 2}, - [1323] = {.lex_state = 68}, - [1324] = {.lex_state = 230, .external_lex_state = 18}, - [1325] = {.lex_state = 68}, - [1326] = {.lex_state = 72}, - [1327] = {.lex_state = 56, .external_lex_state = 2}, - [1328] = {.lex_state = 72}, - [1329] = {.lex_state = 72}, - [1330] = {.lex_state = 116, .external_lex_state = 4}, - [1331] = {.lex_state = 72}, - [1332] = {.lex_state = 116, .external_lex_state = 4}, - [1333] = {.lex_state = 119}, - [1334] = {.lex_state = 163, .external_lex_state = 26}, - [1335] = {.lex_state = 205, .external_lex_state = 22}, - [1336] = {.lex_state = 56}, - [1337] = {.lex_state = 72}, - [1338] = {.lex_state = 68}, - [1339] = {.lex_state = 68}, - [1340] = {.lex_state = 207, .external_lex_state = 2}, - [1341] = {.lex_state = 56}, - [1342] = {.lex_state = 72}, - [1343] = {.lex_state = 56, .external_lex_state = 20}, - [1344] = {.lex_state = 72}, - [1345] = {.lex_state = 230, .external_lex_state = 26}, - [1346] = {.lex_state = 156, .external_lex_state = 6}, - [1347] = {.lex_state = 163}, - [1348] = {.lex_state = 156, .external_lex_state = 25}, - [1349] = {.lex_state = 156, .external_lex_state = 25}, - [1350] = {.lex_state = 156, .external_lex_state = 25}, - [1351] = {.lex_state = 156, .external_lex_state = 25}, - [1352] = {.lex_state = 156, .external_lex_state = 25}, - [1353] = {.lex_state = 145}, - [1354] = {.lex_state = 221, .external_lex_state = 16}, - [1355] = {.lex_state = 156, .external_lex_state = 25}, - [1356] = {.lex_state = 225}, - [1357] = {.lex_state = 223, .external_lex_state = 16}, - [1358] = {.lex_state = 62}, - [1359] = {.lex_state = 151, .external_lex_state = 16}, - [1360] = {.lex_state = 151, .external_lex_state = 16}, - [1361] = {.lex_state = 151, .external_lex_state = 16}, - [1362] = {.lex_state = 156, .external_lex_state = 25}, - [1363] = {.lex_state = 225}, - [1364] = {.lex_state = 223, .external_lex_state = 16}, - [1365] = {.lex_state = 156, .external_lex_state = 25}, - [1366] = {.lex_state = 225}, - [1367] = {.lex_state = 223, .external_lex_state = 16}, - [1368] = {.lex_state = 156, .external_lex_state = 25}, - [1369] = {.lex_state = 156, .external_lex_state = 25}, - [1370] = {.lex_state = 156, .external_lex_state = 13}, - [1371] = {.lex_state = 156, .external_lex_state = 13}, - [1372] = {.lex_state = 156, .external_lex_state = 13}, - [1373] = {.lex_state = 145}, - [1374] = {.lex_state = 221, .external_lex_state = 16}, - [1375] = {.lex_state = 156, .external_lex_state = 13}, - [1376] = {.lex_state = 225}, - [1377] = {.lex_state = 223, .external_lex_state = 16}, - [1378] = {.lex_state = 62}, - [1379] = {.lex_state = 151, .external_lex_state = 16}, - [1380] = {.lex_state = 151, .external_lex_state = 16}, - [1381] = {.lex_state = 151, .external_lex_state = 16}, - [1382] = {.lex_state = 156, .external_lex_state = 13}, - [1383] = {.lex_state = 225}, - [1384] = {.lex_state = 223, .external_lex_state = 16}, - [1385] = {.lex_state = 156, .external_lex_state = 13}, - [1386] = {.lex_state = 225}, - [1387] = {.lex_state = 223, .external_lex_state = 16}, - [1388] = {.lex_state = 156, .external_lex_state = 13}, - [1389] = {.lex_state = 156, .external_lex_state = 13}, - [1390] = {.lex_state = 158, .external_lex_state = 17}, - [1391] = {.lex_state = 158, .external_lex_state = 17}, - [1392] = {.lex_state = 205, .external_lex_state = 24}, - [1393] = {.lex_state = 205, .external_lex_state = 24}, - [1394] = {.lex_state = 205, .external_lex_state = 16}, - [1395] = {.lex_state = 223, .external_lex_state = 16}, - [1396] = {.lex_state = 158, .external_lex_state = 17}, - [1397] = {.lex_state = 221, .external_lex_state = 16}, - [1398] = {.lex_state = 158, .external_lex_state = 17}, - [1399] = {.lex_state = 225}, - [1400] = {.lex_state = 223, .external_lex_state = 16}, - [1401] = {.lex_state = 158, .external_lex_state = 17}, - [1402] = {.lex_state = 225}, - [1403] = {.lex_state = 223, .external_lex_state = 16}, - [1404] = {.lex_state = 225}, - [1405] = {.lex_state = 223, .external_lex_state = 16}, - [1406] = {.lex_state = 223, .external_lex_state = 16}, - [1407] = {.lex_state = 158, .external_lex_state = 17}, - [1408] = {.lex_state = 223, .external_lex_state = 16}, - [1409] = {.lex_state = 163, .external_lex_state = 26}, - [1410] = {.lex_state = 68}, - [1411] = {.lex_state = 230, .external_lex_state = 17}, - [1412] = {.lex_state = 230, .external_lex_state = 17}, - [1413] = {.lex_state = 240, .external_lex_state = 18}, - [1414] = {.lex_state = 230, .external_lex_state = 17}, - [1415] = {.lex_state = 68}, - [1416] = {.lex_state = 230, .external_lex_state = 18}, - [1417] = {.lex_state = 171, .external_lex_state = 15}, - [1418] = {.lex_state = 232, .external_lex_state = 18}, - [1419] = {.lex_state = 119}, - [1420] = {.lex_state = 56}, - [1421] = {.lex_state = 72}, - [1422] = {.lex_state = 56}, - [1423] = {.lex_state = 72}, - [1424] = {.lex_state = 72}, - [1425] = {.lex_state = 232, .external_lex_state = 26}, - [1426] = {.lex_state = 165, .external_lex_state = 25}, - [1427] = {.lex_state = 165, .external_lex_state = 25}, - [1428] = {.lex_state = 165, .external_lex_state = 25}, - [1429] = {.lex_state = 165, .external_lex_state = 13}, - [1430] = {.lex_state = 163, .external_lex_state = 26}, - [1431] = {.lex_state = 232, .external_lex_state = 17}, - [1432] = {.lex_state = 232, .external_lex_state = 17}, - [1433] = {.lex_state = 232, .external_lex_state = 17}, - [1434] = {.lex_state = 232, .external_lex_state = 18}, - [1435] = {.lex_state = 127, .external_lex_state = 4}, - [1436] = {.lex_state = 221, .external_lex_state = 16}, - [1437] = {.lex_state = 176, .external_lex_state = 19}, - [1438] = {.lex_state = 225}, - [1439] = {.lex_state = 223, .external_lex_state = 16}, - [1440] = {.lex_state = 62}, - [1441] = {.lex_state = 151, .external_lex_state = 16}, - [1442] = {.lex_state = 151, .external_lex_state = 16}, - [1443] = {.lex_state = 151, .external_lex_state = 16}, - [1444] = {.lex_state = 176, .external_lex_state = 19}, - [1445] = {.lex_state = 225}, - [1446] = {.lex_state = 223, .external_lex_state = 16}, - [1447] = {.lex_state = 176, .external_lex_state = 19}, - [1448] = {.lex_state = 225}, - [1449] = {.lex_state = 223, .external_lex_state = 16}, - [1450] = {.lex_state = 199, .external_lex_state = 5}, - [1451] = {.lex_state = 127, .external_lex_state = 4}, - [1452] = {.lex_state = 62}, - [1453] = {.lex_state = 62}, - [1454] = {.lex_state = 236, .external_lex_state = 13}, - [1455] = {.lex_state = 236, .external_lex_state = 13}, - [1456] = {.lex_state = 236, .external_lex_state = 13}, - [1457] = {.lex_state = 145}, - [1458] = {.lex_state = 221, .external_lex_state = 16}, - [1459] = {.lex_state = 236, .external_lex_state = 13}, - [1460] = {.lex_state = 225}, - [1461] = {.lex_state = 223, .external_lex_state = 16}, - [1462] = {.lex_state = 62}, - [1463] = {.lex_state = 151, .external_lex_state = 16}, - [1464] = {.lex_state = 151, .external_lex_state = 16}, - [1465] = {.lex_state = 151, .external_lex_state = 16}, - [1466] = {.lex_state = 236, .external_lex_state = 13}, - [1467] = {.lex_state = 225}, - [1468] = {.lex_state = 223, .external_lex_state = 16}, - [1469] = {.lex_state = 236, .external_lex_state = 13}, - [1470] = {.lex_state = 225}, - [1471] = {.lex_state = 223, .external_lex_state = 16}, - [1472] = {.lex_state = 236, .external_lex_state = 13}, - [1473] = {.lex_state = 236, .external_lex_state = 13}, - [1474] = {.lex_state = 125, .external_lex_state = 21}, - [1475] = {.lex_state = 125, .external_lex_state = 21}, - [1476] = {.lex_state = 205, .external_lex_state = 24}, - [1477] = {.lex_state = 205, .external_lex_state = 24}, - [1478] = {.lex_state = 205, .external_lex_state = 16}, - [1479] = {.lex_state = 223, .external_lex_state = 16}, - [1480] = {.lex_state = 125, .external_lex_state = 21}, - [1481] = {.lex_state = 221, .external_lex_state = 16}, - [1482] = {.lex_state = 125, .external_lex_state = 21}, - [1483] = {.lex_state = 225}, - [1484] = {.lex_state = 223, .external_lex_state = 16}, - [1485] = {.lex_state = 125, .external_lex_state = 21}, - [1486] = {.lex_state = 225}, - [1487] = {.lex_state = 223, .external_lex_state = 16}, - [1488] = {.lex_state = 225}, - [1489] = {.lex_state = 223, .external_lex_state = 16}, - [1490] = {.lex_state = 223, .external_lex_state = 16}, - [1491] = {.lex_state = 125, .external_lex_state = 21}, - [1492] = {.lex_state = 223, .external_lex_state = 16}, - [1493] = {.lex_state = 116, .external_lex_state = 10}, - [1494] = {.lex_state = 127, .external_lex_state = 4}, - [1495] = {.lex_state = 127, .external_lex_state = 4}, - [1496] = {.lex_state = 56, .external_lex_state = 2}, - [1497] = {.lex_state = 56, .external_lex_state = 2}, - [1498] = {.lex_state = 127, .external_lex_state = 4}, - [1499] = {.lex_state = 72}, - [1500] = {.lex_state = 72}, - [1501] = {.lex_state = 173, .external_lex_state = 2}, - [1502] = {.lex_state = 242}, - [1503] = {.lex_state = 242, .external_lex_state = 13}, - [1504] = {.lex_state = 173, .external_lex_state = 2}, - [1505] = {.lex_state = 242}, - [1506] = {.lex_state = 127, .external_lex_state = 4}, - [1507] = {.lex_state = 72}, - [1508] = {.lex_state = 72}, - [1509] = {.lex_state = 127, .external_lex_state = 4}, - [1510] = {.lex_state = 72}, - [1511] = {.lex_state = 127, .external_lex_state = 4}, - [1512] = {.lex_state = 72}, - [1513] = {.lex_state = 127, .external_lex_state = 4}, - [1514] = {.lex_state = 72}, - [1515] = {.lex_state = 116, .external_lex_state = 10}, - [1516] = {.lex_state = 116, .external_lex_state = 10}, - [1517] = {.lex_state = 116, .external_lex_state = 10}, - [1518] = {.lex_state = 223, .external_lex_state = 16}, - [1519] = {.lex_state = 205, .external_lex_state = 24}, - [1520] = {.lex_state = 205, .external_lex_state = 24}, - [1521] = {.lex_state = 205, .external_lex_state = 16}, - [1522] = {.lex_state = 223, .external_lex_state = 16}, - [1523] = {.lex_state = 116, .external_lex_state = 10}, - [1524] = {.lex_state = 223, .external_lex_state = 16}, - [1525] = {.lex_state = 116, .external_lex_state = 10}, - [1526] = {.lex_state = 223, .external_lex_state = 16}, - [1527] = {.lex_state = 116, .external_lex_state = 10}, - [1528] = {.lex_state = 223, .external_lex_state = 16}, - [1529] = {.lex_state = 116, .external_lex_state = 10}, - [1530] = {.lex_state = 223, .external_lex_state = 16}, - [1531] = {.lex_state = 127, .external_lex_state = 4}, - [1532] = {.lex_state = 245, .external_lex_state = 10}, - [1533] = {.lex_state = 245, .external_lex_state = 10}, - [1534] = {.lex_state = 127, .external_lex_state = 4}, - [1535] = {.lex_state = 245, .external_lex_state = 10}, - [1536] = {.lex_state = 125, .external_lex_state = 21}, - [1537] = {.lex_state = 125, .external_lex_state = 23}, - [1538] = {.lex_state = 72}, - [1539] = {.lex_state = 127, .external_lex_state = 10}, - [1540] = {.lex_state = 127, .external_lex_state = 10}, - [1541] = {.lex_state = 72}, - [1542] = {.lex_state = 209, .external_lex_state = 27}, - [1543] = {.lex_state = 209, .external_lex_state = 27}, - [1544] = {.lex_state = 209, .external_lex_state = 27}, - [1545] = {.lex_state = 209, .external_lex_state = 27}, - [1546] = {.lex_state = 209, .external_lex_state = 23}, - [1547] = {.lex_state = 209, .external_lex_state = 5}, - [1548] = {.lex_state = 163, .external_lex_state = 2}, - [1549] = {.lex_state = 129, .external_lex_state = 11}, - [1550] = {.lex_state = 129, .external_lex_state = 11}, - [1551] = {.lex_state = 129, .external_lex_state = 11}, - [1552] = {.lex_state = 223, .external_lex_state = 16}, - [1553] = {.lex_state = 205, .external_lex_state = 24}, - [1554] = {.lex_state = 205, .external_lex_state = 24}, - [1555] = {.lex_state = 205, .external_lex_state = 16}, - [1556] = {.lex_state = 223, .external_lex_state = 16}, - [1557] = {.lex_state = 129, .external_lex_state = 11}, - [1558] = {.lex_state = 223, .external_lex_state = 16}, - [1559] = {.lex_state = 129, .external_lex_state = 11}, - [1560] = {.lex_state = 223, .external_lex_state = 16}, - [1561] = {.lex_state = 129, .external_lex_state = 11}, - [1562] = {.lex_state = 223, .external_lex_state = 16}, - [1563] = {.lex_state = 129, .external_lex_state = 11}, - [1564] = {.lex_state = 223, .external_lex_state = 16}, - [1565] = {.lex_state = 199, .external_lex_state = 27}, - [1566] = {.lex_state = 199, .external_lex_state = 27}, - [1567] = {.lex_state = 234, .external_lex_state = 23}, - [1568] = {.lex_state = 72}, - [1569] = {.lex_state = 199, .external_lex_state = 27}, - [1570] = {.lex_state = 234, .external_lex_state = 27}, - [1571] = {.lex_state = 145}, - [1572] = {.lex_state = 90}, - [1573] = {.lex_state = 234, .external_lex_state = 27}, - [1574] = {.lex_state = 234, .external_lex_state = 27}, - [1575] = {.lex_state = 234, .external_lex_state = 27}, - [1576] = {.lex_state = 62}, - [1577] = {.lex_state = 151, .external_lex_state = 16}, - [1578] = {.lex_state = 154, .external_lex_state = 6}, - [1579] = {.lex_state = 151, .external_lex_state = 16}, - [1580] = {.lex_state = 151, .external_lex_state = 16}, - [1581] = {.lex_state = 68}, - [1582] = {.lex_state = 163, .external_lex_state = 2}, - [1583] = {.lex_state = 68}, - [1584] = {.lex_state = 171, .external_lex_state = 2}, - [1585] = {.lex_state = 68}, - [1586] = {.lex_state = 163, .external_lex_state = 2}, - [1587] = {.lex_state = 218, .external_lex_state = 13}, - [1588] = {.lex_state = 218, .external_lex_state = 13}, - [1589] = {.lex_state = 218, .external_lex_state = 13}, - [1590] = {.lex_state = 223, .external_lex_state = 16}, - [1591] = {.lex_state = 205, .external_lex_state = 24}, - [1592] = {.lex_state = 205, .external_lex_state = 24}, - [1593] = {.lex_state = 205, .external_lex_state = 16}, - [1594] = {.lex_state = 223, .external_lex_state = 16}, - [1595] = {.lex_state = 218, .external_lex_state = 13}, - [1596] = {.lex_state = 223, .external_lex_state = 16}, - [1597] = {.lex_state = 218, .external_lex_state = 13}, - [1598] = {.lex_state = 223, .external_lex_state = 16}, - [1599] = {.lex_state = 218, .external_lex_state = 13}, - [1600] = {.lex_state = 223, .external_lex_state = 16}, - [1601] = {.lex_state = 218, .external_lex_state = 13}, - [1602] = {.lex_state = 223, .external_lex_state = 16}, - [1603] = {.lex_state = 121, .external_lex_state = 3}, - [1604] = {.lex_state = 121, .external_lex_state = 14}, - [1605] = {.lex_state = 121, .external_lex_state = 14}, - [1606] = {.lex_state = 121, .external_lex_state = 14}, - [1607] = {.lex_state = 223, .external_lex_state = 16}, - [1608] = {.lex_state = 205, .external_lex_state = 24}, - [1609] = {.lex_state = 205, .external_lex_state = 24}, - [1610] = {.lex_state = 205, .external_lex_state = 16}, - [1611] = {.lex_state = 223, .external_lex_state = 16}, - [1612] = {.lex_state = 121, .external_lex_state = 14}, - [1613] = {.lex_state = 223, .external_lex_state = 16}, - [1614] = {.lex_state = 121, .external_lex_state = 14}, - [1615] = {.lex_state = 223, .external_lex_state = 16}, - [1616] = {.lex_state = 121, .external_lex_state = 14}, - [1617] = {.lex_state = 223, .external_lex_state = 16}, - [1618] = {.lex_state = 121, .external_lex_state = 14}, - [1619] = {.lex_state = 223, .external_lex_state = 16}, - [1620] = {.lex_state = 121, .external_lex_state = 10}, - [1621] = {.lex_state = 121, .external_lex_state = 10}, - [1622] = {.lex_state = 121, .external_lex_state = 10}, - [1623] = {.lex_state = 223, .external_lex_state = 16}, - [1624] = {.lex_state = 205, .external_lex_state = 24}, - [1625] = {.lex_state = 205, .external_lex_state = 24}, - [1626] = {.lex_state = 205, .external_lex_state = 16}, - [1627] = {.lex_state = 223, .external_lex_state = 16}, - [1628] = {.lex_state = 121, .external_lex_state = 10}, - [1629] = {.lex_state = 223, .external_lex_state = 16}, - [1630] = {.lex_state = 121, .external_lex_state = 10}, - [1631] = {.lex_state = 223, .external_lex_state = 16}, - [1632] = {.lex_state = 121, .external_lex_state = 10}, - [1633] = {.lex_state = 223, .external_lex_state = 16}, - [1634] = {.lex_state = 121, .external_lex_state = 10}, - [1635] = {.lex_state = 223, .external_lex_state = 16}, - [1636] = {.lex_state = 163, .external_lex_state = 15}, - [1637] = {.lex_state = 163, .external_lex_state = 15}, - [1638] = {.lex_state = 163, .external_lex_state = 15}, - [1639] = {.lex_state = 223, .external_lex_state = 16}, - [1640] = {.lex_state = 205, .external_lex_state = 24}, - [1641] = {.lex_state = 205, .external_lex_state = 24}, - [1642] = {.lex_state = 205, .external_lex_state = 16}, - [1643] = {.lex_state = 223, .external_lex_state = 16}, - [1644] = {.lex_state = 163, .external_lex_state = 15}, - [1645] = {.lex_state = 223, .external_lex_state = 16}, - [1646] = {.lex_state = 163, .external_lex_state = 15}, - [1647] = {.lex_state = 223, .external_lex_state = 16}, - [1648] = {.lex_state = 163, .external_lex_state = 15}, - [1649] = {.lex_state = 223, .external_lex_state = 16}, - [1650] = {.lex_state = 163, .external_lex_state = 15}, - [1651] = {.lex_state = 223, .external_lex_state = 16}, - [1652] = {.lex_state = 90, .external_lex_state = 13}, - [1653] = {.lex_state = 90, .external_lex_state = 13}, - [1654] = {.lex_state = 90, .external_lex_state = 13}, - [1655] = {.lex_state = 223, .external_lex_state = 16}, - [1656] = {.lex_state = 205, .external_lex_state = 24}, - [1657] = {.lex_state = 205, .external_lex_state = 24}, - [1658] = {.lex_state = 205, .external_lex_state = 16}, - [1659] = {.lex_state = 223, .external_lex_state = 16}, - [1660] = {.lex_state = 90, .external_lex_state = 13}, - [1661] = {.lex_state = 223, .external_lex_state = 16}, - [1662] = {.lex_state = 90, .external_lex_state = 13}, - [1663] = {.lex_state = 223, .external_lex_state = 16}, - [1664] = {.lex_state = 90, .external_lex_state = 13}, - [1665] = {.lex_state = 223, .external_lex_state = 16}, - [1666] = {.lex_state = 90, .external_lex_state = 13}, - [1667] = {.lex_state = 223, .external_lex_state = 16}, - [1668] = {.lex_state = 151, .external_lex_state = 24}, - [1669] = {.lex_state = 151, .external_lex_state = 16}, - [1670] = {.lex_state = 151, .external_lex_state = 24}, - [1671] = {.lex_state = 151, .external_lex_state = 16}, - [1672] = {.lex_state = 205, .external_lex_state = 24}, - [1673] = {.lex_state = 205, .external_lex_state = 24}, - [1674] = {.lex_state = 205, .external_lex_state = 24}, - [1675] = {.lex_state = 145}, - [1676] = {.lex_state = 221, .external_lex_state = 16}, - [1677] = {.lex_state = 205, .external_lex_state = 24}, - [1678] = {.lex_state = 225}, - [1679] = {.lex_state = 223, .external_lex_state = 16}, - [1680] = {.lex_state = 62}, - [1681] = {.lex_state = 151, .external_lex_state = 16}, - [1682] = {.lex_state = 151, .external_lex_state = 16}, - [1683] = {.lex_state = 151, .external_lex_state = 16}, - [1684] = {.lex_state = 205, .external_lex_state = 24}, - [1685] = {.lex_state = 225}, - [1686] = {.lex_state = 223, .external_lex_state = 16}, - [1687] = {.lex_state = 205, .external_lex_state = 24}, - [1688] = {.lex_state = 225}, - [1689] = {.lex_state = 223, .external_lex_state = 16}, - [1690] = {.lex_state = 205, .external_lex_state = 24}, - [1691] = {.lex_state = 205, .external_lex_state = 24}, - [1692] = {.lex_state = 223, .external_lex_state = 24}, - [1693] = {.lex_state = 223, .external_lex_state = 24}, - [1694] = {.lex_state = 205, .external_lex_state = 24}, - [1695] = {.lex_state = 205, .external_lex_state = 24}, - [1696] = {.lex_state = 205, .external_lex_state = 16}, - [1697] = {.lex_state = 223, .external_lex_state = 16}, - [1698] = {.lex_state = 223, .external_lex_state = 24}, - [1699] = {.lex_state = 221, .external_lex_state = 16}, - [1700] = {.lex_state = 223, .external_lex_state = 24}, - [1701] = {.lex_state = 225}, - [1702] = {.lex_state = 223, .external_lex_state = 16}, - [1703] = {.lex_state = 223, .external_lex_state = 24}, - [1704] = {.lex_state = 225}, - [1705] = {.lex_state = 223, .external_lex_state = 16}, - [1706] = {.lex_state = 225}, - [1707] = {.lex_state = 223, .external_lex_state = 16}, - [1708] = {.lex_state = 223, .external_lex_state = 16}, - [1709] = {.lex_state = 223, .external_lex_state = 24}, - [1710] = {.lex_state = 223, .external_lex_state = 16}, - [1711] = {.lex_state = 112, .external_lex_state = 5}, - [1712] = {.lex_state = 112, .external_lex_state = 5}, - [1713] = {.lex_state = 112, .external_lex_state = 5}, - [1714] = {.lex_state = 112, .external_lex_state = 5}, - [1715] = {.lex_state = 223, .external_lex_state = 16}, - [1716] = {.lex_state = 112, .external_lex_state = 5}, - [1717] = {.lex_state = 223, .external_lex_state = 16}, - [1718] = {.lex_state = 112, .external_lex_state = 5}, - [1719] = {.lex_state = 223, .external_lex_state = 16}, - [1720] = {.lex_state = 112, .external_lex_state = 5}, - [1721] = {.lex_state = 112, .external_lex_state = 5}, - [1722] = {.lex_state = 163, .external_lex_state = 15}, - [1723] = {.lex_state = 72}, - [1724] = {.lex_state = 68}, - [1725] = {.lex_state = 56, .external_lex_state = 2}, - [1726] = {.lex_state = 240, .external_lex_state = 18}, - [1727] = {.lex_state = 68}, - [1728] = {.lex_state = 68}, - [1729] = {.lex_state = 72}, - [1730] = {.lex_state = 72}, - [1731] = {.lex_state = 68}, - [1732] = {.lex_state = 72}, - [1733] = {.lex_state = 72}, - [1734] = {.lex_state = 72}, - [1735] = {.lex_state = 68}, - [1736] = {.lex_state = 72}, - [1737] = {.lex_state = 72}, - [1738] = {.lex_state = 72}, - [1739] = {.lex_state = 163, .external_lex_state = 26}, - [1740] = {.lex_state = 163, .external_lex_state = 26}, - [1741] = {.lex_state = 72}, - [1742] = {.lex_state = 163, .external_lex_state = 13}, - [1743] = {.lex_state = 163, .external_lex_state = 13}, - [1744] = {.lex_state = 68}, - [1745] = {.lex_state = 68}, - [1746] = {.lex_state = 72}, - [1747] = {.lex_state = 230, .external_lex_state = 28}, - [1748] = {.lex_state = 90}, - [1749] = {.lex_state = 97}, - [1750] = {.lex_state = 230, .external_lex_state = 28}, - [1751] = {.lex_state = 97, .external_lex_state = 6}, - [1752] = {.lex_state = 56, .external_lex_state = 2}, - [1753] = {.lex_state = 56, .external_lex_state = 2}, - [1754] = {.lex_state = 56, .external_lex_state = 2}, - [1755] = {.lex_state = 240, .external_lex_state = 26}, - [1756] = {.lex_state = 240, .external_lex_state = 26}, - [1757] = {.lex_state = 230, .external_lex_state = 28}, - [1758] = {.lex_state = 230, .external_lex_state = 28}, - [1759] = {.lex_state = 240, .external_lex_state = 26}, - [1760] = {.lex_state = 230, .external_lex_state = 26}, - [1761] = {.lex_state = 156, .external_lex_state = 6}, - [1762] = {.lex_state = 163}, - [1763] = {.lex_state = 156, .external_lex_state = 25}, - [1764] = {.lex_state = 156, .external_lex_state = 25}, - [1765] = {.lex_state = 205, .external_lex_state = 24}, - [1766] = {.lex_state = 205, .external_lex_state = 24}, - [1767] = {.lex_state = 205, .external_lex_state = 16}, - [1768] = {.lex_state = 223, .external_lex_state = 16}, - [1769] = {.lex_state = 156, .external_lex_state = 25}, - [1770] = {.lex_state = 221, .external_lex_state = 16}, - [1771] = {.lex_state = 156, .external_lex_state = 25}, - [1772] = {.lex_state = 225}, - [1773] = {.lex_state = 223, .external_lex_state = 16}, - [1774] = {.lex_state = 156, .external_lex_state = 25}, - [1775] = {.lex_state = 225}, - [1776] = {.lex_state = 223, .external_lex_state = 16}, - [1777] = {.lex_state = 225}, - [1778] = {.lex_state = 223, .external_lex_state = 16}, - [1779] = {.lex_state = 223, .external_lex_state = 16}, - [1780] = {.lex_state = 156, .external_lex_state = 25}, - [1781] = {.lex_state = 223, .external_lex_state = 16}, - [1782] = {.lex_state = 156, .external_lex_state = 13}, - [1783] = {.lex_state = 156, .external_lex_state = 13}, - [1784] = {.lex_state = 205, .external_lex_state = 24}, - [1785] = {.lex_state = 205, .external_lex_state = 24}, - [1786] = {.lex_state = 205, .external_lex_state = 16}, - [1787] = {.lex_state = 223, .external_lex_state = 16}, - [1788] = {.lex_state = 156, .external_lex_state = 13}, - [1789] = {.lex_state = 221, .external_lex_state = 16}, - [1790] = {.lex_state = 156, .external_lex_state = 13}, - [1791] = {.lex_state = 225}, - [1792] = {.lex_state = 223, .external_lex_state = 16}, - [1793] = {.lex_state = 156, .external_lex_state = 13}, - [1794] = {.lex_state = 225}, - [1795] = {.lex_state = 223, .external_lex_state = 16}, - [1796] = {.lex_state = 225}, - [1797] = {.lex_state = 223, .external_lex_state = 16}, - [1798] = {.lex_state = 223, .external_lex_state = 16}, - [1799] = {.lex_state = 156, .external_lex_state = 13}, - [1800] = {.lex_state = 223, .external_lex_state = 16}, - [1801] = {.lex_state = 158, .external_lex_state = 17}, - [1802] = {.lex_state = 158, .external_lex_state = 17}, - [1803] = {.lex_state = 158, .external_lex_state = 17}, - [1804] = {.lex_state = 223, .external_lex_state = 16}, - [1805] = {.lex_state = 205, .external_lex_state = 24}, - [1806] = {.lex_state = 205, .external_lex_state = 24}, - [1807] = {.lex_state = 205, .external_lex_state = 16}, - [1808] = {.lex_state = 223, .external_lex_state = 16}, - [1809] = {.lex_state = 158, .external_lex_state = 17}, - [1810] = {.lex_state = 223, .external_lex_state = 16}, - [1811] = {.lex_state = 158, .external_lex_state = 17}, - [1812] = {.lex_state = 223, .external_lex_state = 16}, - [1813] = {.lex_state = 158, .external_lex_state = 17}, - [1814] = {.lex_state = 223, .external_lex_state = 16}, - [1815] = {.lex_state = 158, .external_lex_state = 17}, - [1816] = {.lex_state = 223, .external_lex_state = 16}, - [1817] = {.lex_state = 68}, - [1818] = {.lex_state = 230, .external_lex_state = 17}, - [1819] = {.lex_state = 68}, - [1820] = {.lex_state = 171, .external_lex_state = 15}, - [1821] = {.lex_state = 163, .external_lex_state = 26}, - [1822] = {.lex_state = 72}, - [1823] = {.lex_state = 171, .external_lex_state = 13}, - [1824] = {.lex_state = 171, .external_lex_state = 13}, - [1825] = {.lex_state = 72}, - [1826] = {.lex_state = 232, .external_lex_state = 28}, - [1827] = {.lex_state = 232, .external_lex_state = 28}, - [1828] = {.lex_state = 232, .external_lex_state = 28}, - [1829] = {.lex_state = 232, .external_lex_state = 28}, - [1830] = {.lex_state = 232, .external_lex_state = 26}, - [1831] = {.lex_state = 232, .external_lex_state = 17}, - [1832] = {.lex_state = 176, .external_lex_state = 19}, - [1833] = {.lex_state = 205, .external_lex_state = 24}, - [1834] = {.lex_state = 205, .external_lex_state = 24}, - [1835] = {.lex_state = 205, .external_lex_state = 16}, - [1836] = {.lex_state = 223, .external_lex_state = 16}, - [1837] = {.lex_state = 176, .external_lex_state = 19}, - [1838] = {.lex_state = 221, .external_lex_state = 16}, - [1839] = {.lex_state = 176, .external_lex_state = 19}, - [1840] = {.lex_state = 225}, - [1841] = {.lex_state = 223, .external_lex_state = 16}, - [1842] = {.lex_state = 176, .external_lex_state = 19}, - [1843] = {.lex_state = 225}, - [1844] = {.lex_state = 223, .external_lex_state = 16}, - [1845] = {.lex_state = 225}, - [1846] = {.lex_state = 223, .external_lex_state = 16}, - [1847] = {.lex_state = 223, .external_lex_state = 16}, - [1848] = {.lex_state = 176, .external_lex_state = 19}, - [1849] = {.lex_state = 223, .external_lex_state = 16}, - [1850] = {.lex_state = 236, .external_lex_state = 13}, - [1851] = {.lex_state = 236, .external_lex_state = 13}, - [1852] = {.lex_state = 205, .external_lex_state = 24}, - [1853] = {.lex_state = 205, .external_lex_state = 24}, - [1854] = {.lex_state = 205, .external_lex_state = 16}, - [1855] = {.lex_state = 223, .external_lex_state = 16}, - [1856] = {.lex_state = 236, .external_lex_state = 13}, - [1857] = {.lex_state = 221, .external_lex_state = 16}, - [1858] = {.lex_state = 236, .external_lex_state = 13}, - [1859] = {.lex_state = 225}, - [1860] = {.lex_state = 223, .external_lex_state = 16}, - [1861] = {.lex_state = 236, .external_lex_state = 13}, - [1862] = {.lex_state = 225}, - [1863] = {.lex_state = 223, .external_lex_state = 16}, - [1864] = {.lex_state = 225}, - [1865] = {.lex_state = 223, .external_lex_state = 16}, - [1866] = {.lex_state = 223, .external_lex_state = 16}, - [1867] = {.lex_state = 236, .external_lex_state = 13}, - [1868] = {.lex_state = 223, .external_lex_state = 16}, - [1869] = {.lex_state = 125, .external_lex_state = 21}, - [1870] = {.lex_state = 125, .external_lex_state = 21}, - [1871] = {.lex_state = 125, .external_lex_state = 21}, - [1872] = {.lex_state = 223, .external_lex_state = 16}, - [1873] = {.lex_state = 205, .external_lex_state = 24}, - [1874] = {.lex_state = 205, .external_lex_state = 24}, - [1875] = {.lex_state = 205, .external_lex_state = 16}, - [1876] = {.lex_state = 223, .external_lex_state = 16}, - [1877] = {.lex_state = 125, .external_lex_state = 21}, - [1878] = {.lex_state = 223, .external_lex_state = 16}, - [1879] = {.lex_state = 125, .external_lex_state = 21}, - [1880] = {.lex_state = 223, .external_lex_state = 16}, - [1881] = {.lex_state = 125, .external_lex_state = 21}, - [1882] = {.lex_state = 223, .external_lex_state = 16}, - [1883] = {.lex_state = 125, .external_lex_state = 21}, - [1884] = {.lex_state = 223, .external_lex_state = 16}, - [1885] = {.lex_state = 56, .external_lex_state = 2}, - [1886] = {.lex_state = 127, .external_lex_state = 4}, - [1887] = {.lex_state = 242, .external_lex_state = 13}, - [1888] = {.lex_state = 242, .external_lex_state = 13}, - [1889] = {.lex_state = 242}, - [1890] = {.lex_state = 62}, - [1891] = {.lex_state = 56, .external_lex_state = 2}, - [1892] = {.lex_state = 72}, - [1893] = {.lex_state = 72}, - [1894] = {.lex_state = 74, .external_lex_state = 2}, - [1895] = {.lex_state = 76}, - [1896] = {.lex_state = 76}, - [1897] = {.lex_state = 82, .external_lex_state = 3}, - [1898] = {.lex_state = 82, .external_lex_state = 4}, - [1899] = {.lex_state = 87, .external_lex_state = 5}, - [1900] = {.lex_state = 87, .external_lex_state = 5}, - [1901] = {.lex_state = 106, .external_lex_state = 5}, - [1902] = {.lex_state = 127, .external_lex_state = 4}, - [1903] = {.lex_state = 87, .external_lex_state = 7}, - [1904] = {.lex_state = 110, .external_lex_state = 8}, - [1905] = {.lex_state = 62}, - [1906] = {.lex_state = 173, .external_lex_state = 2}, - [1907] = {.lex_state = 72, .external_lex_state = 2}, - [1908] = {.lex_state = 173, .external_lex_state = 2}, - [1909] = {.lex_state = 242}, - [1910] = {.lex_state = 242, .external_lex_state = 13}, - [1911] = {.lex_state = 72}, - [1912] = {.lex_state = 127, .external_lex_state = 4}, - [1913] = {.lex_state = 110, .external_lex_state = 8}, - [1914] = {.lex_state = 173, .external_lex_state = 2}, - [1915] = {.lex_state = 173, .external_lex_state = 2}, - [1916] = {.lex_state = 127, .external_lex_state = 4}, - [1917] = {.lex_state = 242, .external_lex_state = 13}, - [1918] = {.lex_state = 242, .external_lex_state = 13}, - [1919] = {.lex_state = 242}, - [1920] = {.lex_state = 72}, - [1921] = {.lex_state = 127, .external_lex_state = 4}, - [1922] = {.lex_state = 72}, - [1923] = {.lex_state = 116, .external_lex_state = 10}, - [1924] = {.lex_state = 116, .external_lex_state = 10}, - [1925] = {.lex_state = 116, .external_lex_state = 10}, - [1926] = {.lex_state = 116, .external_lex_state = 10}, - [1927] = {.lex_state = 223, .external_lex_state = 16}, - [1928] = {.lex_state = 116, .external_lex_state = 10}, - [1929] = {.lex_state = 223, .external_lex_state = 16}, - [1930] = {.lex_state = 116, .external_lex_state = 10}, - [1931] = {.lex_state = 223, .external_lex_state = 16}, - [1932] = {.lex_state = 116, .external_lex_state = 10}, - [1933] = {.lex_state = 116, .external_lex_state = 10}, - [1934] = {.lex_state = 245, .external_lex_state = 10}, - [1935] = {.lex_state = 127, .external_lex_state = 10}, - [1936] = {.lex_state = 127, .external_lex_state = 10}, - [1937] = {.lex_state = 127, .external_lex_state = 10}, - [1938] = {.lex_state = 209, .external_lex_state = 27}, - [1939] = {.lex_state = 209, .external_lex_state = 27}, - [1940] = {.lex_state = 209, .external_lex_state = 27}, - [1941] = {.lex_state = 129, .external_lex_state = 11}, - [1942] = {.lex_state = 129, .external_lex_state = 11}, - [1943] = {.lex_state = 129, .external_lex_state = 11}, - [1944] = {.lex_state = 129, .external_lex_state = 11}, - [1945] = {.lex_state = 223, .external_lex_state = 16}, - [1946] = {.lex_state = 129, .external_lex_state = 11}, - [1947] = {.lex_state = 223, .external_lex_state = 16}, - [1948] = {.lex_state = 129, .external_lex_state = 11}, - [1949] = {.lex_state = 223, .external_lex_state = 16}, - [1950] = {.lex_state = 129, .external_lex_state = 11}, - [1951] = {.lex_state = 129, .external_lex_state = 11}, - [1952] = {.lex_state = 234, .external_lex_state = 27}, - [1953] = {.lex_state = 199, .external_lex_state = 27}, - [1954] = {.lex_state = 234, .external_lex_state = 27}, - [1955] = {.lex_state = 145}, - [1956] = {.lex_state = 221, .external_lex_state = 16}, - [1957] = {.lex_state = 234, .external_lex_state = 27}, - [1958] = {.lex_state = 225}, - [1959] = {.lex_state = 223, .external_lex_state = 16}, - [1960] = {.lex_state = 62}, - [1961] = {.lex_state = 151, .external_lex_state = 16}, - [1962] = {.lex_state = 151, .external_lex_state = 16}, - [1963] = {.lex_state = 151, .external_lex_state = 16}, - [1964] = {.lex_state = 234, .external_lex_state = 27}, - [1965] = {.lex_state = 225}, - [1966] = {.lex_state = 223, .external_lex_state = 16}, - [1967] = {.lex_state = 234, .external_lex_state = 27}, - [1968] = {.lex_state = 225}, - [1969] = {.lex_state = 223, .external_lex_state = 16}, - [1970] = {.lex_state = 234, .external_lex_state = 27}, - [1971] = {.lex_state = 234, .external_lex_state = 27}, - [1972] = {.lex_state = 218, .external_lex_state = 13}, - [1973] = {.lex_state = 218, .external_lex_state = 13}, - [1974] = {.lex_state = 218, .external_lex_state = 13}, - [1975] = {.lex_state = 218, .external_lex_state = 13}, - [1976] = {.lex_state = 223, .external_lex_state = 16}, - [1977] = {.lex_state = 218, .external_lex_state = 13}, - [1978] = {.lex_state = 223, .external_lex_state = 16}, - [1979] = {.lex_state = 218, .external_lex_state = 13}, - [1980] = {.lex_state = 223, .external_lex_state = 16}, - [1981] = {.lex_state = 218, .external_lex_state = 13}, - [1982] = {.lex_state = 218, .external_lex_state = 13}, - [1983] = {.lex_state = 121, .external_lex_state = 14}, - [1984] = {.lex_state = 121, .external_lex_state = 14}, - [1985] = {.lex_state = 121, .external_lex_state = 14}, - [1986] = {.lex_state = 121, .external_lex_state = 14}, - [1987] = {.lex_state = 223, .external_lex_state = 16}, - [1988] = {.lex_state = 121, .external_lex_state = 14}, - [1989] = {.lex_state = 223, .external_lex_state = 16}, - [1990] = {.lex_state = 121, .external_lex_state = 14}, - [1991] = {.lex_state = 223, .external_lex_state = 16}, - [1992] = {.lex_state = 121, .external_lex_state = 14}, - [1993] = {.lex_state = 121, .external_lex_state = 14}, - [1994] = {.lex_state = 121, .external_lex_state = 10}, - [1995] = {.lex_state = 121, .external_lex_state = 10}, - [1996] = {.lex_state = 121, .external_lex_state = 10}, - [1997] = {.lex_state = 121, .external_lex_state = 10}, - [1998] = {.lex_state = 223, .external_lex_state = 16}, - [1999] = {.lex_state = 121, .external_lex_state = 10}, - [2000] = {.lex_state = 223, .external_lex_state = 16}, - [2001] = {.lex_state = 121, .external_lex_state = 10}, - [2002] = {.lex_state = 223, .external_lex_state = 16}, - [2003] = {.lex_state = 121, .external_lex_state = 10}, - [2004] = {.lex_state = 121, .external_lex_state = 10}, - [2005] = {.lex_state = 163, .external_lex_state = 15}, - [2006] = {.lex_state = 163, .external_lex_state = 15}, - [2007] = {.lex_state = 163, .external_lex_state = 15}, - [2008] = {.lex_state = 163, .external_lex_state = 15}, - [2009] = {.lex_state = 223, .external_lex_state = 16}, - [2010] = {.lex_state = 163, .external_lex_state = 15}, - [2011] = {.lex_state = 223, .external_lex_state = 16}, - [2012] = {.lex_state = 163, .external_lex_state = 15}, - [2013] = {.lex_state = 223, .external_lex_state = 16}, - [2014] = {.lex_state = 163, .external_lex_state = 15}, - [2015] = {.lex_state = 163, .external_lex_state = 15}, - [2016] = {.lex_state = 90, .external_lex_state = 13}, - [2017] = {.lex_state = 90, .external_lex_state = 13}, - [2018] = {.lex_state = 90, .external_lex_state = 13}, - [2019] = {.lex_state = 90, .external_lex_state = 13}, - [2020] = {.lex_state = 223, .external_lex_state = 16}, - [2021] = {.lex_state = 90, .external_lex_state = 13}, - [2022] = {.lex_state = 223, .external_lex_state = 16}, - [2023] = {.lex_state = 90, .external_lex_state = 13}, - [2024] = {.lex_state = 223, .external_lex_state = 16}, - [2025] = {.lex_state = 90, .external_lex_state = 13}, - [2026] = {.lex_state = 90, .external_lex_state = 13}, - [2027] = {.lex_state = 151, .external_lex_state = 16}, - [2028] = {.lex_state = 151, .external_lex_state = 16}, - [2029] = {.lex_state = 205, .external_lex_state = 24}, - [2030] = {.lex_state = 205, .external_lex_state = 24}, - [2031] = {.lex_state = 205, .external_lex_state = 24}, - [2032] = {.lex_state = 205, .external_lex_state = 24}, - [2033] = {.lex_state = 205, .external_lex_state = 16}, - [2034] = {.lex_state = 223, .external_lex_state = 16}, - [2035] = {.lex_state = 205, .external_lex_state = 24}, - [2036] = {.lex_state = 221, .external_lex_state = 16}, - [2037] = {.lex_state = 205, .external_lex_state = 24}, - [2038] = {.lex_state = 225}, - [2039] = {.lex_state = 223, .external_lex_state = 16}, - [2040] = {.lex_state = 205, .external_lex_state = 24}, - [2041] = {.lex_state = 225}, - [2042] = {.lex_state = 223, .external_lex_state = 16}, - [2043] = {.lex_state = 225}, - [2044] = {.lex_state = 223, .external_lex_state = 16}, - [2045] = {.lex_state = 223, .external_lex_state = 16}, - [2046] = {.lex_state = 205, .external_lex_state = 24}, - [2047] = {.lex_state = 223, .external_lex_state = 16}, - [2048] = {.lex_state = 223, .external_lex_state = 24}, - [2049] = {.lex_state = 223, .external_lex_state = 24}, - [2050] = {.lex_state = 223, .external_lex_state = 24}, - [2051] = {.lex_state = 223, .external_lex_state = 16}, - [2052] = {.lex_state = 205, .external_lex_state = 24}, - [2053] = {.lex_state = 205, .external_lex_state = 24}, - [2054] = {.lex_state = 205, .external_lex_state = 16}, - [2055] = {.lex_state = 223, .external_lex_state = 16}, - [2056] = {.lex_state = 223, .external_lex_state = 24}, - [2057] = {.lex_state = 223, .external_lex_state = 16}, - [2058] = {.lex_state = 223, .external_lex_state = 24}, - [2059] = {.lex_state = 223, .external_lex_state = 16}, - [2060] = {.lex_state = 223, .external_lex_state = 24}, - [2061] = {.lex_state = 223, .external_lex_state = 16}, - [2062] = {.lex_state = 223, .external_lex_state = 24}, - [2063] = {.lex_state = 223, .external_lex_state = 16}, - [2064] = {.lex_state = 112, .external_lex_state = 5}, - [2065] = {.lex_state = 112, .external_lex_state = 5}, - [2066] = {.lex_state = 112, .external_lex_state = 5}, - [2067] = {.lex_state = 68}, - [2068] = {.lex_state = 68}, - [2069] = {.lex_state = 68}, - [2070] = {.lex_state = 72}, - [2071] = {.lex_state = 68}, - [2072] = {.lex_state = 72}, - [2073] = {.lex_state = 68}, - [2074] = {.lex_state = 72}, - [2075] = {.lex_state = 68}, - [2076] = {.lex_state = 72}, - [2077] = {.lex_state = 68}, - [2078] = {.lex_state = 72}, - [2079] = {.lex_state = 68}, - [2080] = {.lex_state = 163, .external_lex_state = 13}, - [2081] = {.lex_state = 163, .external_lex_state = 13}, - [2082] = {.lex_state = 68}, - [2083] = {.lex_state = 163, .external_lex_state = 13}, - [2084] = {.lex_state = 230, .external_lex_state = 28}, - [2085] = {.lex_state = 230, .external_lex_state = 28}, - [2086] = {.lex_state = 240, .external_lex_state = 26}, - [2087] = {.lex_state = 72}, - [2088] = {.lex_state = 230, .external_lex_state = 28}, - [2089] = {.lex_state = 240, .external_lex_state = 28}, - [2090] = {.lex_state = 145}, - [2091] = {.lex_state = 90}, - [2092] = {.lex_state = 240, .external_lex_state = 28}, - [2093] = {.lex_state = 240, .external_lex_state = 28}, - [2094] = {.lex_state = 240, .external_lex_state = 28}, - [2095] = {.lex_state = 62}, - [2096] = {.lex_state = 151, .external_lex_state = 16}, - [2097] = {.lex_state = 154, .external_lex_state = 6}, - [2098] = {.lex_state = 151, .external_lex_state = 16}, - [2099] = {.lex_state = 151, .external_lex_state = 16}, - [2100] = {.lex_state = 68}, - [2101] = {.lex_state = 163, .external_lex_state = 2}, - [2102] = {.lex_state = 68}, - [2103] = {.lex_state = 171, .external_lex_state = 2}, - [2104] = {.lex_state = 68}, - [2105] = {.lex_state = 163, .external_lex_state = 2}, - [2106] = {.lex_state = 156, .external_lex_state = 6}, - [2107] = {.lex_state = 156, .external_lex_state = 25}, - [2108] = {.lex_state = 156, .external_lex_state = 25}, - [2109] = {.lex_state = 156, .external_lex_state = 25}, - [2110] = {.lex_state = 223, .external_lex_state = 16}, - [2111] = {.lex_state = 205, .external_lex_state = 24}, - [2112] = {.lex_state = 205, .external_lex_state = 24}, - [2113] = {.lex_state = 205, .external_lex_state = 16}, - [2114] = {.lex_state = 223, .external_lex_state = 16}, - [2115] = {.lex_state = 156, .external_lex_state = 25}, - [2116] = {.lex_state = 223, .external_lex_state = 16}, - [2117] = {.lex_state = 156, .external_lex_state = 25}, - [2118] = {.lex_state = 223, .external_lex_state = 16}, - [2119] = {.lex_state = 156, .external_lex_state = 25}, - [2120] = {.lex_state = 223, .external_lex_state = 16}, - [2121] = {.lex_state = 156, .external_lex_state = 25}, - [2122] = {.lex_state = 223, .external_lex_state = 16}, - [2123] = {.lex_state = 156, .external_lex_state = 13}, - [2124] = {.lex_state = 156, .external_lex_state = 13}, - [2125] = {.lex_state = 156, .external_lex_state = 13}, - [2126] = {.lex_state = 223, .external_lex_state = 16}, - [2127] = {.lex_state = 205, .external_lex_state = 24}, - [2128] = {.lex_state = 205, .external_lex_state = 24}, - [2129] = {.lex_state = 205, .external_lex_state = 16}, - [2130] = {.lex_state = 223, .external_lex_state = 16}, - [2131] = {.lex_state = 156, .external_lex_state = 13}, - [2132] = {.lex_state = 223, .external_lex_state = 16}, - [2133] = {.lex_state = 156, .external_lex_state = 13}, - [2134] = {.lex_state = 223, .external_lex_state = 16}, - [2135] = {.lex_state = 156, .external_lex_state = 13}, - [2136] = {.lex_state = 223, .external_lex_state = 16}, - [2137] = {.lex_state = 156, .external_lex_state = 13}, - [2138] = {.lex_state = 223, .external_lex_state = 16}, - [2139] = {.lex_state = 158, .external_lex_state = 17}, - [2140] = {.lex_state = 158, .external_lex_state = 17}, - [2141] = {.lex_state = 158, .external_lex_state = 17}, - [2142] = {.lex_state = 158, .external_lex_state = 17}, - [2143] = {.lex_state = 223, .external_lex_state = 16}, - [2144] = {.lex_state = 158, .external_lex_state = 17}, - [2145] = {.lex_state = 223, .external_lex_state = 16}, - [2146] = {.lex_state = 158, .external_lex_state = 17}, - [2147] = {.lex_state = 223, .external_lex_state = 16}, - [2148] = {.lex_state = 158, .external_lex_state = 17}, - [2149] = {.lex_state = 158, .external_lex_state = 17}, - [2150] = {.lex_state = 171, .external_lex_state = 13}, - [2151] = {.lex_state = 171, .external_lex_state = 13}, - [2152] = {.lex_state = 171, .external_lex_state = 13}, - [2153] = {.lex_state = 232, .external_lex_state = 28}, - [2154] = {.lex_state = 232, .external_lex_state = 28}, - [2155] = {.lex_state = 232, .external_lex_state = 28}, - [2156] = {.lex_state = 176, .external_lex_state = 19}, - [2157] = {.lex_state = 176, .external_lex_state = 19}, - [2158] = {.lex_state = 176, .external_lex_state = 19}, - [2159] = {.lex_state = 223, .external_lex_state = 16}, - [2160] = {.lex_state = 205, .external_lex_state = 24}, - [2161] = {.lex_state = 205, .external_lex_state = 24}, - [2162] = {.lex_state = 205, .external_lex_state = 16}, - [2163] = {.lex_state = 223, .external_lex_state = 16}, - [2164] = {.lex_state = 176, .external_lex_state = 19}, - [2165] = {.lex_state = 223, .external_lex_state = 16}, - [2166] = {.lex_state = 176, .external_lex_state = 19}, - [2167] = {.lex_state = 223, .external_lex_state = 16}, - [2168] = {.lex_state = 176, .external_lex_state = 19}, - [2169] = {.lex_state = 223, .external_lex_state = 16}, - [2170] = {.lex_state = 176, .external_lex_state = 19}, - [2171] = {.lex_state = 223, .external_lex_state = 16}, - [2172] = {.lex_state = 236, .external_lex_state = 13}, - [2173] = {.lex_state = 236, .external_lex_state = 13}, - [2174] = {.lex_state = 236, .external_lex_state = 13}, - [2175] = {.lex_state = 223, .external_lex_state = 16}, - [2176] = {.lex_state = 205, .external_lex_state = 24}, - [2177] = {.lex_state = 205, .external_lex_state = 24}, - [2178] = {.lex_state = 205, .external_lex_state = 16}, - [2179] = {.lex_state = 223, .external_lex_state = 16}, - [2180] = {.lex_state = 236, .external_lex_state = 13}, - [2181] = {.lex_state = 223, .external_lex_state = 16}, - [2182] = {.lex_state = 236, .external_lex_state = 13}, - [2183] = {.lex_state = 223, .external_lex_state = 16}, - [2184] = {.lex_state = 236, .external_lex_state = 13}, - [2185] = {.lex_state = 223, .external_lex_state = 16}, - [2186] = {.lex_state = 236, .external_lex_state = 13}, - [2187] = {.lex_state = 223, .external_lex_state = 16}, - [2188] = {.lex_state = 125, .external_lex_state = 21}, - [2189] = {.lex_state = 125, .external_lex_state = 21}, - [2190] = {.lex_state = 125, .external_lex_state = 21}, - [2191] = {.lex_state = 125, .external_lex_state = 21}, - [2192] = {.lex_state = 223, .external_lex_state = 16}, - [2193] = {.lex_state = 125, .external_lex_state = 21}, - [2194] = {.lex_state = 223, .external_lex_state = 16}, - [2195] = {.lex_state = 125, .external_lex_state = 21}, - [2196] = {.lex_state = 223, .external_lex_state = 16}, - [2197] = {.lex_state = 125, .external_lex_state = 21}, - [2198] = {.lex_state = 125, .external_lex_state = 21}, - [2199] = {.lex_state = 114, .external_lex_state = 9}, - [2200] = {.lex_state = 72}, - [2201] = {.lex_state = 119}, - [2202] = {.lex_state = 129, .external_lex_state = 12}, - [2203] = {.lex_state = 141}, - [2204] = {.lex_state = 62}, - [2205] = {.lex_state = 82, .external_lex_state = 14}, - [2206] = {.lex_state = 90}, - [2207] = {.lex_state = 97}, - [2208] = {.lex_state = 82, .external_lex_state = 14}, - [2209] = {.lex_state = 97, .external_lex_state = 6}, - [2210] = {.lex_state = 56, .external_lex_state = 2}, - [2211] = {.lex_state = 56, .external_lex_state = 2}, - [2212] = {.lex_state = 56, .external_lex_state = 2}, - [2213] = {.lex_state = 82, .external_lex_state = 3}, - [2214] = {.lex_state = 62}, - [2215] = {.lex_state = 82, .external_lex_state = 3}, - [2216] = {.lex_state = 82, .external_lex_state = 10}, - [2217] = {.lex_state = 90}, - [2218] = {.lex_state = 97}, - [2219] = {.lex_state = 82, .external_lex_state = 10}, - [2220] = {.lex_state = 97, .external_lex_state = 6}, - [2221] = {.lex_state = 56, .external_lex_state = 2}, - [2222] = {.lex_state = 56, .external_lex_state = 2}, - [2223] = {.lex_state = 56, .external_lex_state = 2}, - [2224] = {.lex_state = 82, .external_lex_state = 4}, - [2225] = {.lex_state = 82, .external_lex_state = 4}, - [2226] = {.lex_state = 87, .external_lex_state = 5}, - [2227] = {.lex_state = 68}, - [2228] = {.lex_state = 56, .external_lex_state = 2}, - [2229] = {.lex_state = 173, .external_lex_state = 2}, - [2230] = {.lex_state = 56, .external_lex_state = 2}, - [2231] = {.lex_state = 56}, - [2232] = {.lex_state = 179}, - [2233] = {.lex_state = 72}, - [2234] = {.lex_state = 72}, - [2235] = {.lex_state = 87, .external_lex_state = 5}, - [2236] = {.lex_state = 87, .external_lex_state = 5}, - [2237] = {.lex_state = 247, .external_lex_state = 7}, - [2238] = {.lex_state = 87, .external_lex_state = 7}, - [2239] = {.lex_state = 72}, - [2240] = {.lex_state = 127, .external_lex_state = 4}, - [2241] = {.lex_state = 110, .external_lex_state = 8}, - [2242] = {.lex_state = 173, .external_lex_state = 2}, - [2243] = {.lex_state = 87, .external_lex_state = 7}, - [2244] = {.lex_state = 173, .external_lex_state = 2}, - [2245] = {.lex_state = 173, .external_lex_state = 2}, - [2246] = {.lex_state = 72}, - [2247] = {.lex_state = 127, .external_lex_state = 4}, - [2248] = {.lex_state = 110, .external_lex_state = 8}, - [2249] = {.lex_state = 173, .external_lex_state = 2}, - [2250] = {.lex_state = 173, .external_lex_state = 2}, - [2251] = {.lex_state = 242}, - [2252] = {.lex_state = 173, .external_lex_state = 2}, - [2253] = {.lex_state = 242}, - [2254] = {.lex_state = 127, .external_lex_state = 4}, - [2255] = {.lex_state = 127, .external_lex_state = 4}, - [2256] = {.lex_state = 116, .external_lex_state = 10}, - [2257] = {.lex_state = 116, .external_lex_state = 10}, - [2258] = {.lex_state = 116, .external_lex_state = 10}, - [2259] = {.lex_state = 127, .external_lex_state = 10}, - [2260] = {.lex_state = 209, .external_lex_state = 27}, - [2261] = {.lex_state = 129, .external_lex_state = 11}, - [2262] = {.lex_state = 129, .external_lex_state = 11}, - [2263] = {.lex_state = 129, .external_lex_state = 11}, - [2264] = {.lex_state = 234, .external_lex_state = 27}, - [2265] = {.lex_state = 234, .external_lex_state = 27}, - [2266] = {.lex_state = 205, .external_lex_state = 24}, - [2267] = {.lex_state = 205, .external_lex_state = 24}, - [2268] = {.lex_state = 205, .external_lex_state = 16}, - [2269] = {.lex_state = 223, .external_lex_state = 16}, - [2270] = {.lex_state = 234, .external_lex_state = 27}, - [2271] = {.lex_state = 221, .external_lex_state = 16}, - [2272] = {.lex_state = 234, .external_lex_state = 27}, - [2273] = {.lex_state = 225}, - [2274] = {.lex_state = 223, .external_lex_state = 16}, - [2275] = {.lex_state = 234, .external_lex_state = 27}, - [2276] = {.lex_state = 225}, - [2277] = {.lex_state = 223, .external_lex_state = 16}, - [2278] = {.lex_state = 225}, - [2279] = {.lex_state = 223, .external_lex_state = 16}, - [2280] = {.lex_state = 223, .external_lex_state = 16}, - [2281] = {.lex_state = 234, .external_lex_state = 27}, - [2282] = {.lex_state = 223, .external_lex_state = 16}, - [2283] = {.lex_state = 218, .external_lex_state = 13}, - [2284] = {.lex_state = 218, .external_lex_state = 13}, - [2285] = {.lex_state = 218, .external_lex_state = 13}, - [2286] = {.lex_state = 121, .external_lex_state = 14}, - [2287] = {.lex_state = 121, .external_lex_state = 14}, - [2288] = {.lex_state = 121, .external_lex_state = 14}, - [2289] = {.lex_state = 121, .external_lex_state = 10}, - [2290] = {.lex_state = 121, .external_lex_state = 10}, - [2291] = {.lex_state = 121, .external_lex_state = 10}, - [2292] = {.lex_state = 163, .external_lex_state = 15}, - [2293] = {.lex_state = 163, .external_lex_state = 15}, - [2294] = {.lex_state = 163, .external_lex_state = 15}, - [2295] = {.lex_state = 90, .external_lex_state = 13}, - [2296] = {.lex_state = 90, .external_lex_state = 13}, - [2297] = {.lex_state = 90, .external_lex_state = 13}, - [2298] = {.lex_state = 205, .external_lex_state = 24}, - [2299] = {.lex_state = 205, .external_lex_state = 24}, - [2300] = {.lex_state = 205, .external_lex_state = 24}, - [2301] = {.lex_state = 223, .external_lex_state = 16}, - [2302] = {.lex_state = 205, .external_lex_state = 24}, - [2303] = {.lex_state = 205, .external_lex_state = 24}, - [2304] = {.lex_state = 205, .external_lex_state = 16}, - [2305] = {.lex_state = 223, .external_lex_state = 16}, - [2306] = {.lex_state = 205, .external_lex_state = 24}, - [2307] = {.lex_state = 223, .external_lex_state = 16}, - [2308] = {.lex_state = 205, .external_lex_state = 24}, - [2309] = {.lex_state = 223, .external_lex_state = 16}, - [2310] = {.lex_state = 205, .external_lex_state = 24}, - [2311] = {.lex_state = 223, .external_lex_state = 16}, - [2312] = {.lex_state = 205, .external_lex_state = 24}, - [2313] = {.lex_state = 223, .external_lex_state = 16}, - [2314] = {.lex_state = 223, .external_lex_state = 24}, - [2315] = {.lex_state = 223, .external_lex_state = 24}, - [2316] = {.lex_state = 223, .external_lex_state = 24}, - [2317] = {.lex_state = 223, .external_lex_state = 24}, - [2318] = {.lex_state = 223, .external_lex_state = 16}, - [2319] = {.lex_state = 223, .external_lex_state = 24}, - [2320] = {.lex_state = 223, .external_lex_state = 16}, - [2321] = {.lex_state = 223, .external_lex_state = 24}, - [2322] = {.lex_state = 223, .external_lex_state = 16}, - [2323] = {.lex_state = 223, .external_lex_state = 24}, - [2324] = {.lex_state = 223, .external_lex_state = 24}, - [2325] = {.lex_state = 68}, - [2326] = {.lex_state = 68}, - [2327] = {.lex_state = 72}, - [2328] = {.lex_state = 68}, - [2329] = {.lex_state = 72}, - [2330] = {.lex_state = 163, .external_lex_state = 13}, - [2331] = {.lex_state = 240, .external_lex_state = 28}, - [2332] = {.lex_state = 230, .external_lex_state = 28}, - [2333] = {.lex_state = 240, .external_lex_state = 28}, - [2334] = {.lex_state = 145}, - [2335] = {.lex_state = 221, .external_lex_state = 16}, - [2336] = {.lex_state = 240, .external_lex_state = 28}, - [2337] = {.lex_state = 225}, - [2338] = {.lex_state = 223, .external_lex_state = 16}, - [2339] = {.lex_state = 62}, - [2340] = {.lex_state = 151, .external_lex_state = 16}, - [2341] = {.lex_state = 151, .external_lex_state = 16}, - [2342] = {.lex_state = 151, .external_lex_state = 16}, - [2343] = {.lex_state = 240, .external_lex_state = 28}, - [2344] = {.lex_state = 225}, - [2345] = {.lex_state = 223, .external_lex_state = 16}, - [2346] = {.lex_state = 240, .external_lex_state = 28}, - [2347] = {.lex_state = 225}, - [2348] = {.lex_state = 223, .external_lex_state = 16}, - [2349] = {.lex_state = 240, .external_lex_state = 28}, - [2350] = {.lex_state = 240, .external_lex_state = 28}, - [2351] = {.lex_state = 156, .external_lex_state = 25}, - [2352] = {.lex_state = 156, .external_lex_state = 25}, - [2353] = {.lex_state = 156, .external_lex_state = 25}, - [2354] = {.lex_state = 156, .external_lex_state = 25}, - [2355] = {.lex_state = 223, .external_lex_state = 16}, - [2356] = {.lex_state = 156, .external_lex_state = 25}, - [2357] = {.lex_state = 223, .external_lex_state = 16}, - [2358] = {.lex_state = 156, .external_lex_state = 25}, - [2359] = {.lex_state = 223, .external_lex_state = 16}, - [2360] = {.lex_state = 156, .external_lex_state = 25}, - [2361] = {.lex_state = 156, .external_lex_state = 25}, - [2362] = {.lex_state = 156, .external_lex_state = 13}, - [2363] = {.lex_state = 156, .external_lex_state = 13}, - [2364] = {.lex_state = 156, .external_lex_state = 13}, - [2365] = {.lex_state = 156, .external_lex_state = 13}, - [2366] = {.lex_state = 223, .external_lex_state = 16}, - [2367] = {.lex_state = 156, .external_lex_state = 13}, - [2368] = {.lex_state = 223, .external_lex_state = 16}, - [2369] = {.lex_state = 156, .external_lex_state = 13}, - [2370] = {.lex_state = 223, .external_lex_state = 16}, - [2371] = {.lex_state = 156, .external_lex_state = 13}, - [2372] = {.lex_state = 156, .external_lex_state = 13}, - [2373] = {.lex_state = 158, .external_lex_state = 17}, - [2374] = {.lex_state = 158, .external_lex_state = 17}, - [2375] = {.lex_state = 158, .external_lex_state = 17}, - [2376] = {.lex_state = 171, .external_lex_state = 13}, - [2377] = {.lex_state = 232, .external_lex_state = 28}, - [2378] = {.lex_state = 176, .external_lex_state = 19}, - [2379] = {.lex_state = 176, .external_lex_state = 19}, - [2380] = {.lex_state = 176, .external_lex_state = 19}, - [2381] = {.lex_state = 176, .external_lex_state = 19}, - [2382] = {.lex_state = 223, .external_lex_state = 16}, - [2383] = {.lex_state = 176, .external_lex_state = 19}, - [2384] = {.lex_state = 223, .external_lex_state = 16}, - [2385] = {.lex_state = 176, .external_lex_state = 19}, - [2386] = {.lex_state = 223, .external_lex_state = 16}, - [2387] = {.lex_state = 176, .external_lex_state = 19}, - [2388] = {.lex_state = 176, .external_lex_state = 19}, - [2389] = {.lex_state = 236, .external_lex_state = 13}, - [2390] = {.lex_state = 236, .external_lex_state = 13}, - [2391] = {.lex_state = 236, .external_lex_state = 13}, - [2392] = {.lex_state = 236, .external_lex_state = 13}, - [2393] = {.lex_state = 223, .external_lex_state = 16}, - [2394] = {.lex_state = 236, .external_lex_state = 13}, - [2395] = {.lex_state = 223, .external_lex_state = 16}, - [2396] = {.lex_state = 236, .external_lex_state = 13}, - [2397] = {.lex_state = 223, .external_lex_state = 16}, - [2398] = {.lex_state = 236, .external_lex_state = 13}, - [2399] = {.lex_state = 236, .external_lex_state = 13}, - [2400] = {.lex_state = 125, .external_lex_state = 21}, - [2401] = {.lex_state = 125, .external_lex_state = 21}, - [2402] = {.lex_state = 125, .external_lex_state = 21}, - [2403] = {.lex_state = 110, .external_lex_state = 21}, - [2404] = {.lex_state = 110, .external_lex_state = 21}, - [2405] = {.lex_state = 247, .external_lex_state = 7}, - [2406] = {.lex_state = 68}, - [2407] = {.lex_state = 110, .external_lex_state = 23}, - [2408] = {.lex_state = 234, .external_lex_state = 23}, - [2409] = {.lex_state = 114, .external_lex_state = 9}, - [2410] = {.lex_state = 72}, - [2411] = {.lex_state = 82, .external_lex_state = 14}, - [2412] = {.lex_state = 82, .external_lex_state = 14}, - [2413] = {.lex_state = 145}, - [2414] = {.lex_state = 90}, - [2415] = {.lex_state = 82, .external_lex_state = 14}, - [2416] = {.lex_state = 82, .external_lex_state = 14}, - [2417] = {.lex_state = 82, .external_lex_state = 14}, - [2418] = {.lex_state = 62}, - [2419] = {.lex_state = 151, .external_lex_state = 16}, - [2420] = {.lex_state = 154, .external_lex_state = 6}, - [2421] = {.lex_state = 151, .external_lex_state = 16}, - [2422] = {.lex_state = 151, .external_lex_state = 16}, - [2423] = {.lex_state = 68}, - [2424] = {.lex_state = 163, .external_lex_state = 2}, - [2425] = {.lex_state = 68}, - [2426] = {.lex_state = 171, .external_lex_state = 2}, - [2427] = {.lex_state = 68}, - [2428] = {.lex_state = 163, .external_lex_state = 2}, - [2429] = {.lex_state = 82, .external_lex_state = 3}, - [2430] = {.lex_state = 72}, - [2431] = {.lex_state = 82, .external_lex_state = 10}, - [2432] = {.lex_state = 82, .external_lex_state = 10}, - [2433] = {.lex_state = 145}, - [2434] = {.lex_state = 90}, - [2435] = {.lex_state = 82, .external_lex_state = 10}, - [2436] = {.lex_state = 82, .external_lex_state = 10}, - [2437] = {.lex_state = 82, .external_lex_state = 10}, - [2438] = {.lex_state = 62}, - [2439] = {.lex_state = 151, .external_lex_state = 16}, - [2440] = {.lex_state = 154, .external_lex_state = 6}, - [2441] = {.lex_state = 151, .external_lex_state = 16}, - [2442] = {.lex_state = 151, .external_lex_state = 16}, - [2443] = {.lex_state = 68}, - [2444] = {.lex_state = 163, .external_lex_state = 2}, - [2445] = {.lex_state = 68}, - [2446] = {.lex_state = 171, .external_lex_state = 2}, - [2447] = {.lex_state = 68}, - [2448] = {.lex_state = 163, .external_lex_state = 2}, - [2449] = {.lex_state = 82, .external_lex_state = 4}, - [2450] = {.lex_state = 87, .external_lex_state = 5}, - [2451] = {.lex_state = 119}, - [2452] = {.lex_state = 127, .external_lex_state = 4}, - [2453] = {.lex_state = 110, .external_lex_state = 8}, - [2454] = {.lex_state = 72}, - [2455] = {.lex_state = 87, .external_lex_state = 5}, - [2456] = {.lex_state = 87, .external_lex_state = 5}, - [2457] = {.lex_state = 247, .external_lex_state = 5}, - [2458] = {.lex_state = 247, .external_lex_state = 5}, - [2459] = {.lex_state = 247, .external_lex_state = 5}, - [2460] = {.lex_state = 247, .external_lex_state = 5}, - [2461] = {.lex_state = 247, .external_lex_state = 7}, - [2462] = {.lex_state = 247, .external_lex_state = 7}, - [2463] = {.lex_state = 87, .external_lex_state = 7}, - [2464] = {.lex_state = 173, .external_lex_state = 2}, - [2465] = {.lex_state = 87, .external_lex_state = 7}, - [2466] = {.lex_state = 72}, - [2467] = {.lex_state = 127, .external_lex_state = 4}, - [2468] = {.lex_state = 110, .external_lex_state = 8}, - [2469] = {.lex_state = 173, .external_lex_state = 2}, - [2470] = {.lex_state = 72}, - [2471] = {.lex_state = 127, .external_lex_state = 4}, - [2472] = {.lex_state = 110, .external_lex_state = 8}, - [2473] = {.lex_state = 72}, - [2474] = {.lex_state = 82, .external_lex_state = 4}, - [2475] = {.lex_state = 110, .external_lex_state = 8}, - [2476] = {.lex_state = 173, .external_lex_state = 2}, - [2477] = {.lex_state = 173, .external_lex_state = 2}, - [2478] = {.lex_state = 72}, - [2479] = {.lex_state = 82, .external_lex_state = 4}, - [2480] = {.lex_state = 110, .external_lex_state = 8}, - [2481] = {.lex_state = 173, .external_lex_state = 2}, - [2482] = {.lex_state = 173, .external_lex_state = 2}, - [2483] = {.lex_state = 234, .external_lex_state = 27}, - [2484] = {.lex_state = 234, .external_lex_state = 27}, - [2485] = {.lex_state = 234, .external_lex_state = 27}, - [2486] = {.lex_state = 223, .external_lex_state = 16}, - [2487] = {.lex_state = 205, .external_lex_state = 24}, - [2488] = {.lex_state = 205, .external_lex_state = 24}, - [2489] = {.lex_state = 205, .external_lex_state = 16}, - [2490] = {.lex_state = 223, .external_lex_state = 16}, - [2491] = {.lex_state = 234, .external_lex_state = 27}, - [2492] = {.lex_state = 223, .external_lex_state = 16}, - [2493] = {.lex_state = 234, .external_lex_state = 27}, - [2494] = {.lex_state = 223, .external_lex_state = 16}, - [2495] = {.lex_state = 234, .external_lex_state = 27}, - [2496] = {.lex_state = 223, .external_lex_state = 16}, - [2497] = {.lex_state = 234, .external_lex_state = 27}, - [2498] = {.lex_state = 223, .external_lex_state = 16}, - [2499] = {.lex_state = 205, .external_lex_state = 24}, - [2500] = {.lex_state = 205, .external_lex_state = 24}, - [2501] = {.lex_state = 205, .external_lex_state = 24}, - [2502] = {.lex_state = 205, .external_lex_state = 24}, - [2503] = {.lex_state = 223, .external_lex_state = 16}, - [2504] = {.lex_state = 205, .external_lex_state = 24}, - [2505] = {.lex_state = 223, .external_lex_state = 16}, - [2506] = {.lex_state = 205, .external_lex_state = 24}, - [2507] = {.lex_state = 223, .external_lex_state = 16}, - [2508] = {.lex_state = 205, .external_lex_state = 24}, - [2509] = {.lex_state = 205, .external_lex_state = 24}, - [2510] = {.lex_state = 223, .external_lex_state = 24}, - [2511] = {.lex_state = 223, .external_lex_state = 24}, - [2512] = {.lex_state = 223, .external_lex_state = 24}, - [2513] = {.lex_state = 68}, - [2514] = {.lex_state = 68}, - [2515] = {.lex_state = 240, .external_lex_state = 28}, - [2516] = {.lex_state = 240, .external_lex_state = 28}, - [2517] = {.lex_state = 205, .external_lex_state = 24}, - [2518] = {.lex_state = 205, .external_lex_state = 24}, - [2519] = {.lex_state = 205, .external_lex_state = 16}, - [2520] = {.lex_state = 223, .external_lex_state = 16}, - [2521] = {.lex_state = 240, .external_lex_state = 28}, - [2522] = {.lex_state = 221, .external_lex_state = 16}, - [2523] = {.lex_state = 240, .external_lex_state = 28}, - [2524] = {.lex_state = 225}, - [2525] = {.lex_state = 223, .external_lex_state = 16}, - [2526] = {.lex_state = 240, .external_lex_state = 28}, - [2527] = {.lex_state = 225}, - [2528] = {.lex_state = 223, .external_lex_state = 16}, - [2529] = {.lex_state = 225}, - [2530] = {.lex_state = 223, .external_lex_state = 16}, - [2531] = {.lex_state = 223, .external_lex_state = 16}, - [2532] = {.lex_state = 240, .external_lex_state = 28}, - [2533] = {.lex_state = 223, .external_lex_state = 16}, - [2534] = {.lex_state = 156, .external_lex_state = 25}, - [2535] = {.lex_state = 156, .external_lex_state = 25}, - [2536] = {.lex_state = 156, .external_lex_state = 25}, - [2537] = {.lex_state = 156, .external_lex_state = 13}, - [2538] = {.lex_state = 156, .external_lex_state = 13}, - [2539] = {.lex_state = 156, .external_lex_state = 13}, - [2540] = {.lex_state = 176, .external_lex_state = 19}, - [2541] = {.lex_state = 176, .external_lex_state = 19}, - [2542] = {.lex_state = 176, .external_lex_state = 19}, - [2543] = {.lex_state = 236, .external_lex_state = 13}, - [2544] = {.lex_state = 236, .external_lex_state = 13}, - [2545] = {.lex_state = 236, .external_lex_state = 13}, - [2546] = {.lex_state = 110, .external_lex_state = 21}, - [2547] = {.lex_state = 247, .external_lex_state = 7}, - [2548] = {.lex_state = 119}, - [2549] = {.lex_state = 56}, - [2550] = {.lex_state = 72}, - [2551] = {.lex_state = 56}, - [2552] = {.lex_state = 72}, - [2553] = {.lex_state = 72}, - [2554] = {.lex_state = 234, .external_lex_state = 23}, - [2555] = {.lex_state = 82, .external_lex_state = 3}, - [2556] = {.lex_state = 163}, - [2557] = {.lex_state = 82, .external_lex_state = 14}, - [2558] = {.lex_state = 82, .external_lex_state = 14}, - [2559] = {.lex_state = 82, .external_lex_state = 14}, - [2560] = {.lex_state = 82, .external_lex_state = 14}, - [2561] = {.lex_state = 82, .external_lex_state = 14}, - [2562] = {.lex_state = 145}, - [2563] = {.lex_state = 221, .external_lex_state = 16}, - [2564] = {.lex_state = 82, .external_lex_state = 14}, - [2565] = {.lex_state = 225}, - [2566] = {.lex_state = 223, .external_lex_state = 16}, - [2567] = {.lex_state = 62}, - [2568] = {.lex_state = 151, .external_lex_state = 16}, - [2569] = {.lex_state = 151, .external_lex_state = 16}, - [2570] = {.lex_state = 151, .external_lex_state = 16}, - [2571] = {.lex_state = 82, .external_lex_state = 14}, - [2572] = {.lex_state = 225}, - [2573] = {.lex_state = 223, .external_lex_state = 16}, - [2574] = {.lex_state = 82, .external_lex_state = 14}, - [2575] = {.lex_state = 225}, - [2576] = {.lex_state = 223, .external_lex_state = 16}, - [2577] = {.lex_state = 82, .external_lex_state = 14}, - [2578] = {.lex_state = 82, .external_lex_state = 14}, - [2579] = {.lex_state = 82, .external_lex_state = 10}, - [2580] = {.lex_state = 82, .external_lex_state = 10}, - [2581] = {.lex_state = 82, .external_lex_state = 10}, - [2582] = {.lex_state = 145}, - [2583] = {.lex_state = 221, .external_lex_state = 16}, - [2584] = {.lex_state = 82, .external_lex_state = 10}, - [2585] = {.lex_state = 225}, - [2586] = {.lex_state = 223, .external_lex_state = 16}, - [2587] = {.lex_state = 62}, - [2588] = {.lex_state = 151, .external_lex_state = 16}, - [2589] = {.lex_state = 151, .external_lex_state = 16}, - [2590] = {.lex_state = 151, .external_lex_state = 16}, - [2591] = {.lex_state = 82, .external_lex_state = 10}, - [2592] = {.lex_state = 225}, - [2593] = {.lex_state = 223, .external_lex_state = 16}, - [2594] = {.lex_state = 82, .external_lex_state = 10}, - [2595] = {.lex_state = 225}, - [2596] = {.lex_state = 223, .external_lex_state = 16}, - [2597] = {.lex_state = 82, .external_lex_state = 10}, - [2598] = {.lex_state = 82, .external_lex_state = 10}, - [2599] = {.lex_state = 110, .external_lex_state = 23}, - [2600] = {.lex_state = 247, .external_lex_state = 5}, - [2601] = {.lex_state = 247, .external_lex_state = 5}, - [2602] = {.lex_state = 247, .external_lex_state = 5}, - [2603] = {.lex_state = 247, .external_lex_state = 7}, - [2604] = {.lex_state = 173, .external_lex_state = 2}, - [2605] = {.lex_state = 173, .external_lex_state = 2}, - [2606] = {.lex_state = 173, .external_lex_state = 2}, - [2607] = {.lex_state = 72}, - [2608] = {.lex_state = 82, .external_lex_state = 4}, - [2609] = {.lex_state = 110, .external_lex_state = 8}, - [2610] = {.lex_state = 173, .external_lex_state = 2}, - [2611] = {.lex_state = 173, .external_lex_state = 2}, - [2612] = {.lex_state = 173, .external_lex_state = 2}, - [2613] = {.lex_state = 72}, - [2614] = {.lex_state = 82, .external_lex_state = 4}, - [2615] = {.lex_state = 110, .external_lex_state = 8}, - [2616] = {.lex_state = 173, .external_lex_state = 2}, - [2617] = {.lex_state = 234, .external_lex_state = 27}, - [2618] = {.lex_state = 234, .external_lex_state = 27}, - [2619] = {.lex_state = 234, .external_lex_state = 27}, - [2620] = {.lex_state = 234, .external_lex_state = 27}, - [2621] = {.lex_state = 223, .external_lex_state = 16}, - [2622] = {.lex_state = 234, .external_lex_state = 27}, - [2623] = {.lex_state = 223, .external_lex_state = 16}, - [2624] = {.lex_state = 234, .external_lex_state = 27}, - [2625] = {.lex_state = 223, .external_lex_state = 16}, - [2626] = {.lex_state = 234, .external_lex_state = 27}, - [2627] = {.lex_state = 234, .external_lex_state = 27}, - [2628] = {.lex_state = 205, .external_lex_state = 24}, - [2629] = {.lex_state = 205, .external_lex_state = 24}, - [2630] = {.lex_state = 205, .external_lex_state = 24}, - [2631] = {.lex_state = 240, .external_lex_state = 28}, - [2632] = {.lex_state = 240, .external_lex_state = 28}, - [2633] = {.lex_state = 240, .external_lex_state = 28}, - [2634] = {.lex_state = 223, .external_lex_state = 16}, - [2635] = {.lex_state = 205, .external_lex_state = 24}, - [2636] = {.lex_state = 205, .external_lex_state = 24}, - [2637] = {.lex_state = 205, .external_lex_state = 16}, - [2638] = {.lex_state = 223, .external_lex_state = 16}, - [2639] = {.lex_state = 240, .external_lex_state = 28}, - [2640] = {.lex_state = 223, .external_lex_state = 16}, - [2641] = {.lex_state = 240, .external_lex_state = 28}, - [2642] = {.lex_state = 223, .external_lex_state = 16}, - [2643] = {.lex_state = 240, .external_lex_state = 28}, - [2644] = {.lex_state = 223, .external_lex_state = 16}, - [2645] = {.lex_state = 240, .external_lex_state = 28}, - [2646] = {.lex_state = 223, .external_lex_state = 16}, - [2647] = {.lex_state = 110, .external_lex_state = 21}, - [2648] = {.lex_state = 110, .external_lex_state = 23}, - [2649] = {.lex_state = 72}, - [2650] = {.lex_state = 245, .external_lex_state = 10}, - [2651] = {.lex_state = 90}, - [2652] = {.lex_state = 97}, - [2653] = {.lex_state = 245, .external_lex_state = 10}, - [2654] = {.lex_state = 97, .external_lex_state = 6}, - [2655] = {.lex_state = 56, .external_lex_state = 2}, - [2656] = {.lex_state = 56, .external_lex_state = 2}, - [2657] = {.lex_state = 56, .external_lex_state = 2}, - [2658] = {.lex_state = 72}, - [2659] = {.lex_state = 247, .external_lex_state = 27}, - [2660] = {.lex_state = 247, .external_lex_state = 27}, - [2661] = {.lex_state = 247, .external_lex_state = 27}, - [2662] = {.lex_state = 247, .external_lex_state = 27}, - [2663] = {.lex_state = 234, .external_lex_state = 23}, - [2664] = {.lex_state = 82, .external_lex_state = 3}, - [2665] = {.lex_state = 163}, - [2666] = {.lex_state = 82, .external_lex_state = 14}, - [2667] = {.lex_state = 82, .external_lex_state = 14}, - [2668] = {.lex_state = 205, .external_lex_state = 24}, - [2669] = {.lex_state = 205, .external_lex_state = 24}, - [2670] = {.lex_state = 205, .external_lex_state = 16}, - [2671] = {.lex_state = 223, .external_lex_state = 16}, - [2672] = {.lex_state = 82, .external_lex_state = 14}, - [2673] = {.lex_state = 221, .external_lex_state = 16}, - [2674] = {.lex_state = 82, .external_lex_state = 14}, - [2675] = {.lex_state = 225}, - [2676] = {.lex_state = 223, .external_lex_state = 16}, - [2677] = {.lex_state = 82, .external_lex_state = 14}, - [2678] = {.lex_state = 225}, - [2679] = {.lex_state = 223, .external_lex_state = 16}, - [2680] = {.lex_state = 225}, - [2681] = {.lex_state = 223, .external_lex_state = 16}, - [2682] = {.lex_state = 223, .external_lex_state = 16}, - [2683] = {.lex_state = 82, .external_lex_state = 14}, - [2684] = {.lex_state = 223, .external_lex_state = 16}, - [2685] = {.lex_state = 82, .external_lex_state = 10}, - [2686] = {.lex_state = 82, .external_lex_state = 10}, - [2687] = {.lex_state = 205, .external_lex_state = 24}, - [2688] = {.lex_state = 205, .external_lex_state = 24}, - [2689] = {.lex_state = 205, .external_lex_state = 16}, - [2690] = {.lex_state = 223, .external_lex_state = 16}, - [2691] = {.lex_state = 82, .external_lex_state = 10}, - [2692] = {.lex_state = 221, .external_lex_state = 16}, - [2693] = {.lex_state = 82, .external_lex_state = 10}, - [2694] = {.lex_state = 225}, - [2695] = {.lex_state = 223, .external_lex_state = 16}, - [2696] = {.lex_state = 82, .external_lex_state = 10}, - [2697] = {.lex_state = 225}, - [2698] = {.lex_state = 223, .external_lex_state = 16}, - [2699] = {.lex_state = 225}, - [2700] = {.lex_state = 223, .external_lex_state = 16}, - [2701] = {.lex_state = 223, .external_lex_state = 16}, - [2702] = {.lex_state = 82, .external_lex_state = 10}, - [2703] = {.lex_state = 223, .external_lex_state = 16}, - [2704] = {.lex_state = 247, .external_lex_state = 5}, - [2705] = {.lex_state = 173, .external_lex_state = 2}, - [2706] = {.lex_state = 72}, - [2707] = {.lex_state = 82, .external_lex_state = 4}, - [2708] = {.lex_state = 110, .external_lex_state = 8}, - [2709] = {.lex_state = 173, .external_lex_state = 2}, - [2710] = {.lex_state = 72}, - [2711] = {.lex_state = 82, .external_lex_state = 4}, - [2712] = {.lex_state = 110, .external_lex_state = 8}, - [2713] = {.lex_state = 234, .external_lex_state = 27}, - [2714] = {.lex_state = 234, .external_lex_state = 27}, - [2715] = {.lex_state = 234, .external_lex_state = 27}, - [2716] = {.lex_state = 240, .external_lex_state = 28}, - [2717] = {.lex_state = 240, .external_lex_state = 28}, - [2718] = {.lex_state = 240, .external_lex_state = 28}, - [2719] = {.lex_state = 240, .external_lex_state = 28}, - [2720] = {.lex_state = 223, .external_lex_state = 16}, - [2721] = {.lex_state = 240, .external_lex_state = 28}, - [2722] = {.lex_state = 223, .external_lex_state = 16}, - [2723] = {.lex_state = 240, .external_lex_state = 28}, - [2724] = {.lex_state = 223, .external_lex_state = 16}, - [2725] = {.lex_state = 240, .external_lex_state = 28}, - [2726] = {.lex_state = 240, .external_lex_state = 28}, - [2727] = {.lex_state = 245, .external_lex_state = 10}, - [2728] = {.lex_state = 245, .external_lex_state = 10}, - [2729] = {.lex_state = 72}, - [2730] = {.lex_state = 245, .external_lex_state = 10}, - [2731] = {.lex_state = 245, .external_lex_state = 10}, - [2732] = {.lex_state = 145}, - [2733] = {.lex_state = 90}, - [2734] = {.lex_state = 245, .external_lex_state = 10}, - [2735] = {.lex_state = 245, .external_lex_state = 10}, - [2736] = {.lex_state = 245, .external_lex_state = 10}, - [2737] = {.lex_state = 62}, - [2738] = {.lex_state = 151, .external_lex_state = 16}, - [2739] = {.lex_state = 154, .external_lex_state = 6}, - [2740] = {.lex_state = 151, .external_lex_state = 16}, - [2741] = {.lex_state = 151, .external_lex_state = 16}, - [2742] = {.lex_state = 68}, - [2743] = {.lex_state = 163, .external_lex_state = 2}, - [2744] = {.lex_state = 68}, - [2745] = {.lex_state = 171, .external_lex_state = 2}, - [2746] = {.lex_state = 68}, - [2747] = {.lex_state = 163, .external_lex_state = 2}, - [2748] = {.lex_state = 247, .external_lex_state = 27}, - [2749] = {.lex_state = 247, .external_lex_state = 27}, - [2750] = {.lex_state = 247, .external_lex_state = 27}, - [2751] = {.lex_state = 82, .external_lex_state = 3}, - [2752] = {.lex_state = 82, .external_lex_state = 14}, - [2753] = {.lex_state = 82, .external_lex_state = 14}, - [2754] = {.lex_state = 82, .external_lex_state = 14}, - [2755] = {.lex_state = 223, .external_lex_state = 16}, - [2756] = {.lex_state = 205, .external_lex_state = 24}, - [2757] = {.lex_state = 205, .external_lex_state = 24}, - [2758] = {.lex_state = 205, .external_lex_state = 16}, - [2759] = {.lex_state = 223, .external_lex_state = 16}, - [2760] = {.lex_state = 82, .external_lex_state = 14}, - [2761] = {.lex_state = 223, .external_lex_state = 16}, - [2762] = {.lex_state = 82, .external_lex_state = 14}, - [2763] = {.lex_state = 223, .external_lex_state = 16}, - [2764] = {.lex_state = 82, .external_lex_state = 14}, - [2765] = {.lex_state = 223, .external_lex_state = 16}, - [2766] = {.lex_state = 82, .external_lex_state = 14}, - [2767] = {.lex_state = 223, .external_lex_state = 16}, - [2768] = {.lex_state = 82, .external_lex_state = 10}, - [2769] = {.lex_state = 82, .external_lex_state = 10}, - [2770] = {.lex_state = 82, .external_lex_state = 10}, - [2771] = {.lex_state = 223, .external_lex_state = 16}, - [2772] = {.lex_state = 205, .external_lex_state = 24}, - [2773] = {.lex_state = 205, .external_lex_state = 24}, - [2774] = {.lex_state = 205, .external_lex_state = 16}, - [2775] = {.lex_state = 223, .external_lex_state = 16}, - [2776] = {.lex_state = 82, .external_lex_state = 10}, - [2777] = {.lex_state = 223, .external_lex_state = 16}, - [2778] = {.lex_state = 82, .external_lex_state = 10}, - [2779] = {.lex_state = 223, .external_lex_state = 16}, - [2780] = {.lex_state = 82, .external_lex_state = 10}, - [2781] = {.lex_state = 223, .external_lex_state = 16}, - [2782] = {.lex_state = 82, .external_lex_state = 10}, - [2783] = {.lex_state = 223, .external_lex_state = 16}, - [2784] = {.lex_state = 173, .external_lex_state = 2}, - [2785] = {.lex_state = 173, .external_lex_state = 2}, - [2786] = {.lex_state = 240, .external_lex_state = 28}, - [2787] = {.lex_state = 240, .external_lex_state = 28}, - [2788] = {.lex_state = 240, .external_lex_state = 28}, - [2789] = {.lex_state = 245, .external_lex_state = 10}, - [2790] = {.lex_state = 245, .external_lex_state = 10}, - [2791] = {.lex_state = 245, .external_lex_state = 10}, - [2792] = {.lex_state = 145}, - [2793] = {.lex_state = 221, .external_lex_state = 16}, - [2794] = {.lex_state = 245, .external_lex_state = 10}, - [2795] = {.lex_state = 225}, - [2796] = {.lex_state = 223, .external_lex_state = 16}, - [2797] = {.lex_state = 62}, - [2798] = {.lex_state = 151, .external_lex_state = 16}, - [2799] = {.lex_state = 151, .external_lex_state = 16}, - [2800] = {.lex_state = 151, .external_lex_state = 16}, - [2801] = {.lex_state = 245, .external_lex_state = 10}, - [2802] = {.lex_state = 225}, - [2803] = {.lex_state = 223, .external_lex_state = 16}, - [2804] = {.lex_state = 245, .external_lex_state = 10}, - [2805] = {.lex_state = 225}, - [2806] = {.lex_state = 223, .external_lex_state = 16}, - [2807] = {.lex_state = 245, .external_lex_state = 10}, - [2808] = {.lex_state = 245, .external_lex_state = 10}, - [2809] = {.lex_state = 247, .external_lex_state = 27}, - [2810] = {.lex_state = 82, .external_lex_state = 14}, - [2811] = {.lex_state = 82, .external_lex_state = 14}, - [2812] = {.lex_state = 82, .external_lex_state = 14}, - [2813] = {.lex_state = 82, .external_lex_state = 14}, - [2814] = {.lex_state = 223, .external_lex_state = 16}, - [2815] = {.lex_state = 82, .external_lex_state = 14}, - [2816] = {.lex_state = 223, .external_lex_state = 16}, - [2817] = {.lex_state = 82, .external_lex_state = 14}, - [2818] = {.lex_state = 223, .external_lex_state = 16}, - [2819] = {.lex_state = 82, .external_lex_state = 14}, - [2820] = {.lex_state = 82, .external_lex_state = 14}, - [2821] = {.lex_state = 82, .external_lex_state = 10}, - [2822] = {.lex_state = 82, .external_lex_state = 10}, - [2823] = {.lex_state = 82, .external_lex_state = 10}, - [2824] = {.lex_state = 82, .external_lex_state = 10}, - [2825] = {.lex_state = 223, .external_lex_state = 16}, - [2826] = {.lex_state = 82, .external_lex_state = 10}, - [2827] = {.lex_state = 223, .external_lex_state = 16}, - [2828] = {.lex_state = 82, .external_lex_state = 10}, - [2829] = {.lex_state = 223, .external_lex_state = 16}, - [2830] = {.lex_state = 82, .external_lex_state = 10}, - [2831] = {.lex_state = 82, .external_lex_state = 10}, - [2832] = {.lex_state = 245, .external_lex_state = 10}, - [2833] = {.lex_state = 245, .external_lex_state = 10}, - [2834] = {.lex_state = 205, .external_lex_state = 24}, - [2835] = {.lex_state = 205, .external_lex_state = 24}, - [2836] = {.lex_state = 205, .external_lex_state = 16}, - [2837] = {.lex_state = 223, .external_lex_state = 16}, - [2838] = {.lex_state = 245, .external_lex_state = 10}, - [2839] = {.lex_state = 221, .external_lex_state = 16}, - [2840] = {.lex_state = 245, .external_lex_state = 10}, - [2841] = {.lex_state = 225}, - [2842] = {.lex_state = 223, .external_lex_state = 16}, - [2843] = {.lex_state = 245, .external_lex_state = 10}, - [2844] = {.lex_state = 225}, - [2845] = {.lex_state = 223, .external_lex_state = 16}, - [2846] = {.lex_state = 225}, - [2847] = {.lex_state = 223, .external_lex_state = 16}, - [2848] = {.lex_state = 223, .external_lex_state = 16}, - [2849] = {.lex_state = 245, .external_lex_state = 10}, - [2850] = {.lex_state = 223, .external_lex_state = 16}, - [2851] = {.lex_state = 82, .external_lex_state = 14}, - [2852] = {.lex_state = 82, .external_lex_state = 14}, - [2853] = {.lex_state = 82, .external_lex_state = 14}, - [2854] = {.lex_state = 82, .external_lex_state = 10}, - [2855] = {.lex_state = 82, .external_lex_state = 10}, - [2856] = {.lex_state = 82, .external_lex_state = 10}, - [2857] = {.lex_state = 245, .external_lex_state = 10}, - [2858] = {.lex_state = 245, .external_lex_state = 10}, - [2859] = {.lex_state = 245, .external_lex_state = 10}, - [2860] = {.lex_state = 223, .external_lex_state = 16}, - [2861] = {.lex_state = 205, .external_lex_state = 24}, - [2862] = {.lex_state = 205, .external_lex_state = 24}, - [2863] = {.lex_state = 205, .external_lex_state = 16}, - [2864] = {.lex_state = 223, .external_lex_state = 16}, - [2865] = {.lex_state = 245, .external_lex_state = 10}, - [2866] = {.lex_state = 223, .external_lex_state = 16}, - [2867] = {.lex_state = 245, .external_lex_state = 10}, - [2868] = {.lex_state = 223, .external_lex_state = 16}, - [2869] = {.lex_state = 245, .external_lex_state = 10}, - [2870] = {.lex_state = 223, .external_lex_state = 16}, - [2871] = {.lex_state = 245, .external_lex_state = 10}, - [2872] = {.lex_state = 223, .external_lex_state = 16}, - [2873] = {.lex_state = 245, .external_lex_state = 10}, - [2874] = {.lex_state = 245, .external_lex_state = 10}, - [2875] = {.lex_state = 245, .external_lex_state = 10}, - [2876] = {.lex_state = 245, .external_lex_state = 10}, - [2877] = {.lex_state = 223, .external_lex_state = 16}, - [2878] = {.lex_state = 245, .external_lex_state = 10}, - [2879] = {.lex_state = 223, .external_lex_state = 16}, - [2880] = {.lex_state = 245, .external_lex_state = 10}, - [2881] = {.lex_state = 223, .external_lex_state = 16}, - [2882] = {.lex_state = 245, .external_lex_state = 10}, - [2883] = {.lex_state = 245, .external_lex_state = 10}, - [2884] = {.lex_state = 245, .external_lex_state = 10}, - [2885] = {.lex_state = 245, .external_lex_state = 10}, - [2886] = {.lex_state = 245, .external_lex_state = 10}, + [867] = {.lex_state = 213, .external_lex_state = 16}, + [868] = {.lex_state = 73}, + [869] = {.lex_state = 234, .external_lex_state = 24}, + [870] = {.lex_state = 234, .external_lex_state = 24}, + [871] = {.lex_state = 151}, + [872] = {.lex_state = 91}, + [873] = {.lex_state = 234, .external_lex_state = 24}, + [874] = {.lex_state = 234, .external_lex_state = 24}, + [875] = {.lex_state = 234, .external_lex_state = 24}, + [876] = {.lex_state = 62}, + [877] = {.lex_state = 157, .external_lex_state = 16}, + [878] = {.lex_state = 160, .external_lex_state = 6}, + [879] = {.lex_state = 157, .external_lex_state = 16}, + [880] = {.lex_state = 157, .external_lex_state = 16}, + [881] = {.lex_state = 234, .external_lex_state = 16}, + [882] = {.lex_state = 162}, + [883] = {.lex_state = 169, .external_lex_state = 2}, + [884] = {.lex_state = 162}, + [885] = {.lex_state = 177, .external_lex_state = 2}, + [886] = {.lex_state = 162}, + [887] = {.lex_state = 169, .external_lex_state = 2}, + [888] = {.lex_state = 115, .external_lex_state = 5}, + [889] = {.lex_state = 234, .external_lex_state = 16}, + [890] = {.lex_state = 232, .external_lex_state = 16}, + [891] = {.lex_state = 115, .external_lex_state = 5}, + [892] = {.lex_state = 236}, + [893] = {.lex_state = 234, .external_lex_state = 16}, + [894] = {.lex_state = 115, .external_lex_state = 5}, + [895] = {.lex_state = 236}, + [896] = {.lex_state = 234, .external_lex_state = 16}, + [897] = {.lex_state = 236}, + [898] = {.lex_state = 234, .external_lex_state = 16}, + [899] = {.lex_state = 234, .external_lex_state = 16}, + [900] = {.lex_state = 115, .external_lex_state = 5}, + [901] = {.lex_state = 234, .external_lex_state = 16}, + [902] = {.lex_state = 169, .external_lex_state = 15}, + [903] = {.lex_state = 169, .external_lex_state = 15}, + [904] = {.lex_state = 119, .external_lex_state = 4}, + [905] = {.lex_state = 211, .external_lex_state = 4}, + [906] = {.lex_state = 73}, + [907] = {.lex_state = 73}, + [908] = {.lex_state = 56, .external_lex_state = 2}, + [909] = {.lex_state = 241, .external_lex_state = 18}, + [910] = {.lex_state = 56, .external_lex_state = 2}, + [911] = {.lex_state = 119, .external_lex_state = 4}, + [912] = {.lex_state = 73}, + [913] = {.lex_state = 119, .external_lex_state = 4}, + [914] = {.lex_state = 73}, + [915] = {.lex_state = 77}, + [916] = {.lex_state = 213, .external_lex_state = 22}, + [917] = {.lex_state = 263, .external_lex_state = 26}, + [918] = {.lex_state = 162}, + [919] = {.lex_state = 218, .external_lex_state = 2}, + [920] = {.lex_state = 126, .external_lex_state = 4}, + [921] = {.lex_state = 130, .external_lex_state = 8}, + [922] = {.lex_state = 241, .external_lex_state = 26}, + [923] = {.lex_state = 117, .external_lex_state = 9}, + [924] = {.lex_state = 73}, + [925] = {.lex_state = 162, .external_lex_state = 25}, + [926] = {.lex_state = 162, .external_lex_state = 25}, + [927] = {.lex_state = 151}, + [928] = {.lex_state = 91}, + [929] = {.lex_state = 162, .external_lex_state = 25}, + [930] = {.lex_state = 162, .external_lex_state = 25}, + [931] = {.lex_state = 162, .external_lex_state = 25}, + [932] = {.lex_state = 62}, + [933] = {.lex_state = 157, .external_lex_state = 16}, + [934] = {.lex_state = 160, .external_lex_state = 6}, + [935] = {.lex_state = 157, .external_lex_state = 16}, + [936] = {.lex_state = 157, .external_lex_state = 16}, + [937] = {.lex_state = 162}, + [938] = {.lex_state = 169, .external_lex_state = 2}, + [939] = {.lex_state = 162}, + [940] = {.lex_state = 177, .external_lex_state = 2}, + [941] = {.lex_state = 162}, + [942] = {.lex_state = 169, .external_lex_state = 2}, + [943] = {.lex_state = 162, .external_lex_state = 6}, + [944] = {.lex_state = 73}, + [945] = {.lex_state = 162, .external_lex_state = 13}, + [946] = {.lex_state = 162, .external_lex_state = 13}, + [947] = {.lex_state = 151}, + [948] = {.lex_state = 91}, + [949] = {.lex_state = 162, .external_lex_state = 13}, + [950] = {.lex_state = 162, .external_lex_state = 13}, + [951] = {.lex_state = 162, .external_lex_state = 13}, + [952] = {.lex_state = 62}, + [953] = {.lex_state = 157, .external_lex_state = 16}, + [954] = {.lex_state = 160, .external_lex_state = 6}, + [955] = {.lex_state = 157, .external_lex_state = 16}, + [956] = {.lex_state = 157, .external_lex_state = 16}, + [957] = {.lex_state = 162}, + [958] = {.lex_state = 169, .external_lex_state = 2}, + [959] = {.lex_state = 162}, + [960] = {.lex_state = 177, .external_lex_state = 2}, + [961] = {.lex_state = 162}, + [962] = {.lex_state = 169, .external_lex_state = 2}, + [963] = {.lex_state = 162}, + [964] = {.lex_state = 164, .external_lex_state = 17}, + [965] = {.lex_state = 164, .external_lex_state = 17}, + [966] = {.lex_state = 164, .external_lex_state = 17}, + [967] = {.lex_state = 151}, + [968] = {.lex_state = 232, .external_lex_state = 16}, + [969] = {.lex_state = 164, .external_lex_state = 17}, + [970] = {.lex_state = 236}, + [971] = {.lex_state = 234, .external_lex_state = 16}, + [972] = {.lex_state = 62}, + [973] = {.lex_state = 157, .external_lex_state = 16}, + [974] = {.lex_state = 157, .external_lex_state = 16}, + [975] = {.lex_state = 157, .external_lex_state = 16}, + [976] = {.lex_state = 164, .external_lex_state = 17}, + [977] = {.lex_state = 236}, + [978] = {.lex_state = 234, .external_lex_state = 16}, + [979] = {.lex_state = 164, .external_lex_state = 17}, + [980] = {.lex_state = 236}, + [981] = {.lex_state = 234, .external_lex_state = 16}, + [982] = {.lex_state = 164, .external_lex_state = 17}, + [983] = {.lex_state = 164, .external_lex_state = 17}, + [984] = {.lex_state = 124}, + [985] = {.lex_state = 162}, + [986] = {.lex_state = 169, .external_lex_state = 2}, + [987] = {.lex_state = 162}, + [988] = {.lex_state = 169, .external_lex_state = 2}, + [989] = {.lex_state = 162}, + [990] = {.lex_state = 182, .external_lex_state = 19}, + [991] = {.lex_state = 73}, + [992] = {.lex_state = 164, .external_lex_state = 17}, + [993] = {.lex_state = 164, .external_lex_state = 17}, + [994] = {.lex_state = 164, .external_lex_state = 18}, + [995] = {.lex_state = 241, .external_lex_state = 17}, + [996] = {.lex_state = 241, .external_lex_state = 17}, + [997] = {.lex_state = 265, .external_lex_state = 18}, + [998] = {.lex_state = 265, .external_lex_state = 18}, + [999] = {.lex_state = 241, .external_lex_state = 17}, + [1000] = {.lex_state = 241, .external_lex_state = 17}, + [1001] = {.lex_state = 265, .external_lex_state = 18}, + [1002] = {.lex_state = 162}, + [1003] = {.lex_state = 241, .external_lex_state = 18}, + [1004] = {.lex_state = 241, .external_lex_state = 18}, + [1005] = {.lex_state = 164, .external_lex_state = 18}, + [1006] = {.lex_state = 164, .external_lex_state = 18}, + [1007] = {.lex_state = 177, .external_lex_state = 15}, + [1008] = {.lex_state = 177, .external_lex_state = 15}, + [1009] = {.lex_state = 243, .external_lex_state = 18}, + [1010] = {.lex_state = 77}, + [1011] = {.lex_state = 267, .external_lex_state = 26}, + [1012] = {.lex_state = 243, .external_lex_state = 26}, + [1013] = {.lex_state = 117, .external_lex_state = 9}, + [1014] = {.lex_state = 171, .external_lex_state = 25}, + [1015] = {.lex_state = 171, .external_lex_state = 6}, + [1016] = {.lex_state = 162, .external_lex_state = 13}, + [1017] = {.lex_state = 162}, + [1018] = {.lex_state = 173, .external_lex_state = 17}, + [1019] = {.lex_state = 124}, + [1020] = {.lex_state = 177, .external_lex_state = 2}, + [1021] = {.lex_state = 162}, + [1022] = {.lex_state = 177, .external_lex_state = 2}, + [1023] = {.lex_state = 73}, + [1024] = {.lex_state = 173, .external_lex_state = 17}, + [1025] = {.lex_state = 173, .external_lex_state = 17}, + [1026] = {.lex_state = 243, .external_lex_state = 17}, + [1027] = {.lex_state = 243, .external_lex_state = 17}, + [1028] = {.lex_state = 243, .external_lex_state = 17}, + [1029] = {.lex_state = 243, .external_lex_state = 17}, + [1030] = {.lex_state = 243, .external_lex_state = 18}, + [1031] = {.lex_state = 243, .external_lex_state = 18}, + [1032] = {.lex_state = 173, .external_lex_state = 18}, + [1033] = {.lex_state = 173, .external_lex_state = 18}, + [1034] = {.lex_state = 215, .external_lex_state = 23}, + [1035] = {.lex_state = 182, .external_lex_state = 19}, + [1036] = {.lex_state = 182, .external_lex_state = 19}, + [1037] = {.lex_state = 62}, + [1038] = {.lex_state = 157, .external_lex_state = 16}, + [1039] = {.lex_state = 160, .external_lex_state = 6}, + [1040] = {.lex_state = 157, .external_lex_state = 16}, + [1041] = {.lex_state = 157, .external_lex_state = 16}, + [1042] = {.lex_state = 132, .external_lex_state = 4}, + [1043] = {.lex_state = 182, .external_lex_state = 19}, + [1044] = {.lex_state = 205, .external_lex_state = 5}, + [1045] = {.lex_state = 205, .external_lex_state = 5}, + [1046] = {.lex_state = 245, .external_lex_state = 7}, + [1047] = {.lex_state = 205, .external_lex_state = 5}, + [1048] = {.lex_state = 132, .external_lex_state = 4}, + [1049] = {.lex_state = 205, .external_lex_state = 7}, + [1050] = {.lex_state = 62, .external_lex_state = 13}, + [1051] = {.lex_state = 62}, + [1052] = {.lex_state = 209, .external_lex_state = 11}, + [1053] = {.lex_state = 62, .external_lex_state = 13}, + [1054] = {.lex_state = 62}, + [1055] = {.lex_state = 73}, + [1056] = {.lex_state = 247, .external_lex_state = 13}, + [1057] = {.lex_state = 247, .external_lex_state = 13}, + [1058] = {.lex_state = 151}, + [1059] = {.lex_state = 91}, + [1060] = {.lex_state = 247, .external_lex_state = 13}, + [1061] = {.lex_state = 247, .external_lex_state = 13}, + [1062] = {.lex_state = 247, .external_lex_state = 13}, + [1063] = {.lex_state = 62}, + [1064] = {.lex_state = 157, .external_lex_state = 16}, + [1065] = {.lex_state = 160, .external_lex_state = 6}, + [1066] = {.lex_state = 157, .external_lex_state = 16}, + [1067] = {.lex_state = 157, .external_lex_state = 16}, + [1068] = {.lex_state = 162}, + [1069] = {.lex_state = 169, .external_lex_state = 2}, + [1070] = {.lex_state = 162}, + [1071] = {.lex_state = 177, .external_lex_state = 2}, + [1072] = {.lex_state = 162}, + [1073] = {.lex_state = 169, .external_lex_state = 2}, + [1074] = {.lex_state = 130, .external_lex_state = 8}, + [1075] = {.lex_state = 169}, + [1076] = {.lex_state = 130, .external_lex_state = 21}, + [1077] = {.lex_state = 113, .external_lex_state = 21}, + [1078] = {.lex_state = 130, .external_lex_state = 21}, + [1079] = {.lex_state = 151}, + [1080] = {.lex_state = 232, .external_lex_state = 16}, + [1081] = {.lex_state = 130, .external_lex_state = 21}, + [1082] = {.lex_state = 236}, + [1083] = {.lex_state = 234, .external_lex_state = 16}, + [1084] = {.lex_state = 62}, + [1085] = {.lex_state = 157, .external_lex_state = 16}, + [1086] = {.lex_state = 157, .external_lex_state = 16}, + [1087] = {.lex_state = 157, .external_lex_state = 16}, + [1088] = {.lex_state = 130, .external_lex_state = 21}, + [1089] = {.lex_state = 236}, + [1090] = {.lex_state = 234, .external_lex_state = 16}, + [1091] = {.lex_state = 130, .external_lex_state = 21}, + [1092] = {.lex_state = 236}, + [1093] = {.lex_state = 234, .external_lex_state = 16}, + [1094] = {.lex_state = 130, .external_lex_state = 21}, + [1095] = {.lex_state = 130, .external_lex_state = 21}, + [1096] = {.lex_state = 269}, + [1097] = {.lex_state = 77}, + [1098] = {.lex_state = 77}, + [1099] = {.lex_state = 271, .external_lex_state = 13}, + [1100] = {.lex_state = 91}, + [1101] = {.lex_state = 98}, + [1102] = {.lex_state = 271, .external_lex_state = 13}, + [1103] = {.lex_state = 107, .external_lex_state = 6}, + [1104] = {.lex_state = 56, .external_lex_state = 2}, + [1105] = {.lex_state = 56, .external_lex_state = 2}, + [1106] = {.lex_state = 56, .external_lex_state = 2}, + [1107] = {.lex_state = 271}, + [1108] = {.lex_state = 249}, + [1109] = {.lex_state = 211, .external_lex_state = 4}, + [1110] = {.lex_state = 253, .external_lex_state = 10}, + [1111] = {.lex_state = 211, .external_lex_state = 10}, + [1112] = {.lex_state = 253, .external_lex_state = 10}, + [1113] = {.lex_state = 151}, + [1114] = {.lex_state = 232, .external_lex_state = 16}, + [1115] = {.lex_state = 253, .external_lex_state = 10}, + [1116] = {.lex_state = 236}, + [1117] = {.lex_state = 234, .external_lex_state = 16}, + [1118] = {.lex_state = 62}, + [1119] = {.lex_state = 157, .external_lex_state = 16}, + [1120] = {.lex_state = 157, .external_lex_state = 16}, + [1121] = {.lex_state = 157, .external_lex_state = 16}, + [1122] = {.lex_state = 253, .external_lex_state = 10}, + [1123] = {.lex_state = 236}, + [1124] = {.lex_state = 234, .external_lex_state = 16}, + [1125] = {.lex_state = 253, .external_lex_state = 10}, + [1126] = {.lex_state = 236}, + [1127] = {.lex_state = 234, .external_lex_state = 16}, + [1128] = {.lex_state = 253, .external_lex_state = 10}, + [1129] = {.lex_state = 253, .external_lex_state = 10}, + [1130] = {.lex_state = 211, .external_lex_state = 4}, + [1131] = {.lex_state = 211, .external_lex_state = 4}, + [1132] = {.lex_state = 211, .external_lex_state = 4}, + [1133] = {.lex_state = 122, .external_lex_state = 10}, + [1134] = {.lex_state = 73}, + [1135] = {.lex_state = 122, .external_lex_state = 4}, + [1136] = {.lex_state = 132, .external_lex_state = 4}, + [1137] = {.lex_state = 56, .external_lex_state = 2}, + [1138] = {.lex_state = 245, .external_lex_state = 7}, + [1139] = {.lex_state = 56, .external_lex_state = 2}, + [1140] = {.lex_state = 132, .external_lex_state = 4}, + [1141] = {.lex_state = 73}, + [1142] = {.lex_state = 56, .external_lex_state = 2}, + [1143] = {.lex_state = 132, .external_lex_state = 4}, + [1144] = {.lex_state = 73}, + [1145] = {.lex_state = 56, .external_lex_state = 2}, + [1146] = {.lex_state = 73}, + [1147] = {.lex_state = 73}, + [1148] = {.lex_state = 132, .external_lex_state = 4}, + [1149] = {.lex_state = 273, .external_lex_state = 13}, + [1150] = {.lex_state = 273, .external_lex_state = 13}, + [1151] = {.lex_state = 73}, + [1152] = {.lex_state = 73}, + [1153] = {.lex_state = 273}, + [1154] = {.lex_state = 73}, + [1155] = {.lex_state = 73}, + [1156] = {.lex_state = 122, .external_lex_state = 10}, + [1157] = {.lex_state = 132, .external_lex_state = 4}, + [1158] = {.lex_state = 73}, + [1159] = {.lex_state = 73}, + [1160] = {.lex_state = 73}, + [1161] = {.lex_state = 122, .external_lex_state = 10}, + [1162] = {.lex_state = 213, .external_lex_state = 24}, + [1163] = {.lex_state = 213, .external_lex_state = 24}, + [1164] = {.lex_state = 213, .external_lex_state = 16}, + [1165] = {.lex_state = 234, .external_lex_state = 16}, + [1166] = {.lex_state = 122, .external_lex_state = 10}, + [1167] = {.lex_state = 232, .external_lex_state = 16}, + [1168] = {.lex_state = 122, .external_lex_state = 10}, + [1169] = {.lex_state = 236}, + [1170] = {.lex_state = 234, .external_lex_state = 16}, + [1171] = {.lex_state = 122, .external_lex_state = 10}, + [1172] = {.lex_state = 236}, + [1173] = {.lex_state = 234, .external_lex_state = 16}, + [1174] = {.lex_state = 236}, + [1175] = {.lex_state = 234, .external_lex_state = 16}, + [1176] = {.lex_state = 234, .external_lex_state = 16}, + [1177] = {.lex_state = 122, .external_lex_state = 10}, + [1178] = {.lex_state = 234, .external_lex_state = 16}, + [1179] = {.lex_state = 215, .external_lex_state = 23}, + [1180] = {.lex_state = 213, .external_lex_state = 22}, + [1181] = {.lex_state = 257, .external_lex_state = 23}, + [1182] = {.lex_state = 213, .external_lex_state = 22}, + [1183] = {.lex_state = 73}, + [1184] = {.lex_state = 132, .external_lex_state = 10}, + [1185] = {.lex_state = 132, .external_lex_state = 10}, + [1186] = {.lex_state = 132, .external_lex_state = 4}, + [1187] = {.lex_state = 130, .external_lex_state = 21}, + [1188] = {.lex_state = 220, .external_lex_state = 7}, + [1189] = {.lex_state = 124}, + [1190] = {.lex_state = 56}, + [1191] = {.lex_state = 73}, + [1192] = {.lex_state = 56}, + [1193] = {.lex_state = 73}, + [1194] = {.lex_state = 73}, + [1195] = {.lex_state = 220, .external_lex_state = 23}, + [1196] = {.lex_state = 126, .external_lex_state = 14}, + [1197] = {.lex_state = 126, .external_lex_state = 14}, + [1198] = {.lex_state = 126, .external_lex_state = 14}, + [1199] = {.lex_state = 126, .external_lex_state = 10}, + [1200] = {.lex_state = 259, .external_lex_state = 23}, + [1201] = {.lex_state = 220, .external_lex_state = 5}, + [1202] = {.lex_state = 220, .external_lex_state = 5}, + [1203] = {.lex_state = 220, .external_lex_state = 5}, + [1204] = {.lex_state = 132, .external_lex_state = 4}, + [1205] = {.lex_state = 220, .external_lex_state = 7}, + [1206] = {.lex_state = 169, .external_lex_state = 2}, + [1207] = {.lex_state = 169}, + [1208] = {.lex_state = 222, .external_lex_state = 13}, + [1209] = {.lex_state = 134, .external_lex_state = 11}, + [1210] = {.lex_state = 134, .external_lex_state = 11}, + [1211] = {.lex_state = 213, .external_lex_state = 24}, + [1212] = {.lex_state = 213, .external_lex_state = 24}, + [1213] = {.lex_state = 213, .external_lex_state = 16}, + [1214] = {.lex_state = 234, .external_lex_state = 16}, + [1215] = {.lex_state = 134, .external_lex_state = 11}, + [1216] = {.lex_state = 232, .external_lex_state = 16}, + [1217] = {.lex_state = 134, .external_lex_state = 11}, + [1218] = {.lex_state = 236}, + [1219] = {.lex_state = 234, .external_lex_state = 16}, + [1220] = {.lex_state = 134, .external_lex_state = 11}, + [1221] = {.lex_state = 236}, + [1222] = {.lex_state = 234, .external_lex_state = 16}, + [1223] = {.lex_state = 236}, + [1224] = {.lex_state = 234, .external_lex_state = 16}, + [1225] = {.lex_state = 234, .external_lex_state = 16}, + [1226] = {.lex_state = 134, .external_lex_state = 11}, + [1227] = {.lex_state = 234, .external_lex_state = 16}, + [1228] = {.lex_state = 73}, + [1229] = {.lex_state = 205, .external_lex_state = 27}, + [1230] = {.lex_state = 91}, + [1231] = {.lex_state = 98}, + [1232] = {.lex_state = 205, .external_lex_state = 27}, + [1233] = {.lex_state = 107, .external_lex_state = 6}, + [1234] = {.lex_state = 56, .external_lex_state = 2}, + [1235] = {.lex_state = 56, .external_lex_state = 2}, + [1236] = {.lex_state = 56, .external_lex_state = 2}, + [1237] = {.lex_state = 245, .external_lex_state = 23}, + [1238] = {.lex_state = 245, .external_lex_state = 23}, + [1239] = {.lex_state = 205, .external_lex_state = 27}, + [1240] = {.lex_state = 205, .external_lex_state = 27}, + [1241] = {.lex_state = 245, .external_lex_state = 23}, + [1242] = {.lex_state = 205, .external_lex_state = 23}, + [1243] = {.lex_state = 229, .external_lex_state = 13}, + [1244] = {.lex_state = 229, .external_lex_state = 13}, + [1245] = {.lex_state = 213, .external_lex_state = 24}, + [1246] = {.lex_state = 213, .external_lex_state = 24}, + [1247] = {.lex_state = 213, .external_lex_state = 16}, + [1248] = {.lex_state = 234, .external_lex_state = 16}, + [1249] = {.lex_state = 229, .external_lex_state = 13}, + [1250] = {.lex_state = 232, .external_lex_state = 16}, + [1251] = {.lex_state = 229, .external_lex_state = 13}, + [1252] = {.lex_state = 236}, + [1253] = {.lex_state = 234, .external_lex_state = 16}, + [1254] = {.lex_state = 229, .external_lex_state = 13}, + [1255] = {.lex_state = 236}, + [1256] = {.lex_state = 234, .external_lex_state = 16}, + [1257] = {.lex_state = 236}, + [1258] = {.lex_state = 234, .external_lex_state = 16}, + [1259] = {.lex_state = 234, .external_lex_state = 16}, + [1260] = {.lex_state = 229, .external_lex_state = 13}, + [1261] = {.lex_state = 234, .external_lex_state = 16}, + [1262] = {.lex_state = 126, .external_lex_state = 3}, + [1263] = {.lex_state = 169}, + [1264] = {.lex_state = 126, .external_lex_state = 14}, + [1265] = {.lex_state = 126, .external_lex_state = 14}, + [1266] = {.lex_state = 213, .external_lex_state = 24}, + [1267] = {.lex_state = 213, .external_lex_state = 24}, + [1268] = {.lex_state = 213, .external_lex_state = 16}, + [1269] = {.lex_state = 234, .external_lex_state = 16}, + [1270] = {.lex_state = 126, .external_lex_state = 14}, + [1271] = {.lex_state = 232, .external_lex_state = 16}, + [1272] = {.lex_state = 126, .external_lex_state = 14}, + [1273] = {.lex_state = 236}, + [1274] = {.lex_state = 234, .external_lex_state = 16}, + [1275] = {.lex_state = 126, .external_lex_state = 14}, + [1276] = {.lex_state = 236}, + [1277] = {.lex_state = 234, .external_lex_state = 16}, + [1278] = {.lex_state = 236}, + [1279] = {.lex_state = 234, .external_lex_state = 16}, + [1280] = {.lex_state = 234, .external_lex_state = 16}, + [1281] = {.lex_state = 126, .external_lex_state = 14}, + [1282] = {.lex_state = 234, .external_lex_state = 16}, + [1283] = {.lex_state = 126, .external_lex_state = 10}, + [1284] = {.lex_state = 126, .external_lex_state = 10}, + [1285] = {.lex_state = 213, .external_lex_state = 24}, + [1286] = {.lex_state = 213, .external_lex_state = 24}, + [1287] = {.lex_state = 213, .external_lex_state = 16}, + [1288] = {.lex_state = 234, .external_lex_state = 16}, + [1289] = {.lex_state = 126, .external_lex_state = 10}, + [1290] = {.lex_state = 232, .external_lex_state = 16}, + [1291] = {.lex_state = 126, .external_lex_state = 10}, + [1292] = {.lex_state = 236}, + [1293] = {.lex_state = 234, .external_lex_state = 16}, + [1294] = {.lex_state = 126, .external_lex_state = 10}, + [1295] = {.lex_state = 236}, + [1296] = {.lex_state = 234, .external_lex_state = 16}, + [1297] = {.lex_state = 236}, + [1298] = {.lex_state = 234, .external_lex_state = 16}, + [1299] = {.lex_state = 234, .external_lex_state = 16}, + [1300] = {.lex_state = 126, .external_lex_state = 10}, + [1301] = {.lex_state = 234, .external_lex_state = 16}, + [1302] = {.lex_state = 169, .external_lex_state = 15}, + [1303] = {.lex_state = 169, .external_lex_state = 15}, + [1304] = {.lex_state = 213, .external_lex_state = 24}, + [1305] = {.lex_state = 213, .external_lex_state = 24}, + [1306] = {.lex_state = 213, .external_lex_state = 16}, + [1307] = {.lex_state = 234, .external_lex_state = 16}, + [1308] = {.lex_state = 169, .external_lex_state = 15}, + [1309] = {.lex_state = 232, .external_lex_state = 16}, + [1310] = {.lex_state = 169, .external_lex_state = 15}, + [1311] = {.lex_state = 236}, + [1312] = {.lex_state = 234, .external_lex_state = 16}, + [1313] = {.lex_state = 169, .external_lex_state = 15}, + [1314] = {.lex_state = 236}, + [1315] = {.lex_state = 234, .external_lex_state = 16}, + [1316] = {.lex_state = 236}, + [1317] = {.lex_state = 234, .external_lex_state = 16}, + [1318] = {.lex_state = 234, .external_lex_state = 16}, + [1319] = {.lex_state = 169, .external_lex_state = 15}, + [1320] = {.lex_state = 234, .external_lex_state = 16}, + [1321] = {.lex_state = 91, .external_lex_state = 13}, + [1322] = {.lex_state = 213, .external_lex_state = 24}, + [1323] = {.lex_state = 213, .external_lex_state = 24}, + [1324] = {.lex_state = 213, .external_lex_state = 16}, + [1325] = {.lex_state = 234, .external_lex_state = 16}, + [1326] = {.lex_state = 91, .external_lex_state = 13}, + [1327] = {.lex_state = 232, .external_lex_state = 16}, + [1328] = {.lex_state = 91, .external_lex_state = 13}, + [1329] = {.lex_state = 236}, + [1330] = {.lex_state = 234, .external_lex_state = 16}, + [1331] = {.lex_state = 91, .external_lex_state = 13}, + [1332] = {.lex_state = 236}, + [1333] = {.lex_state = 234, .external_lex_state = 16}, + [1334] = {.lex_state = 236}, + [1335] = {.lex_state = 234, .external_lex_state = 16}, + [1336] = {.lex_state = 234, .external_lex_state = 16}, + [1337] = {.lex_state = 91, .external_lex_state = 13}, + [1338] = {.lex_state = 234, .external_lex_state = 16}, + [1339] = {.lex_state = 209, .external_lex_state = 12}, + [1340] = {.lex_state = 157, .external_lex_state = 24}, + [1341] = {.lex_state = 209, .external_lex_state = 12}, + [1342] = {.lex_state = 157, .external_lex_state = 24}, + [1343] = {.lex_state = 134, .external_lex_state = 12}, + [1344] = {.lex_state = 73}, + [1345] = {.lex_state = 115, .external_lex_state = 5}, + [1346] = {.lex_state = 213, .external_lex_state = 24}, + [1347] = {.lex_state = 213, .external_lex_state = 24}, + [1348] = {.lex_state = 151}, + [1349] = {.lex_state = 91}, + [1350] = {.lex_state = 213, .external_lex_state = 24}, + [1351] = {.lex_state = 213, .external_lex_state = 24}, + [1352] = {.lex_state = 213, .external_lex_state = 24}, + [1353] = {.lex_state = 115, .external_lex_state = 5}, + [1354] = {.lex_state = 62}, + [1355] = {.lex_state = 157, .external_lex_state = 16}, + [1356] = {.lex_state = 160, .external_lex_state = 6}, + [1357] = {.lex_state = 157, .external_lex_state = 16}, + [1358] = {.lex_state = 157, .external_lex_state = 16}, + [1359] = {.lex_state = 162}, + [1360] = {.lex_state = 169, .external_lex_state = 2}, + [1361] = {.lex_state = 162}, + [1362] = {.lex_state = 177, .external_lex_state = 2}, + [1363] = {.lex_state = 162}, + [1364] = {.lex_state = 169, .external_lex_state = 2}, + [1365] = {.lex_state = 234, .external_lex_state = 24}, + [1366] = {.lex_state = 234, .external_lex_state = 24}, + [1367] = {.lex_state = 234, .external_lex_state = 24}, + [1368] = {.lex_state = 151}, + [1369] = {.lex_state = 232, .external_lex_state = 16}, + [1370] = {.lex_state = 234, .external_lex_state = 24}, + [1371] = {.lex_state = 236}, + [1372] = {.lex_state = 234, .external_lex_state = 16}, + [1373] = {.lex_state = 62}, + [1374] = {.lex_state = 157, .external_lex_state = 16}, + [1375] = {.lex_state = 157, .external_lex_state = 16}, + [1376] = {.lex_state = 157, .external_lex_state = 16}, + [1377] = {.lex_state = 234, .external_lex_state = 24}, + [1378] = {.lex_state = 236}, + [1379] = {.lex_state = 234, .external_lex_state = 16}, + [1380] = {.lex_state = 234, .external_lex_state = 24}, + [1381] = {.lex_state = 236}, + [1382] = {.lex_state = 234, .external_lex_state = 16}, + [1383] = {.lex_state = 115, .external_lex_state = 5}, + [1384] = {.lex_state = 234, .external_lex_state = 16}, + [1385] = {.lex_state = 234, .external_lex_state = 24}, + [1386] = {.lex_state = 234, .external_lex_state = 24}, + [1387] = {.lex_state = 213, .external_lex_state = 24}, + [1388] = {.lex_state = 213, .external_lex_state = 24}, + [1389] = {.lex_state = 213, .external_lex_state = 16}, + [1390] = {.lex_state = 234, .external_lex_state = 16}, + [1391] = {.lex_state = 115, .external_lex_state = 5}, + [1392] = {.lex_state = 234, .external_lex_state = 16}, + [1393] = {.lex_state = 115, .external_lex_state = 5}, + [1394] = {.lex_state = 234, .external_lex_state = 16}, + [1395] = {.lex_state = 115, .external_lex_state = 5}, + [1396] = {.lex_state = 234, .external_lex_state = 16}, + [1397] = {.lex_state = 115, .external_lex_state = 5}, + [1398] = {.lex_state = 234, .external_lex_state = 16}, + [1399] = {.lex_state = 169, .external_lex_state = 15}, + [1400] = {.lex_state = 249}, + [1401] = {.lex_state = 211, .external_lex_state = 4}, + [1402] = {.lex_state = 119, .external_lex_state = 4}, + [1403] = {.lex_state = 122, .external_lex_state = 4}, + [1404] = {.lex_state = 56, .external_lex_state = 2}, + [1405] = {.lex_state = 162}, + [1406] = {.lex_state = 265, .external_lex_state = 18}, + [1407] = {.lex_state = 56, .external_lex_state = 2}, + [1408] = {.lex_state = 162}, + [1409] = {.lex_state = 241, .external_lex_state = 18}, + [1410] = {.lex_state = 162}, + [1411] = {.lex_state = 73}, + [1412] = {.lex_state = 56, .external_lex_state = 2}, + [1413] = {.lex_state = 73}, + [1414] = {.lex_state = 73}, + [1415] = {.lex_state = 119, .external_lex_state = 4}, + [1416] = {.lex_state = 73}, + [1417] = {.lex_state = 119, .external_lex_state = 4}, + [1418] = {.lex_state = 124}, + [1419] = {.lex_state = 276, .external_lex_state = 26}, + [1420] = {.lex_state = 213, .external_lex_state = 22}, + [1421] = {.lex_state = 56}, + [1422] = {.lex_state = 73}, + [1423] = {.lex_state = 162}, + [1424] = {.lex_state = 162}, + [1425] = {.lex_state = 218, .external_lex_state = 2}, + [1426] = {.lex_state = 56}, + [1427] = {.lex_state = 73}, + [1428] = {.lex_state = 56, .external_lex_state = 20}, + [1429] = {.lex_state = 73}, + [1430] = {.lex_state = 241, .external_lex_state = 26}, + [1431] = {.lex_state = 162, .external_lex_state = 6}, + [1432] = {.lex_state = 169}, + [1433] = {.lex_state = 162, .external_lex_state = 25}, + [1434] = {.lex_state = 162, .external_lex_state = 25}, + [1435] = {.lex_state = 162, .external_lex_state = 25}, + [1436] = {.lex_state = 162, .external_lex_state = 25}, + [1437] = {.lex_state = 162, .external_lex_state = 25}, + [1438] = {.lex_state = 151}, + [1439] = {.lex_state = 232, .external_lex_state = 16}, + [1440] = {.lex_state = 162, .external_lex_state = 25}, + [1441] = {.lex_state = 236}, + [1442] = {.lex_state = 234, .external_lex_state = 16}, + [1443] = {.lex_state = 62}, + [1444] = {.lex_state = 157, .external_lex_state = 16}, + [1445] = {.lex_state = 157, .external_lex_state = 16}, + [1446] = {.lex_state = 157, .external_lex_state = 16}, + [1447] = {.lex_state = 162, .external_lex_state = 25}, + [1448] = {.lex_state = 236}, + [1449] = {.lex_state = 234, .external_lex_state = 16}, + [1450] = {.lex_state = 162, .external_lex_state = 25}, + [1451] = {.lex_state = 236}, + [1452] = {.lex_state = 234, .external_lex_state = 16}, + [1453] = {.lex_state = 162, .external_lex_state = 25}, + [1454] = {.lex_state = 162, .external_lex_state = 25}, + [1455] = {.lex_state = 162, .external_lex_state = 13}, + [1456] = {.lex_state = 162, .external_lex_state = 13}, + [1457] = {.lex_state = 162, .external_lex_state = 13}, + [1458] = {.lex_state = 151}, + [1459] = {.lex_state = 232, .external_lex_state = 16}, + [1460] = {.lex_state = 162, .external_lex_state = 13}, + [1461] = {.lex_state = 236}, + [1462] = {.lex_state = 234, .external_lex_state = 16}, + [1463] = {.lex_state = 62}, + [1464] = {.lex_state = 157, .external_lex_state = 16}, + [1465] = {.lex_state = 157, .external_lex_state = 16}, + [1466] = {.lex_state = 157, .external_lex_state = 16}, + [1467] = {.lex_state = 162, .external_lex_state = 13}, + [1468] = {.lex_state = 236}, + [1469] = {.lex_state = 234, .external_lex_state = 16}, + [1470] = {.lex_state = 162, .external_lex_state = 13}, + [1471] = {.lex_state = 236}, + [1472] = {.lex_state = 234, .external_lex_state = 16}, + [1473] = {.lex_state = 162, .external_lex_state = 13}, + [1474] = {.lex_state = 162, .external_lex_state = 13}, + [1475] = {.lex_state = 164, .external_lex_state = 17}, + [1476] = {.lex_state = 164, .external_lex_state = 17}, + [1477] = {.lex_state = 213, .external_lex_state = 24}, + [1478] = {.lex_state = 213, .external_lex_state = 24}, + [1479] = {.lex_state = 213, .external_lex_state = 16}, + [1480] = {.lex_state = 234, .external_lex_state = 16}, + [1481] = {.lex_state = 164, .external_lex_state = 17}, + [1482] = {.lex_state = 232, .external_lex_state = 16}, + [1483] = {.lex_state = 164, .external_lex_state = 17}, + [1484] = {.lex_state = 236}, + [1485] = {.lex_state = 234, .external_lex_state = 16}, + [1486] = {.lex_state = 164, .external_lex_state = 17}, + [1487] = {.lex_state = 236}, + [1488] = {.lex_state = 234, .external_lex_state = 16}, + [1489] = {.lex_state = 236}, + [1490] = {.lex_state = 234, .external_lex_state = 16}, + [1491] = {.lex_state = 234, .external_lex_state = 16}, + [1492] = {.lex_state = 164, .external_lex_state = 17}, + [1493] = {.lex_state = 234, .external_lex_state = 16}, + [1494] = {.lex_state = 263, .external_lex_state = 26}, + [1495] = {.lex_state = 162}, + [1496] = {.lex_state = 241, .external_lex_state = 17}, + [1497] = {.lex_state = 241, .external_lex_state = 17}, + [1498] = {.lex_state = 265, .external_lex_state = 18}, + [1499] = {.lex_state = 241, .external_lex_state = 17}, + [1500] = {.lex_state = 162}, + [1501] = {.lex_state = 241, .external_lex_state = 18}, + [1502] = {.lex_state = 177, .external_lex_state = 15}, + [1503] = {.lex_state = 243, .external_lex_state = 18}, + [1504] = {.lex_state = 124}, + [1505] = {.lex_state = 56}, + [1506] = {.lex_state = 73}, + [1507] = {.lex_state = 56}, + [1508] = {.lex_state = 73}, + [1509] = {.lex_state = 73}, + [1510] = {.lex_state = 243, .external_lex_state = 26}, + [1511] = {.lex_state = 171, .external_lex_state = 25}, + [1512] = {.lex_state = 171, .external_lex_state = 25}, + [1513] = {.lex_state = 171, .external_lex_state = 25}, + [1514] = {.lex_state = 162, .external_lex_state = 13}, + [1515] = {.lex_state = 267, .external_lex_state = 26}, + [1516] = {.lex_state = 243, .external_lex_state = 17}, + [1517] = {.lex_state = 243, .external_lex_state = 17}, + [1518] = {.lex_state = 243, .external_lex_state = 17}, + [1519] = {.lex_state = 243, .external_lex_state = 18}, + [1520] = {.lex_state = 132, .external_lex_state = 4}, + [1521] = {.lex_state = 232, .external_lex_state = 16}, + [1522] = {.lex_state = 182, .external_lex_state = 19}, + [1523] = {.lex_state = 236}, + [1524] = {.lex_state = 234, .external_lex_state = 16}, + [1525] = {.lex_state = 62}, + [1526] = {.lex_state = 157, .external_lex_state = 16}, + [1527] = {.lex_state = 157, .external_lex_state = 16}, + [1528] = {.lex_state = 157, .external_lex_state = 16}, + [1529] = {.lex_state = 182, .external_lex_state = 19}, + [1530] = {.lex_state = 236}, + [1531] = {.lex_state = 234, .external_lex_state = 16}, + [1532] = {.lex_state = 182, .external_lex_state = 19}, + [1533] = {.lex_state = 236}, + [1534] = {.lex_state = 234, .external_lex_state = 16}, + [1535] = {.lex_state = 205, .external_lex_state = 5}, + [1536] = {.lex_state = 132, .external_lex_state = 4}, + [1537] = {.lex_state = 62}, + [1538] = {.lex_state = 62}, + [1539] = {.lex_state = 247, .external_lex_state = 13}, + [1540] = {.lex_state = 247, .external_lex_state = 13}, + [1541] = {.lex_state = 247, .external_lex_state = 13}, + [1542] = {.lex_state = 151}, + [1543] = {.lex_state = 232, .external_lex_state = 16}, + [1544] = {.lex_state = 247, .external_lex_state = 13}, + [1545] = {.lex_state = 236}, + [1546] = {.lex_state = 234, .external_lex_state = 16}, + [1547] = {.lex_state = 62}, + [1548] = {.lex_state = 157, .external_lex_state = 16}, + [1549] = {.lex_state = 157, .external_lex_state = 16}, + [1550] = {.lex_state = 157, .external_lex_state = 16}, + [1551] = {.lex_state = 247, .external_lex_state = 13}, + [1552] = {.lex_state = 236}, + [1553] = {.lex_state = 234, .external_lex_state = 16}, + [1554] = {.lex_state = 247, .external_lex_state = 13}, + [1555] = {.lex_state = 236}, + [1556] = {.lex_state = 234, .external_lex_state = 16}, + [1557] = {.lex_state = 247, .external_lex_state = 13}, + [1558] = {.lex_state = 247, .external_lex_state = 13}, + [1559] = {.lex_state = 130, .external_lex_state = 21}, + [1560] = {.lex_state = 130, .external_lex_state = 21}, + [1561] = {.lex_state = 213, .external_lex_state = 24}, + [1562] = {.lex_state = 213, .external_lex_state = 24}, + [1563] = {.lex_state = 213, .external_lex_state = 16}, + [1564] = {.lex_state = 234, .external_lex_state = 16}, + [1565] = {.lex_state = 130, .external_lex_state = 21}, + [1566] = {.lex_state = 232, .external_lex_state = 16}, + [1567] = {.lex_state = 130, .external_lex_state = 21}, + [1568] = {.lex_state = 236}, + [1569] = {.lex_state = 234, .external_lex_state = 16}, + [1570] = {.lex_state = 130, .external_lex_state = 21}, + [1571] = {.lex_state = 236}, + [1572] = {.lex_state = 234, .external_lex_state = 16}, + [1573] = {.lex_state = 236}, + [1574] = {.lex_state = 234, .external_lex_state = 16}, + [1575] = {.lex_state = 234, .external_lex_state = 16}, + [1576] = {.lex_state = 130, .external_lex_state = 21}, + [1577] = {.lex_state = 234, .external_lex_state = 16}, + [1578] = {.lex_state = 213, .external_lex_state = 22}, + [1579] = {.lex_state = 132, .external_lex_state = 4}, + [1580] = {.lex_state = 222}, + [1581] = {.lex_state = 271}, + [1582] = {.lex_state = 73}, + [1583] = {.lex_state = 271, .external_lex_state = 13}, + [1584] = {.lex_state = 271, .external_lex_state = 13}, + [1585] = {.lex_state = 151}, + [1586] = {.lex_state = 91}, + [1587] = {.lex_state = 271, .external_lex_state = 13}, + [1588] = {.lex_state = 271, .external_lex_state = 13}, + [1589] = {.lex_state = 271, .external_lex_state = 13}, + [1590] = {.lex_state = 62}, + [1591] = {.lex_state = 157, .external_lex_state = 16}, + [1592] = {.lex_state = 160, .external_lex_state = 6}, + [1593] = {.lex_state = 157, .external_lex_state = 16}, + [1594] = {.lex_state = 157, .external_lex_state = 16}, + [1595] = {.lex_state = 162}, + [1596] = {.lex_state = 169, .external_lex_state = 2}, + [1597] = {.lex_state = 162}, + [1598] = {.lex_state = 177, .external_lex_state = 2}, + [1599] = {.lex_state = 162}, + [1600] = {.lex_state = 169, .external_lex_state = 2}, + [1601] = {.lex_state = 269}, + [1602] = {.lex_state = 77}, + [1603] = {.lex_state = 224}, + [1604] = {.lex_state = 271}, + [1605] = {.lex_state = 253, .external_lex_state = 10}, + [1606] = {.lex_state = 253, .external_lex_state = 10}, + [1607] = {.lex_state = 213, .external_lex_state = 24}, + [1608] = {.lex_state = 213, .external_lex_state = 24}, + [1609] = {.lex_state = 213, .external_lex_state = 16}, + [1610] = {.lex_state = 234, .external_lex_state = 16}, + [1611] = {.lex_state = 253, .external_lex_state = 10}, + [1612] = {.lex_state = 232, .external_lex_state = 16}, + [1613] = {.lex_state = 253, .external_lex_state = 10}, + [1614] = {.lex_state = 236}, + [1615] = {.lex_state = 234, .external_lex_state = 16}, + [1616] = {.lex_state = 253, .external_lex_state = 10}, + [1617] = {.lex_state = 236}, + [1618] = {.lex_state = 234, .external_lex_state = 16}, + [1619] = {.lex_state = 236}, + [1620] = {.lex_state = 234, .external_lex_state = 16}, + [1621] = {.lex_state = 234, .external_lex_state = 16}, + [1622] = {.lex_state = 253, .external_lex_state = 10}, + [1623] = {.lex_state = 234, .external_lex_state = 16}, + [1624] = {.lex_state = 249}, + [1625] = {.lex_state = 122, .external_lex_state = 10}, + [1626] = {.lex_state = 132, .external_lex_state = 4}, + [1627] = {.lex_state = 132, .external_lex_state = 4}, + [1628] = {.lex_state = 56, .external_lex_state = 2}, + [1629] = {.lex_state = 56, .external_lex_state = 2}, + [1630] = {.lex_state = 132, .external_lex_state = 4}, + [1631] = {.lex_state = 73}, + [1632] = {.lex_state = 73}, + [1633] = {.lex_state = 179, .external_lex_state = 2}, + [1634] = {.lex_state = 273}, + [1635] = {.lex_state = 273, .external_lex_state = 13}, + [1636] = {.lex_state = 179, .external_lex_state = 2}, + [1637] = {.lex_state = 273}, + [1638] = {.lex_state = 132, .external_lex_state = 4}, + [1639] = {.lex_state = 73}, + [1640] = {.lex_state = 73}, + [1641] = {.lex_state = 132, .external_lex_state = 4}, + [1642] = {.lex_state = 73}, + [1643] = {.lex_state = 132, .external_lex_state = 4}, + [1644] = {.lex_state = 73}, + [1645] = {.lex_state = 132, .external_lex_state = 4}, + [1646] = {.lex_state = 73}, + [1647] = {.lex_state = 122, .external_lex_state = 10}, + [1648] = {.lex_state = 122, .external_lex_state = 10}, + [1649] = {.lex_state = 122, .external_lex_state = 10}, + [1650] = {.lex_state = 234, .external_lex_state = 16}, + [1651] = {.lex_state = 213, .external_lex_state = 24}, + [1652] = {.lex_state = 213, .external_lex_state = 24}, + [1653] = {.lex_state = 213, .external_lex_state = 16}, + [1654] = {.lex_state = 234, .external_lex_state = 16}, + [1655] = {.lex_state = 122, .external_lex_state = 10}, + [1656] = {.lex_state = 234, .external_lex_state = 16}, + [1657] = {.lex_state = 122, .external_lex_state = 10}, + [1658] = {.lex_state = 234, .external_lex_state = 16}, + [1659] = {.lex_state = 122, .external_lex_state = 10}, + [1660] = {.lex_state = 234, .external_lex_state = 16}, + [1661] = {.lex_state = 122, .external_lex_state = 10}, + [1662] = {.lex_state = 234, .external_lex_state = 16}, + [1663] = {.lex_state = 132, .external_lex_state = 4}, + [1664] = {.lex_state = 132, .external_lex_state = 10}, + [1665] = {.lex_state = 132, .external_lex_state = 10}, + [1666] = {.lex_state = 132, .external_lex_state = 4}, + [1667] = {.lex_state = 132, .external_lex_state = 10}, + [1668] = {.lex_state = 130, .external_lex_state = 21}, + [1669] = {.lex_state = 259, .external_lex_state = 23}, + [1670] = {.lex_state = 73}, + [1671] = {.lex_state = 132, .external_lex_state = 10}, + [1672] = {.lex_state = 132, .external_lex_state = 10}, + [1673] = {.lex_state = 73}, + [1674] = {.lex_state = 220, .external_lex_state = 27}, + [1675] = {.lex_state = 220, .external_lex_state = 27}, + [1676] = {.lex_state = 220, .external_lex_state = 27}, + [1677] = {.lex_state = 220, .external_lex_state = 27}, + [1678] = {.lex_state = 220, .external_lex_state = 23}, + [1679] = {.lex_state = 220, .external_lex_state = 5}, + [1680] = {.lex_state = 169, .external_lex_state = 2}, + [1681] = {.lex_state = 134, .external_lex_state = 11}, + [1682] = {.lex_state = 134, .external_lex_state = 11}, + [1683] = {.lex_state = 134, .external_lex_state = 11}, + [1684] = {.lex_state = 234, .external_lex_state = 16}, + [1685] = {.lex_state = 213, .external_lex_state = 24}, + [1686] = {.lex_state = 213, .external_lex_state = 24}, + [1687] = {.lex_state = 213, .external_lex_state = 16}, + [1688] = {.lex_state = 234, .external_lex_state = 16}, + [1689] = {.lex_state = 134, .external_lex_state = 11}, + [1690] = {.lex_state = 234, .external_lex_state = 16}, + [1691] = {.lex_state = 134, .external_lex_state = 11}, + [1692] = {.lex_state = 234, .external_lex_state = 16}, + [1693] = {.lex_state = 134, .external_lex_state = 11}, + [1694] = {.lex_state = 234, .external_lex_state = 16}, + [1695] = {.lex_state = 134, .external_lex_state = 11}, + [1696] = {.lex_state = 234, .external_lex_state = 16}, + [1697] = {.lex_state = 205, .external_lex_state = 27}, + [1698] = {.lex_state = 205, .external_lex_state = 27}, + [1699] = {.lex_state = 245, .external_lex_state = 23}, + [1700] = {.lex_state = 73}, + [1701] = {.lex_state = 205, .external_lex_state = 27}, + [1702] = {.lex_state = 245, .external_lex_state = 27}, + [1703] = {.lex_state = 151}, + [1704] = {.lex_state = 91}, + [1705] = {.lex_state = 245, .external_lex_state = 27}, + [1706] = {.lex_state = 245, .external_lex_state = 27}, + [1707] = {.lex_state = 245, .external_lex_state = 27}, + [1708] = {.lex_state = 62}, + [1709] = {.lex_state = 157, .external_lex_state = 16}, + [1710] = {.lex_state = 160, .external_lex_state = 6}, + [1711] = {.lex_state = 157, .external_lex_state = 16}, + [1712] = {.lex_state = 157, .external_lex_state = 16}, + [1713] = {.lex_state = 162}, + [1714] = {.lex_state = 169, .external_lex_state = 2}, + [1715] = {.lex_state = 162}, + [1716] = {.lex_state = 177, .external_lex_state = 2}, + [1717] = {.lex_state = 162}, + [1718] = {.lex_state = 169, .external_lex_state = 2}, + [1719] = {.lex_state = 229, .external_lex_state = 13}, + [1720] = {.lex_state = 229, .external_lex_state = 13}, + [1721] = {.lex_state = 229, .external_lex_state = 13}, + [1722] = {.lex_state = 234, .external_lex_state = 16}, + [1723] = {.lex_state = 213, .external_lex_state = 24}, + [1724] = {.lex_state = 213, .external_lex_state = 24}, + [1725] = {.lex_state = 213, .external_lex_state = 16}, + [1726] = {.lex_state = 234, .external_lex_state = 16}, + [1727] = {.lex_state = 229, .external_lex_state = 13}, + [1728] = {.lex_state = 234, .external_lex_state = 16}, + [1729] = {.lex_state = 229, .external_lex_state = 13}, + [1730] = {.lex_state = 234, .external_lex_state = 16}, + [1731] = {.lex_state = 229, .external_lex_state = 13}, + [1732] = {.lex_state = 234, .external_lex_state = 16}, + [1733] = {.lex_state = 229, .external_lex_state = 13}, + [1734] = {.lex_state = 234, .external_lex_state = 16}, + [1735] = {.lex_state = 126, .external_lex_state = 3}, + [1736] = {.lex_state = 126, .external_lex_state = 14}, + [1737] = {.lex_state = 126, .external_lex_state = 14}, + [1738] = {.lex_state = 126, .external_lex_state = 14}, + [1739] = {.lex_state = 234, .external_lex_state = 16}, + [1740] = {.lex_state = 213, .external_lex_state = 24}, + [1741] = {.lex_state = 213, .external_lex_state = 24}, + [1742] = {.lex_state = 213, .external_lex_state = 16}, + [1743] = {.lex_state = 234, .external_lex_state = 16}, + [1744] = {.lex_state = 126, .external_lex_state = 14}, + [1745] = {.lex_state = 234, .external_lex_state = 16}, + [1746] = {.lex_state = 126, .external_lex_state = 14}, + [1747] = {.lex_state = 234, .external_lex_state = 16}, + [1748] = {.lex_state = 126, .external_lex_state = 14}, + [1749] = {.lex_state = 234, .external_lex_state = 16}, + [1750] = {.lex_state = 126, .external_lex_state = 14}, + [1751] = {.lex_state = 234, .external_lex_state = 16}, + [1752] = {.lex_state = 126, .external_lex_state = 10}, + [1753] = {.lex_state = 126, .external_lex_state = 10}, + [1754] = {.lex_state = 126, .external_lex_state = 10}, + [1755] = {.lex_state = 234, .external_lex_state = 16}, + [1756] = {.lex_state = 213, .external_lex_state = 24}, + [1757] = {.lex_state = 213, .external_lex_state = 24}, + [1758] = {.lex_state = 213, .external_lex_state = 16}, + [1759] = {.lex_state = 234, .external_lex_state = 16}, + [1760] = {.lex_state = 126, .external_lex_state = 10}, + [1761] = {.lex_state = 234, .external_lex_state = 16}, + [1762] = {.lex_state = 126, .external_lex_state = 10}, + [1763] = {.lex_state = 234, .external_lex_state = 16}, + [1764] = {.lex_state = 126, .external_lex_state = 10}, + [1765] = {.lex_state = 234, .external_lex_state = 16}, + [1766] = {.lex_state = 126, .external_lex_state = 10}, + [1767] = {.lex_state = 234, .external_lex_state = 16}, + [1768] = {.lex_state = 169, .external_lex_state = 15}, + [1769] = {.lex_state = 169, .external_lex_state = 15}, + [1770] = {.lex_state = 169, .external_lex_state = 15}, + [1771] = {.lex_state = 234, .external_lex_state = 16}, + [1772] = {.lex_state = 213, .external_lex_state = 24}, + [1773] = {.lex_state = 213, .external_lex_state = 24}, + [1774] = {.lex_state = 213, .external_lex_state = 16}, + [1775] = {.lex_state = 234, .external_lex_state = 16}, + [1776] = {.lex_state = 169, .external_lex_state = 15}, + [1777] = {.lex_state = 234, .external_lex_state = 16}, + [1778] = {.lex_state = 169, .external_lex_state = 15}, + [1779] = {.lex_state = 234, .external_lex_state = 16}, + [1780] = {.lex_state = 169, .external_lex_state = 15}, + [1781] = {.lex_state = 234, .external_lex_state = 16}, + [1782] = {.lex_state = 169, .external_lex_state = 15}, + [1783] = {.lex_state = 234, .external_lex_state = 16}, + [1784] = {.lex_state = 91, .external_lex_state = 13}, + [1785] = {.lex_state = 91, .external_lex_state = 13}, + [1786] = {.lex_state = 91, .external_lex_state = 13}, + [1787] = {.lex_state = 234, .external_lex_state = 16}, + [1788] = {.lex_state = 213, .external_lex_state = 24}, + [1789] = {.lex_state = 213, .external_lex_state = 24}, + [1790] = {.lex_state = 213, .external_lex_state = 16}, + [1791] = {.lex_state = 234, .external_lex_state = 16}, + [1792] = {.lex_state = 91, .external_lex_state = 13}, + [1793] = {.lex_state = 234, .external_lex_state = 16}, + [1794] = {.lex_state = 91, .external_lex_state = 13}, + [1795] = {.lex_state = 234, .external_lex_state = 16}, + [1796] = {.lex_state = 91, .external_lex_state = 13}, + [1797] = {.lex_state = 234, .external_lex_state = 16}, + [1798] = {.lex_state = 91, .external_lex_state = 13}, + [1799] = {.lex_state = 234, .external_lex_state = 16}, + [1800] = {.lex_state = 157, .external_lex_state = 24}, + [1801] = {.lex_state = 157, .external_lex_state = 16}, + [1802] = {.lex_state = 157, .external_lex_state = 24}, + [1803] = {.lex_state = 157, .external_lex_state = 16}, + [1804] = {.lex_state = 213, .external_lex_state = 24}, + [1805] = {.lex_state = 213, .external_lex_state = 24}, + [1806] = {.lex_state = 213, .external_lex_state = 24}, + [1807] = {.lex_state = 151}, + [1808] = {.lex_state = 232, .external_lex_state = 16}, + [1809] = {.lex_state = 213, .external_lex_state = 24}, + [1810] = {.lex_state = 236}, + [1811] = {.lex_state = 234, .external_lex_state = 16}, + [1812] = {.lex_state = 62}, + [1813] = {.lex_state = 157, .external_lex_state = 16}, + [1814] = {.lex_state = 157, .external_lex_state = 16}, + [1815] = {.lex_state = 157, .external_lex_state = 16}, + [1816] = {.lex_state = 213, .external_lex_state = 24}, + [1817] = {.lex_state = 236}, + [1818] = {.lex_state = 234, .external_lex_state = 16}, + [1819] = {.lex_state = 213, .external_lex_state = 24}, + [1820] = {.lex_state = 236}, + [1821] = {.lex_state = 234, .external_lex_state = 16}, + [1822] = {.lex_state = 213, .external_lex_state = 24}, + [1823] = {.lex_state = 213, .external_lex_state = 24}, + [1824] = {.lex_state = 234, .external_lex_state = 24}, + [1825] = {.lex_state = 234, .external_lex_state = 24}, + [1826] = {.lex_state = 213, .external_lex_state = 24}, + [1827] = {.lex_state = 213, .external_lex_state = 24}, + [1828] = {.lex_state = 213, .external_lex_state = 16}, + [1829] = {.lex_state = 234, .external_lex_state = 16}, + [1830] = {.lex_state = 234, .external_lex_state = 24}, + [1831] = {.lex_state = 232, .external_lex_state = 16}, + [1832] = {.lex_state = 234, .external_lex_state = 24}, + [1833] = {.lex_state = 236}, + [1834] = {.lex_state = 234, .external_lex_state = 16}, + [1835] = {.lex_state = 234, .external_lex_state = 24}, + [1836] = {.lex_state = 236}, + [1837] = {.lex_state = 234, .external_lex_state = 16}, + [1838] = {.lex_state = 236}, + [1839] = {.lex_state = 234, .external_lex_state = 16}, + [1840] = {.lex_state = 234, .external_lex_state = 16}, + [1841] = {.lex_state = 234, .external_lex_state = 24}, + [1842] = {.lex_state = 234, .external_lex_state = 16}, + [1843] = {.lex_state = 115, .external_lex_state = 5}, + [1844] = {.lex_state = 115, .external_lex_state = 5}, + [1845] = {.lex_state = 115, .external_lex_state = 5}, + [1846] = {.lex_state = 115, .external_lex_state = 5}, + [1847] = {.lex_state = 234, .external_lex_state = 16}, + [1848] = {.lex_state = 115, .external_lex_state = 5}, + [1849] = {.lex_state = 234, .external_lex_state = 16}, + [1850] = {.lex_state = 115, .external_lex_state = 5}, + [1851] = {.lex_state = 234, .external_lex_state = 16}, + [1852] = {.lex_state = 115, .external_lex_state = 5}, + [1853] = {.lex_state = 115, .external_lex_state = 5}, + [1854] = {.lex_state = 169, .external_lex_state = 15}, + [1855] = {.lex_state = 269}, + [1856] = {.lex_state = 271}, + [1857] = {.lex_state = 249}, + [1858] = {.lex_state = 211, .external_lex_state = 4}, + [1859] = {.lex_state = 73}, + [1860] = {.lex_state = 162}, + [1861] = {.lex_state = 56, .external_lex_state = 2}, + [1862] = {.lex_state = 265, .external_lex_state = 18}, + [1863] = {.lex_state = 162}, + [1864] = {.lex_state = 162}, + [1865] = {.lex_state = 73}, + [1866] = {.lex_state = 73}, + [1867] = {.lex_state = 162}, + [1868] = {.lex_state = 73}, + [1869] = {.lex_state = 73}, + [1870] = {.lex_state = 73}, + [1871] = {.lex_state = 162}, + [1872] = {.lex_state = 73}, + [1873] = {.lex_state = 73}, + [1874] = {.lex_state = 73}, + [1875] = {.lex_state = 263, .external_lex_state = 26}, + [1876] = {.lex_state = 276, .external_lex_state = 26}, + [1877] = {.lex_state = 73}, + [1878] = {.lex_state = 169, .external_lex_state = 13}, + [1879] = {.lex_state = 169, .external_lex_state = 13}, + [1880] = {.lex_state = 162}, + [1881] = {.lex_state = 162}, + [1882] = {.lex_state = 73}, + [1883] = {.lex_state = 241, .external_lex_state = 28}, + [1884] = {.lex_state = 91}, + [1885] = {.lex_state = 98}, + [1886] = {.lex_state = 241, .external_lex_state = 28}, + [1887] = {.lex_state = 107, .external_lex_state = 6}, + [1888] = {.lex_state = 56, .external_lex_state = 2}, + [1889] = {.lex_state = 56, .external_lex_state = 2}, + [1890] = {.lex_state = 56, .external_lex_state = 2}, + [1891] = {.lex_state = 265, .external_lex_state = 26}, + [1892] = {.lex_state = 265, .external_lex_state = 26}, + [1893] = {.lex_state = 241, .external_lex_state = 28}, + [1894] = {.lex_state = 241, .external_lex_state = 28}, + [1895] = {.lex_state = 265, .external_lex_state = 26}, + [1896] = {.lex_state = 241, .external_lex_state = 26}, + [1897] = {.lex_state = 162, .external_lex_state = 6}, + [1898] = {.lex_state = 169}, + [1899] = {.lex_state = 162, .external_lex_state = 25}, + [1900] = {.lex_state = 162, .external_lex_state = 25}, + [1901] = {.lex_state = 213, .external_lex_state = 24}, + [1902] = {.lex_state = 213, .external_lex_state = 24}, + [1903] = {.lex_state = 213, .external_lex_state = 16}, + [1904] = {.lex_state = 234, .external_lex_state = 16}, + [1905] = {.lex_state = 162, .external_lex_state = 25}, + [1906] = {.lex_state = 232, .external_lex_state = 16}, + [1907] = {.lex_state = 162, .external_lex_state = 25}, + [1908] = {.lex_state = 236}, + [1909] = {.lex_state = 234, .external_lex_state = 16}, + [1910] = {.lex_state = 162, .external_lex_state = 25}, + [1911] = {.lex_state = 236}, + [1912] = {.lex_state = 234, .external_lex_state = 16}, + [1913] = {.lex_state = 236}, + [1914] = {.lex_state = 234, .external_lex_state = 16}, + [1915] = {.lex_state = 234, .external_lex_state = 16}, + [1916] = {.lex_state = 162, .external_lex_state = 25}, + [1917] = {.lex_state = 234, .external_lex_state = 16}, + [1918] = {.lex_state = 162, .external_lex_state = 13}, + [1919] = {.lex_state = 162, .external_lex_state = 13}, + [1920] = {.lex_state = 213, .external_lex_state = 24}, + [1921] = {.lex_state = 213, .external_lex_state = 24}, + [1922] = {.lex_state = 213, .external_lex_state = 16}, + [1923] = {.lex_state = 234, .external_lex_state = 16}, + [1924] = {.lex_state = 162, .external_lex_state = 13}, + [1925] = {.lex_state = 232, .external_lex_state = 16}, + [1926] = {.lex_state = 162, .external_lex_state = 13}, + [1927] = {.lex_state = 236}, + [1928] = {.lex_state = 234, .external_lex_state = 16}, + [1929] = {.lex_state = 162, .external_lex_state = 13}, + [1930] = {.lex_state = 236}, + [1931] = {.lex_state = 234, .external_lex_state = 16}, + [1932] = {.lex_state = 236}, + [1933] = {.lex_state = 234, .external_lex_state = 16}, + [1934] = {.lex_state = 234, .external_lex_state = 16}, + [1935] = {.lex_state = 162, .external_lex_state = 13}, + [1936] = {.lex_state = 234, .external_lex_state = 16}, + [1937] = {.lex_state = 164, .external_lex_state = 17}, + [1938] = {.lex_state = 164, .external_lex_state = 17}, + [1939] = {.lex_state = 164, .external_lex_state = 17}, + [1940] = {.lex_state = 234, .external_lex_state = 16}, + [1941] = {.lex_state = 213, .external_lex_state = 24}, + [1942] = {.lex_state = 213, .external_lex_state = 24}, + [1943] = {.lex_state = 213, .external_lex_state = 16}, + [1944] = {.lex_state = 234, .external_lex_state = 16}, + [1945] = {.lex_state = 164, .external_lex_state = 17}, + [1946] = {.lex_state = 234, .external_lex_state = 16}, + [1947] = {.lex_state = 164, .external_lex_state = 17}, + [1948] = {.lex_state = 234, .external_lex_state = 16}, + [1949] = {.lex_state = 164, .external_lex_state = 17}, + [1950] = {.lex_state = 234, .external_lex_state = 16}, + [1951] = {.lex_state = 164, .external_lex_state = 17}, + [1952] = {.lex_state = 234, .external_lex_state = 16}, + [1953] = {.lex_state = 162}, + [1954] = {.lex_state = 241, .external_lex_state = 17}, + [1955] = {.lex_state = 162}, + [1956] = {.lex_state = 177, .external_lex_state = 15}, + [1957] = {.lex_state = 267, .external_lex_state = 26}, + [1958] = {.lex_state = 73}, + [1959] = {.lex_state = 169, .external_lex_state = 13}, + [1960] = {.lex_state = 169, .external_lex_state = 13}, + [1961] = {.lex_state = 73}, + [1962] = {.lex_state = 243, .external_lex_state = 28}, + [1963] = {.lex_state = 243, .external_lex_state = 28}, + [1964] = {.lex_state = 243, .external_lex_state = 28}, + [1965] = {.lex_state = 243, .external_lex_state = 28}, + [1966] = {.lex_state = 243, .external_lex_state = 26}, + [1967] = {.lex_state = 243, .external_lex_state = 17}, + [1968] = {.lex_state = 182, .external_lex_state = 19}, + [1969] = {.lex_state = 213, .external_lex_state = 24}, + [1970] = {.lex_state = 213, .external_lex_state = 24}, + [1971] = {.lex_state = 213, .external_lex_state = 16}, + [1972] = {.lex_state = 234, .external_lex_state = 16}, + [1973] = {.lex_state = 182, .external_lex_state = 19}, + [1974] = {.lex_state = 232, .external_lex_state = 16}, + [1975] = {.lex_state = 182, .external_lex_state = 19}, + [1976] = {.lex_state = 236}, + [1977] = {.lex_state = 234, .external_lex_state = 16}, + [1978] = {.lex_state = 182, .external_lex_state = 19}, + [1979] = {.lex_state = 236}, + [1980] = {.lex_state = 234, .external_lex_state = 16}, + [1981] = {.lex_state = 236}, + [1982] = {.lex_state = 234, .external_lex_state = 16}, + [1983] = {.lex_state = 234, .external_lex_state = 16}, + [1984] = {.lex_state = 182, .external_lex_state = 19}, + [1985] = {.lex_state = 234, .external_lex_state = 16}, + [1986] = {.lex_state = 247, .external_lex_state = 13}, + [1987] = {.lex_state = 247, .external_lex_state = 13}, + [1988] = {.lex_state = 213, .external_lex_state = 24}, + [1989] = {.lex_state = 213, .external_lex_state = 24}, + [1990] = {.lex_state = 213, .external_lex_state = 16}, + [1991] = {.lex_state = 234, .external_lex_state = 16}, + [1992] = {.lex_state = 247, .external_lex_state = 13}, + [1993] = {.lex_state = 232, .external_lex_state = 16}, + [1994] = {.lex_state = 247, .external_lex_state = 13}, + [1995] = {.lex_state = 236}, + [1996] = {.lex_state = 234, .external_lex_state = 16}, + [1997] = {.lex_state = 247, .external_lex_state = 13}, + [1998] = {.lex_state = 236}, + [1999] = {.lex_state = 234, .external_lex_state = 16}, + [2000] = {.lex_state = 236}, + [2001] = {.lex_state = 234, .external_lex_state = 16}, + [2002] = {.lex_state = 234, .external_lex_state = 16}, + [2003] = {.lex_state = 247, .external_lex_state = 13}, + [2004] = {.lex_state = 234, .external_lex_state = 16}, + [2005] = {.lex_state = 130, .external_lex_state = 21}, + [2006] = {.lex_state = 130, .external_lex_state = 21}, + [2007] = {.lex_state = 130, .external_lex_state = 21}, + [2008] = {.lex_state = 234, .external_lex_state = 16}, + [2009] = {.lex_state = 213, .external_lex_state = 24}, + [2010] = {.lex_state = 213, .external_lex_state = 24}, + [2011] = {.lex_state = 213, .external_lex_state = 16}, + [2012] = {.lex_state = 234, .external_lex_state = 16}, + [2013] = {.lex_state = 130, .external_lex_state = 21}, + [2014] = {.lex_state = 234, .external_lex_state = 16}, + [2015] = {.lex_state = 130, .external_lex_state = 21}, + [2016] = {.lex_state = 234, .external_lex_state = 16}, + [2017] = {.lex_state = 130, .external_lex_state = 21}, + [2018] = {.lex_state = 234, .external_lex_state = 16}, + [2019] = {.lex_state = 130, .external_lex_state = 21}, + [2020] = {.lex_state = 234, .external_lex_state = 16}, + [2021] = {.lex_state = 132, .external_lex_state = 4}, + [2022] = {.lex_state = 213, .external_lex_state = 22}, + [2023] = {.lex_state = 271}, + [2024] = {.lex_state = 271, .external_lex_state = 13}, + [2025] = {.lex_state = 271, .external_lex_state = 13}, + [2026] = {.lex_state = 271, .external_lex_state = 13}, + [2027] = {.lex_state = 151}, + [2028] = {.lex_state = 232, .external_lex_state = 16}, + [2029] = {.lex_state = 271, .external_lex_state = 13}, + [2030] = {.lex_state = 236}, + [2031] = {.lex_state = 234, .external_lex_state = 16}, + [2032] = {.lex_state = 62}, + [2033] = {.lex_state = 157, .external_lex_state = 16}, + [2034] = {.lex_state = 157, .external_lex_state = 16}, + [2035] = {.lex_state = 157, .external_lex_state = 16}, + [2036] = {.lex_state = 271, .external_lex_state = 13}, + [2037] = {.lex_state = 236}, + [2038] = {.lex_state = 234, .external_lex_state = 16}, + [2039] = {.lex_state = 271, .external_lex_state = 13}, + [2040] = {.lex_state = 236}, + [2041] = {.lex_state = 234, .external_lex_state = 16}, + [2042] = {.lex_state = 271, .external_lex_state = 13}, + [2043] = {.lex_state = 271, .external_lex_state = 13}, + [2044] = {.lex_state = 132, .external_lex_state = 4}, + [2045] = {.lex_state = 271}, + [2046] = {.lex_state = 271}, + [2047] = {.lex_state = 269}, + [2048] = {.lex_state = 253, .external_lex_state = 10}, + [2049] = {.lex_state = 253, .external_lex_state = 10}, + [2050] = {.lex_state = 253, .external_lex_state = 10}, + [2051] = {.lex_state = 234, .external_lex_state = 16}, + [2052] = {.lex_state = 213, .external_lex_state = 24}, + [2053] = {.lex_state = 213, .external_lex_state = 24}, + [2054] = {.lex_state = 213, .external_lex_state = 16}, + [2055] = {.lex_state = 234, .external_lex_state = 16}, + [2056] = {.lex_state = 253, .external_lex_state = 10}, + [2057] = {.lex_state = 234, .external_lex_state = 16}, + [2058] = {.lex_state = 253, .external_lex_state = 10}, + [2059] = {.lex_state = 234, .external_lex_state = 16}, + [2060] = {.lex_state = 253, .external_lex_state = 10}, + [2061] = {.lex_state = 234, .external_lex_state = 16}, + [2062] = {.lex_state = 253, .external_lex_state = 10}, + [2063] = {.lex_state = 234, .external_lex_state = 16}, + [2064] = {.lex_state = 271}, + [2065] = {.lex_state = 56, .external_lex_state = 2}, + [2066] = {.lex_state = 132, .external_lex_state = 4}, + [2067] = {.lex_state = 273, .external_lex_state = 13}, + [2068] = {.lex_state = 273, .external_lex_state = 13}, + [2069] = {.lex_state = 273}, + [2070] = {.lex_state = 62}, + [2071] = {.lex_state = 56, .external_lex_state = 2}, + [2072] = {.lex_state = 73}, + [2073] = {.lex_state = 73}, + [2074] = {.lex_state = 75, .external_lex_state = 2}, + [2075] = {.lex_state = 77}, + [2076] = {.lex_state = 77}, + [2077] = {.lex_state = 83, .external_lex_state = 3}, + [2078] = {.lex_state = 83, .external_lex_state = 4}, + [2079] = {.lex_state = 88, .external_lex_state = 5}, + [2080] = {.lex_state = 88, .external_lex_state = 5}, + [2081] = {.lex_state = 109, .external_lex_state = 5}, + [2082] = {.lex_state = 132, .external_lex_state = 4}, + [2083] = {.lex_state = 88, .external_lex_state = 7}, + [2084] = {.lex_state = 113, .external_lex_state = 8}, + [2085] = {.lex_state = 62}, + [2086] = {.lex_state = 179, .external_lex_state = 2}, + [2087] = {.lex_state = 73, .external_lex_state = 2}, + [2088] = {.lex_state = 179, .external_lex_state = 2}, + [2089] = {.lex_state = 273}, + [2090] = {.lex_state = 273, .external_lex_state = 13}, + [2091] = {.lex_state = 73}, + [2092] = {.lex_state = 132, .external_lex_state = 4}, + [2093] = {.lex_state = 113, .external_lex_state = 8}, + [2094] = {.lex_state = 179, .external_lex_state = 2}, + [2095] = {.lex_state = 179, .external_lex_state = 2}, + [2096] = {.lex_state = 132, .external_lex_state = 4}, + [2097] = {.lex_state = 273, .external_lex_state = 13}, + [2098] = {.lex_state = 273, .external_lex_state = 13}, + [2099] = {.lex_state = 273}, + [2100] = {.lex_state = 73}, + [2101] = {.lex_state = 132, .external_lex_state = 4}, + [2102] = {.lex_state = 73}, + [2103] = {.lex_state = 122, .external_lex_state = 10}, + [2104] = {.lex_state = 122, .external_lex_state = 10}, + [2105] = {.lex_state = 122, .external_lex_state = 10}, + [2106] = {.lex_state = 122, .external_lex_state = 10}, + [2107] = {.lex_state = 234, .external_lex_state = 16}, + [2108] = {.lex_state = 122, .external_lex_state = 10}, + [2109] = {.lex_state = 234, .external_lex_state = 16}, + [2110] = {.lex_state = 122, .external_lex_state = 10}, + [2111] = {.lex_state = 234, .external_lex_state = 16}, + [2112] = {.lex_state = 122, .external_lex_state = 10}, + [2113] = {.lex_state = 122, .external_lex_state = 10}, + [2114] = {.lex_state = 132, .external_lex_state = 10}, + [2115] = {.lex_state = 132, .external_lex_state = 10}, + [2116] = {.lex_state = 132, .external_lex_state = 10}, + [2117] = {.lex_state = 132, .external_lex_state = 10}, + [2118] = {.lex_state = 220, .external_lex_state = 27}, + [2119] = {.lex_state = 220, .external_lex_state = 27}, + [2120] = {.lex_state = 220, .external_lex_state = 27}, + [2121] = {.lex_state = 134, .external_lex_state = 11}, + [2122] = {.lex_state = 134, .external_lex_state = 11}, + [2123] = {.lex_state = 134, .external_lex_state = 11}, + [2124] = {.lex_state = 134, .external_lex_state = 11}, + [2125] = {.lex_state = 234, .external_lex_state = 16}, + [2126] = {.lex_state = 134, .external_lex_state = 11}, + [2127] = {.lex_state = 234, .external_lex_state = 16}, + [2128] = {.lex_state = 134, .external_lex_state = 11}, + [2129] = {.lex_state = 234, .external_lex_state = 16}, + [2130] = {.lex_state = 134, .external_lex_state = 11}, + [2131] = {.lex_state = 134, .external_lex_state = 11}, + [2132] = {.lex_state = 245, .external_lex_state = 27}, + [2133] = {.lex_state = 205, .external_lex_state = 27}, + [2134] = {.lex_state = 245, .external_lex_state = 27}, + [2135] = {.lex_state = 151}, + [2136] = {.lex_state = 232, .external_lex_state = 16}, + [2137] = {.lex_state = 245, .external_lex_state = 27}, + [2138] = {.lex_state = 236}, + [2139] = {.lex_state = 234, .external_lex_state = 16}, + [2140] = {.lex_state = 62}, + [2141] = {.lex_state = 157, .external_lex_state = 16}, + [2142] = {.lex_state = 157, .external_lex_state = 16}, + [2143] = {.lex_state = 157, .external_lex_state = 16}, + [2144] = {.lex_state = 245, .external_lex_state = 27}, + [2145] = {.lex_state = 236}, + [2146] = {.lex_state = 234, .external_lex_state = 16}, + [2147] = {.lex_state = 245, .external_lex_state = 27}, + [2148] = {.lex_state = 236}, + [2149] = {.lex_state = 234, .external_lex_state = 16}, + [2150] = {.lex_state = 245, .external_lex_state = 27}, + [2151] = {.lex_state = 245, .external_lex_state = 27}, + [2152] = {.lex_state = 229, .external_lex_state = 13}, + [2153] = {.lex_state = 229, .external_lex_state = 13}, + [2154] = {.lex_state = 229, .external_lex_state = 13}, + [2155] = {.lex_state = 229, .external_lex_state = 13}, + [2156] = {.lex_state = 234, .external_lex_state = 16}, + [2157] = {.lex_state = 229, .external_lex_state = 13}, + [2158] = {.lex_state = 234, .external_lex_state = 16}, + [2159] = {.lex_state = 229, .external_lex_state = 13}, + [2160] = {.lex_state = 234, .external_lex_state = 16}, + [2161] = {.lex_state = 229, .external_lex_state = 13}, + [2162] = {.lex_state = 229, .external_lex_state = 13}, + [2163] = {.lex_state = 126, .external_lex_state = 14}, + [2164] = {.lex_state = 126, .external_lex_state = 14}, + [2165] = {.lex_state = 126, .external_lex_state = 14}, + [2166] = {.lex_state = 126, .external_lex_state = 14}, + [2167] = {.lex_state = 234, .external_lex_state = 16}, + [2168] = {.lex_state = 126, .external_lex_state = 14}, + [2169] = {.lex_state = 234, .external_lex_state = 16}, + [2170] = {.lex_state = 126, .external_lex_state = 14}, + [2171] = {.lex_state = 234, .external_lex_state = 16}, + [2172] = {.lex_state = 126, .external_lex_state = 14}, + [2173] = {.lex_state = 126, .external_lex_state = 14}, + [2174] = {.lex_state = 126, .external_lex_state = 10}, + [2175] = {.lex_state = 126, .external_lex_state = 10}, + [2176] = {.lex_state = 126, .external_lex_state = 10}, + [2177] = {.lex_state = 126, .external_lex_state = 10}, + [2178] = {.lex_state = 234, .external_lex_state = 16}, + [2179] = {.lex_state = 126, .external_lex_state = 10}, + [2180] = {.lex_state = 234, .external_lex_state = 16}, + [2181] = {.lex_state = 126, .external_lex_state = 10}, + [2182] = {.lex_state = 234, .external_lex_state = 16}, + [2183] = {.lex_state = 126, .external_lex_state = 10}, + [2184] = {.lex_state = 126, .external_lex_state = 10}, + [2185] = {.lex_state = 169, .external_lex_state = 15}, + [2186] = {.lex_state = 169, .external_lex_state = 15}, + [2187] = {.lex_state = 169, .external_lex_state = 15}, + [2188] = {.lex_state = 169, .external_lex_state = 15}, + [2189] = {.lex_state = 234, .external_lex_state = 16}, + [2190] = {.lex_state = 169, .external_lex_state = 15}, + [2191] = {.lex_state = 234, .external_lex_state = 16}, + [2192] = {.lex_state = 169, .external_lex_state = 15}, + [2193] = {.lex_state = 234, .external_lex_state = 16}, + [2194] = {.lex_state = 169, .external_lex_state = 15}, + [2195] = {.lex_state = 169, .external_lex_state = 15}, + [2196] = {.lex_state = 91, .external_lex_state = 13}, + [2197] = {.lex_state = 91, .external_lex_state = 13}, + [2198] = {.lex_state = 91, .external_lex_state = 13}, + [2199] = {.lex_state = 91, .external_lex_state = 13}, + [2200] = {.lex_state = 234, .external_lex_state = 16}, + [2201] = {.lex_state = 91, .external_lex_state = 13}, + [2202] = {.lex_state = 234, .external_lex_state = 16}, + [2203] = {.lex_state = 91, .external_lex_state = 13}, + [2204] = {.lex_state = 234, .external_lex_state = 16}, + [2205] = {.lex_state = 91, .external_lex_state = 13}, + [2206] = {.lex_state = 91, .external_lex_state = 13}, + [2207] = {.lex_state = 157, .external_lex_state = 16}, + [2208] = {.lex_state = 157, .external_lex_state = 16}, + [2209] = {.lex_state = 213, .external_lex_state = 24}, + [2210] = {.lex_state = 213, .external_lex_state = 24}, + [2211] = {.lex_state = 213, .external_lex_state = 24}, + [2212] = {.lex_state = 213, .external_lex_state = 24}, + [2213] = {.lex_state = 213, .external_lex_state = 16}, + [2214] = {.lex_state = 234, .external_lex_state = 16}, + [2215] = {.lex_state = 213, .external_lex_state = 24}, + [2216] = {.lex_state = 232, .external_lex_state = 16}, + [2217] = {.lex_state = 213, .external_lex_state = 24}, + [2218] = {.lex_state = 236}, + [2219] = {.lex_state = 234, .external_lex_state = 16}, + [2220] = {.lex_state = 213, .external_lex_state = 24}, + [2221] = {.lex_state = 236}, + [2222] = {.lex_state = 234, .external_lex_state = 16}, + [2223] = {.lex_state = 236}, + [2224] = {.lex_state = 234, .external_lex_state = 16}, + [2225] = {.lex_state = 234, .external_lex_state = 16}, + [2226] = {.lex_state = 213, .external_lex_state = 24}, + [2227] = {.lex_state = 234, .external_lex_state = 16}, + [2228] = {.lex_state = 234, .external_lex_state = 24}, + [2229] = {.lex_state = 234, .external_lex_state = 24}, + [2230] = {.lex_state = 234, .external_lex_state = 24}, + [2231] = {.lex_state = 234, .external_lex_state = 16}, + [2232] = {.lex_state = 213, .external_lex_state = 24}, + [2233] = {.lex_state = 213, .external_lex_state = 24}, + [2234] = {.lex_state = 213, .external_lex_state = 16}, + [2235] = {.lex_state = 234, .external_lex_state = 16}, + [2236] = {.lex_state = 234, .external_lex_state = 24}, + [2237] = {.lex_state = 234, .external_lex_state = 16}, + [2238] = {.lex_state = 234, .external_lex_state = 24}, + [2239] = {.lex_state = 234, .external_lex_state = 16}, + [2240] = {.lex_state = 234, .external_lex_state = 24}, + [2241] = {.lex_state = 234, .external_lex_state = 16}, + [2242] = {.lex_state = 234, .external_lex_state = 24}, + [2243] = {.lex_state = 234, .external_lex_state = 16}, + [2244] = {.lex_state = 115, .external_lex_state = 5}, + [2245] = {.lex_state = 115, .external_lex_state = 5}, + [2246] = {.lex_state = 115, .external_lex_state = 5}, + [2247] = {.lex_state = 213, .external_lex_state = 22}, + [2248] = {.lex_state = 162}, + [2249] = {.lex_state = 269}, + [2250] = {.lex_state = 271}, + [2251] = {.lex_state = 249}, + [2252] = {.lex_state = 162}, + [2253] = {.lex_state = 162}, + [2254] = {.lex_state = 162}, + [2255] = {.lex_state = 73}, + [2256] = {.lex_state = 162}, + [2257] = {.lex_state = 73}, + [2258] = {.lex_state = 162}, + [2259] = {.lex_state = 73}, + [2260] = {.lex_state = 162}, + [2261] = {.lex_state = 73}, + [2262] = {.lex_state = 162}, + [2263] = {.lex_state = 73}, + [2264] = {.lex_state = 162}, + [2265] = {.lex_state = 169, .external_lex_state = 13}, + [2266] = {.lex_state = 169, .external_lex_state = 13}, + [2267] = {.lex_state = 162}, + [2268] = {.lex_state = 169, .external_lex_state = 13}, + [2269] = {.lex_state = 241, .external_lex_state = 28}, + [2270] = {.lex_state = 241, .external_lex_state = 28}, + [2271] = {.lex_state = 265, .external_lex_state = 26}, + [2272] = {.lex_state = 73}, + [2273] = {.lex_state = 241, .external_lex_state = 28}, + [2274] = {.lex_state = 265, .external_lex_state = 28}, + [2275] = {.lex_state = 151}, + [2276] = {.lex_state = 91}, + [2277] = {.lex_state = 265, .external_lex_state = 28}, + [2278] = {.lex_state = 265, .external_lex_state = 28}, + [2279] = {.lex_state = 265, .external_lex_state = 28}, + [2280] = {.lex_state = 62}, + [2281] = {.lex_state = 157, .external_lex_state = 16}, + [2282] = {.lex_state = 160, .external_lex_state = 6}, + [2283] = {.lex_state = 157, .external_lex_state = 16}, + [2284] = {.lex_state = 157, .external_lex_state = 16}, + [2285] = {.lex_state = 162}, + [2286] = {.lex_state = 169, .external_lex_state = 2}, + [2287] = {.lex_state = 162}, + [2288] = {.lex_state = 177, .external_lex_state = 2}, + [2289] = {.lex_state = 162}, + [2290] = {.lex_state = 169, .external_lex_state = 2}, + [2291] = {.lex_state = 162, .external_lex_state = 6}, + [2292] = {.lex_state = 162, .external_lex_state = 25}, + [2293] = {.lex_state = 162, .external_lex_state = 25}, + [2294] = {.lex_state = 162, .external_lex_state = 25}, + [2295] = {.lex_state = 234, .external_lex_state = 16}, + [2296] = {.lex_state = 213, .external_lex_state = 24}, + [2297] = {.lex_state = 213, .external_lex_state = 24}, + [2298] = {.lex_state = 213, .external_lex_state = 16}, + [2299] = {.lex_state = 234, .external_lex_state = 16}, + [2300] = {.lex_state = 162, .external_lex_state = 25}, + [2301] = {.lex_state = 234, .external_lex_state = 16}, + [2302] = {.lex_state = 162, .external_lex_state = 25}, + [2303] = {.lex_state = 234, .external_lex_state = 16}, + [2304] = {.lex_state = 162, .external_lex_state = 25}, + [2305] = {.lex_state = 234, .external_lex_state = 16}, + [2306] = {.lex_state = 162, .external_lex_state = 25}, + [2307] = {.lex_state = 234, .external_lex_state = 16}, + [2308] = {.lex_state = 162, .external_lex_state = 13}, + [2309] = {.lex_state = 162, .external_lex_state = 13}, + [2310] = {.lex_state = 162, .external_lex_state = 13}, + [2311] = {.lex_state = 234, .external_lex_state = 16}, + [2312] = {.lex_state = 213, .external_lex_state = 24}, + [2313] = {.lex_state = 213, .external_lex_state = 24}, + [2314] = {.lex_state = 213, .external_lex_state = 16}, + [2315] = {.lex_state = 234, .external_lex_state = 16}, + [2316] = {.lex_state = 162, .external_lex_state = 13}, + [2317] = {.lex_state = 234, .external_lex_state = 16}, + [2318] = {.lex_state = 162, .external_lex_state = 13}, + [2319] = {.lex_state = 234, .external_lex_state = 16}, + [2320] = {.lex_state = 162, .external_lex_state = 13}, + [2321] = {.lex_state = 234, .external_lex_state = 16}, + [2322] = {.lex_state = 162, .external_lex_state = 13}, + [2323] = {.lex_state = 234, .external_lex_state = 16}, + [2324] = {.lex_state = 164, .external_lex_state = 17}, + [2325] = {.lex_state = 164, .external_lex_state = 17}, + [2326] = {.lex_state = 164, .external_lex_state = 17}, + [2327] = {.lex_state = 164, .external_lex_state = 17}, + [2328] = {.lex_state = 234, .external_lex_state = 16}, + [2329] = {.lex_state = 164, .external_lex_state = 17}, + [2330] = {.lex_state = 234, .external_lex_state = 16}, + [2331] = {.lex_state = 164, .external_lex_state = 17}, + [2332] = {.lex_state = 234, .external_lex_state = 16}, + [2333] = {.lex_state = 164, .external_lex_state = 17}, + [2334] = {.lex_state = 164, .external_lex_state = 17}, + [2335] = {.lex_state = 169, .external_lex_state = 13}, + [2336] = {.lex_state = 169, .external_lex_state = 13}, + [2337] = {.lex_state = 169, .external_lex_state = 13}, + [2338] = {.lex_state = 243, .external_lex_state = 28}, + [2339] = {.lex_state = 243, .external_lex_state = 28}, + [2340] = {.lex_state = 243, .external_lex_state = 28}, + [2341] = {.lex_state = 182, .external_lex_state = 19}, + [2342] = {.lex_state = 182, .external_lex_state = 19}, + [2343] = {.lex_state = 182, .external_lex_state = 19}, + [2344] = {.lex_state = 234, .external_lex_state = 16}, + [2345] = {.lex_state = 213, .external_lex_state = 24}, + [2346] = {.lex_state = 213, .external_lex_state = 24}, + [2347] = {.lex_state = 213, .external_lex_state = 16}, + [2348] = {.lex_state = 234, .external_lex_state = 16}, + [2349] = {.lex_state = 182, .external_lex_state = 19}, + [2350] = {.lex_state = 234, .external_lex_state = 16}, + [2351] = {.lex_state = 182, .external_lex_state = 19}, + [2352] = {.lex_state = 234, .external_lex_state = 16}, + [2353] = {.lex_state = 182, .external_lex_state = 19}, + [2354] = {.lex_state = 234, .external_lex_state = 16}, + [2355] = {.lex_state = 182, .external_lex_state = 19}, + [2356] = {.lex_state = 234, .external_lex_state = 16}, + [2357] = {.lex_state = 247, .external_lex_state = 13}, + [2358] = {.lex_state = 247, .external_lex_state = 13}, + [2359] = {.lex_state = 247, .external_lex_state = 13}, + [2360] = {.lex_state = 234, .external_lex_state = 16}, + [2361] = {.lex_state = 213, .external_lex_state = 24}, + [2362] = {.lex_state = 213, .external_lex_state = 24}, + [2363] = {.lex_state = 213, .external_lex_state = 16}, + [2364] = {.lex_state = 234, .external_lex_state = 16}, + [2365] = {.lex_state = 247, .external_lex_state = 13}, + [2366] = {.lex_state = 234, .external_lex_state = 16}, + [2367] = {.lex_state = 247, .external_lex_state = 13}, + [2368] = {.lex_state = 234, .external_lex_state = 16}, + [2369] = {.lex_state = 247, .external_lex_state = 13}, + [2370] = {.lex_state = 234, .external_lex_state = 16}, + [2371] = {.lex_state = 247, .external_lex_state = 13}, + [2372] = {.lex_state = 234, .external_lex_state = 16}, + [2373] = {.lex_state = 130, .external_lex_state = 21}, + [2374] = {.lex_state = 130, .external_lex_state = 21}, + [2375] = {.lex_state = 130, .external_lex_state = 21}, + [2376] = {.lex_state = 130, .external_lex_state = 21}, + [2377] = {.lex_state = 234, .external_lex_state = 16}, + [2378] = {.lex_state = 130, .external_lex_state = 21}, + [2379] = {.lex_state = 234, .external_lex_state = 16}, + [2380] = {.lex_state = 130, .external_lex_state = 21}, + [2381] = {.lex_state = 234, .external_lex_state = 16}, + [2382] = {.lex_state = 130, .external_lex_state = 21}, + [2383] = {.lex_state = 130, .external_lex_state = 21}, + [2384] = {.lex_state = 132, .external_lex_state = 4}, + [2385] = {.lex_state = 271, .external_lex_state = 13}, + [2386] = {.lex_state = 271, .external_lex_state = 13}, + [2387] = {.lex_state = 213, .external_lex_state = 24}, + [2388] = {.lex_state = 213, .external_lex_state = 24}, + [2389] = {.lex_state = 213, .external_lex_state = 16}, + [2390] = {.lex_state = 234, .external_lex_state = 16}, + [2391] = {.lex_state = 271, .external_lex_state = 13}, + [2392] = {.lex_state = 232, .external_lex_state = 16}, + [2393] = {.lex_state = 271, .external_lex_state = 13}, + [2394] = {.lex_state = 236}, + [2395] = {.lex_state = 234, .external_lex_state = 16}, + [2396] = {.lex_state = 271, .external_lex_state = 13}, + [2397] = {.lex_state = 236}, + [2398] = {.lex_state = 234, .external_lex_state = 16}, + [2399] = {.lex_state = 236}, + [2400] = {.lex_state = 234, .external_lex_state = 16}, + [2401] = {.lex_state = 234, .external_lex_state = 16}, + [2402] = {.lex_state = 271, .external_lex_state = 13}, + [2403] = {.lex_state = 234, .external_lex_state = 16}, + [2404] = {.lex_state = 132, .external_lex_state = 4}, + [2405] = {.lex_state = 253, .external_lex_state = 10}, + [2406] = {.lex_state = 253, .external_lex_state = 10}, + [2407] = {.lex_state = 253, .external_lex_state = 10}, + [2408] = {.lex_state = 253, .external_lex_state = 10}, + [2409] = {.lex_state = 234, .external_lex_state = 16}, + [2410] = {.lex_state = 253, .external_lex_state = 10}, + [2411] = {.lex_state = 234, .external_lex_state = 16}, + [2412] = {.lex_state = 253, .external_lex_state = 10}, + [2413] = {.lex_state = 234, .external_lex_state = 16}, + [2414] = {.lex_state = 253, .external_lex_state = 10}, + [2415] = {.lex_state = 253, .external_lex_state = 10}, + [2416] = {.lex_state = 269}, + [2417] = {.lex_state = 117, .external_lex_state = 9}, + [2418] = {.lex_state = 73}, + [2419] = {.lex_state = 124}, + [2420] = {.lex_state = 134, .external_lex_state = 12}, + [2421] = {.lex_state = 147}, + [2422] = {.lex_state = 62}, + [2423] = {.lex_state = 83, .external_lex_state = 14}, + [2424] = {.lex_state = 91}, + [2425] = {.lex_state = 98}, + [2426] = {.lex_state = 83, .external_lex_state = 14}, + [2427] = {.lex_state = 107, .external_lex_state = 6}, + [2428] = {.lex_state = 56, .external_lex_state = 2}, + [2429] = {.lex_state = 56, .external_lex_state = 2}, + [2430] = {.lex_state = 56, .external_lex_state = 2}, + [2431] = {.lex_state = 83, .external_lex_state = 3}, + [2432] = {.lex_state = 83, .external_lex_state = 3}, + [2433] = {.lex_state = 62}, + [2434] = {.lex_state = 83, .external_lex_state = 3}, + [2435] = {.lex_state = 83, .external_lex_state = 10}, + [2436] = {.lex_state = 91}, + [2437] = {.lex_state = 98}, + [2438] = {.lex_state = 83, .external_lex_state = 10}, + [2439] = {.lex_state = 107, .external_lex_state = 6}, + [2440] = {.lex_state = 56, .external_lex_state = 2}, + [2441] = {.lex_state = 56, .external_lex_state = 2}, + [2442] = {.lex_state = 56, .external_lex_state = 2}, + [2443] = {.lex_state = 83, .external_lex_state = 4}, + [2444] = {.lex_state = 83, .external_lex_state = 4}, + [2445] = {.lex_state = 88, .external_lex_state = 5}, + [2446] = {.lex_state = 77}, + [2447] = {.lex_state = 56, .external_lex_state = 2}, + [2448] = {.lex_state = 179, .external_lex_state = 2}, + [2449] = {.lex_state = 56, .external_lex_state = 2}, + [2450] = {.lex_state = 56}, + [2451] = {.lex_state = 185}, + [2452] = {.lex_state = 73}, + [2453] = {.lex_state = 73}, + [2454] = {.lex_state = 88, .external_lex_state = 5}, + [2455] = {.lex_state = 88, .external_lex_state = 5}, + [2456] = {.lex_state = 278, .external_lex_state = 7}, + [2457] = {.lex_state = 88, .external_lex_state = 7}, + [2458] = {.lex_state = 73}, + [2459] = {.lex_state = 132, .external_lex_state = 4}, + [2460] = {.lex_state = 113, .external_lex_state = 8}, + [2461] = {.lex_state = 179, .external_lex_state = 2}, + [2462] = {.lex_state = 88, .external_lex_state = 7}, + [2463] = {.lex_state = 179, .external_lex_state = 2}, + [2464] = {.lex_state = 179, .external_lex_state = 2}, + [2465] = {.lex_state = 73}, + [2466] = {.lex_state = 132, .external_lex_state = 4}, + [2467] = {.lex_state = 113, .external_lex_state = 8}, + [2468] = {.lex_state = 179, .external_lex_state = 2}, + [2469] = {.lex_state = 179, .external_lex_state = 2}, + [2470] = {.lex_state = 273}, + [2471] = {.lex_state = 179, .external_lex_state = 2}, + [2472] = {.lex_state = 273}, + [2473] = {.lex_state = 132, .external_lex_state = 4}, + [2474] = {.lex_state = 132, .external_lex_state = 4}, + [2475] = {.lex_state = 122, .external_lex_state = 10}, + [2476] = {.lex_state = 122, .external_lex_state = 10}, + [2477] = {.lex_state = 122, .external_lex_state = 10}, + [2478] = {.lex_state = 132, .external_lex_state = 10}, + [2479] = {.lex_state = 220, .external_lex_state = 27}, + [2480] = {.lex_state = 134, .external_lex_state = 11}, + [2481] = {.lex_state = 134, .external_lex_state = 11}, + [2482] = {.lex_state = 134, .external_lex_state = 11}, + [2483] = {.lex_state = 245, .external_lex_state = 27}, + [2484] = {.lex_state = 245, .external_lex_state = 27}, + [2485] = {.lex_state = 213, .external_lex_state = 24}, + [2486] = {.lex_state = 213, .external_lex_state = 24}, + [2487] = {.lex_state = 213, .external_lex_state = 16}, + [2488] = {.lex_state = 234, .external_lex_state = 16}, + [2489] = {.lex_state = 245, .external_lex_state = 27}, + [2490] = {.lex_state = 232, .external_lex_state = 16}, + [2491] = {.lex_state = 245, .external_lex_state = 27}, + [2492] = {.lex_state = 236}, + [2493] = {.lex_state = 234, .external_lex_state = 16}, + [2494] = {.lex_state = 245, .external_lex_state = 27}, + [2495] = {.lex_state = 236}, + [2496] = {.lex_state = 234, .external_lex_state = 16}, + [2497] = {.lex_state = 236}, + [2498] = {.lex_state = 234, .external_lex_state = 16}, + [2499] = {.lex_state = 234, .external_lex_state = 16}, + [2500] = {.lex_state = 245, .external_lex_state = 27}, + [2501] = {.lex_state = 234, .external_lex_state = 16}, + [2502] = {.lex_state = 229, .external_lex_state = 13}, + [2503] = {.lex_state = 229, .external_lex_state = 13}, + [2504] = {.lex_state = 229, .external_lex_state = 13}, + [2505] = {.lex_state = 126, .external_lex_state = 14}, + [2506] = {.lex_state = 126, .external_lex_state = 14}, + [2507] = {.lex_state = 126, .external_lex_state = 14}, + [2508] = {.lex_state = 126, .external_lex_state = 10}, + [2509] = {.lex_state = 126, .external_lex_state = 10}, + [2510] = {.lex_state = 126, .external_lex_state = 10}, + [2511] = {.lex_state = 169, .external_lex_state = 15}, + [2512] = {.lex_state = 169, .external_lex_state = 15}, + [2513] = {.lex_state = 169, .external_lex_state = 15}, + [2514] = {.lex_state = 91, .external_lex_state = 13}, + [2515] = {.lex_state = 91, .external_lex_state = 13}, + [2516] = {.lex_state = 91, .external_lex_state = 13}, + [2517] = {.lex_state = 213, .external_lex_state = 24}, + [2518] = {.lex_state = 213, .external_lex_state = 24}, + [2519] = {.lex_state = 213, .external_lex_state = 24}, + [2520] = {.lex_state = 234, .external_lex_state = 16}, + [2521] = {.lex_state = 213, .external_lex_state = 24}, + [2522] = {.lex_state = 213, .external_lex_state = 24}, + [2523] = {.lex_state = 213, .external_lex_state = 16}, + [2524] = {.lex_state = 234, .external_lex_state = 16}, + [2525] = {.lex_state = 213, .external_lex_state = 24}, + [2526] = {.lex_state = 234, .external_lex_state = 16}, + [2527] = {.lex_state = 213, .external_lex_state = 24}, + [2528] = {.lex_state = 234, .external_lex_state = 16}, + [2529] = {.lex_state = 213, .external_lex_state = 24}, + [2530] = {.lex_state = 234, .external_lex_state = 16}, + [2531] = {.lex_state = 213, .external_lex_state = 24}, + [2532] = {.lex_state = 234, .external_lex_state = 16}, + [2533] = {.lex_state = 234, .external_lex_state = 24}, + [2534] = {.lex_state = 234, .external_lex_state = 24}, + [2535] = {.lex_state = 234, .external_lex_state = 24}, + [2536] = {.lex_state = 234, .external_lex_state = 24}, + [2537] = {.lex_state = 234, .external_lex_state = 16}, + [2538] = {.lex_state = 234, .external_lex_state = 24}, + [2539] = {.lex_state = 234, .external_lex_state = 16}, + [2540] = {.lex_state = 234, .external_lex_state = 24}, + [2541] = {.lex_state = 234, .external_lex_state = 16}, + [2542] = {.lex_state = 234, .external_lex_state = 24}, + [2543] = {.lex_state = 234, .external_lex_state = 24}, + [2544] = {.lex_state = 162}, + [2545] = {.lex_state = 213, .external_lex_state = 22}, + [2546] = {.lex_state = 162}, + [2547] = {.lex_state = 269}, + [2548] = {.lex_state = 271}, + [2549] = {.lex_state = 162}, + [2550] = {.lex_state = 162}, + [2551] = {.lex_state = 73}, + [2552] = {.lex_state = 162}, + [2553] = {.lex_state = 73}, + [2554] = {.lex_state = 169, .external_lex_state = 13}, + [2555] = {.lex_state = 265, .external_lex_state = 28}, + [2556] = {.lex_state = 241, .external_lex_state = 28}, + [2557] = {.lex_state = 265, .external_lex_state = 28}, + [2558] = {.lex_state = 151}, + [2559] = {.lex_state = 232, .external_lex_state = 16}, + [2560] = {.lex_state = 265, .external_lex_state = 28}, + [2561] = {.lex_state = 236}, + [2562] = {.lex_state = 234, .external_lex_state = 16}, + [2563] = {.lex_state = 62}, + [2564] = {.lex_state = 157, .external_lex_state = 16}, + [2565] = {.lex_state = 157, .external_lex_state = 16}, + [2566] = {.lex_state = 157, .external_lex_state = 16}, + [2567] = {.lex_state = 265, .external_lex_state = 28}, + [2568] = {.lex_state = 236}, + [2569] = {.lex_state = 234, .external_lex_state = 16}, + [2570] = {.lex_state = 265, .external_lex_state = 28}, + [2571] = {.lex_state = 236}, + [2572] = {.lex_state = 234, .external_lex_state = 16}, + [2573] = {.lex_state = 265, .external_lex_state = 28}, + [2574] = {.lex_state = 265, .external_lex_state = 28}, + [2575] = {.lex_state = 162, .external_lex_state = 25}, + [2576] = {.lex_state = 162, .external_lex_state = 25}, + [2577] = {.lex_state = 162, .external_lex_state = 25}, + [2578] = {.lex_state = 162, .external_lex_state = 25}, + [2579] = {.lex_state = 234, .external_lex_state = 16}, + [2580] = {.lex_state = 162, .external_lex_state = 25}, + [2581] = {.lex_state = 234, .external_lex_state = 16}, + [2582] = {.lex_state = 162, .external_lex_state = 25}, + [2583] = {.lex_state = 234, .external_lex_state = 16}, + [2584] = {.lex_state = 162, .external_lex_state = 25}, + [2585] = {.lex_state = 162, .external_lex_state = 25}, + [2586] = {.lex_state = 162, .external_lex_state = 13}, + [2587] = {.lex_state = 162, .external_lex_state = 13}, + [2588] = {.lex_state = 162, .external_lex_state = 13}, + [2589] = {.lex_state = 162, .external_lex_state = 13}, + [2590] = {.lex_state = 234, .external_lex_state = 16}, + [2591] = {.lex_state = 162, .external_lex_state = 13}, + [2592] = {.lex_state = 234, .external_lex_state = 16}, + [2593] = {.lex_state = 162, .external_lex_state = 13}, + [2594] = {.lex_state = 234, .external_lex_state = 16}, + [2595] = {.lex_state = 162, .external_lex_state = 13}, + [2596] = {.lex_state = 162, .external_lex_state = 13}, + [2597] = {.lex_state = 164, .external_lex_state = 17}, + [2598] = {.lex_state = 164, .external_lex_state = 17}, + [2599] = {.lex_state = 164, .external_lex_state = 17}, + [2600] = {.lex_state = 169, .external_lex_state = 13}, + [2601] = {.lex_state = 243, .external_lex_state = 28}, + [2602] = {.lex_state = 182, .external_lex_state = 19}, + [2603] = {.lex_state = 182, .external_lex_state = 19}, + [2604] = {.lex_state = 182, .external_lex_state = 19}, + [2605] = {.lex_state = 182, .external_lex_state = 19}, + [2606] = {.lex_state = 234, .external_lex_state = 16}, + [2607] = {.lex_state = 182, .external_lex_state = 19}, + [2608] = {.lex_state = 234, .external_lex_state = 16}, + [2609] = {.lex_state = 182, .external_lex_state = 19}, + [2610] = {.lex_state = 234, .external_lex_state = 16}, + [2611] = {.lex_state = 182, .external_lex_state = 19}, + [2612] = {.lex_state = 182, .external_lex_state = 19}, + [2613] = {.lex_state = 247, .external_lex_state = 13}, + [2614] = {.lex_state = 247, .external_lex_state = 13}, + [2615] = {.lex_state = 247, .external_lex_state = 13}, + [2616] = {.lex_state = 247, .external_lex_state = 13}, + [2617] = {.lex_state = 234, .external_lex_state = 16}, + [2618] = {.lex_state = 247, .external_lex_state = 13}, + [2619] = {.lex_state = 234, .external_lex_state = 16}, + [2620] = {.lex_state = 247, .external_lex_state = 13}, + [2621] = {.lex_state = 234, .external_lex_state = 16}, + [2622] = {.lex_state = 247, .external_lex_state = 13}, + [2623] = {.lex_state = 247, .external_lex_state = 13}, + [2624] = {.lex_state = 130, .external_lex_state = 21}, + [2625] = {.lex_state = 130, .external_lex_state = 21}, + [2626] = {.lex_state = 130, .external_lex_state = 21}, + [2627] = {.lex_state = 271, .external_lex_state = 13}, + [2628] = {.lex_state = 271, .external_lex_state = 13}, + [2629] = {.lex_state = 271, .external_lex_state = 13}, + [2630] = {.lex_state = 234, .external_lex_state = 16}, + [2631] = {.lex_state = 213, .external_lex_state = 24}, + [2632] = {.lex_state = 213, .external_lex_state = 24}, + [2633] = {.lex_state = 213, .external_lex_state = 16}, + [2634] = {.lex_state = 234, .external_lex_state = 16}, + [2635] = {.lex_state = 271, .external_lex_state = 13}, + [2636] = {.lex_state = 234, .external_lex_state = 16}, + [2637] = {.lex_state = 271, .external_lex_state = 13}, + [2638] = {.lex_state = 234, .external_lex_state = 16}, + [2639] = {.lex_state = 271, .external_lex_state = 13}, + [2640] = {.lex_state = 234, .external_lex_state = 16}, + [2641] = {.lex_state = 271, .external_lex_state = 13}, + [2642] = {.lex_state = 234, .external_lex_state = 16}, + [2643] = {.lex_state = 253, .external_lex_state = 10}, + [2644] = {.lex_state = 253, .external_lex_state = 10}, + [2645] = {.lex_state = 253, .external_lex_state = 10}, + [2646] = {.lex_state = 132, .external_lex_state = 4}, + [2647] = {.lex_state = 113, .external_lex_state = 21}, + [2648] = {.lex_state = 113, .external_lex_state = 21}, + [2649] = {.lex_state = 278, .external_lex_state = 7}, + [2650] = {.lex_state = 77}, + [2651] = {.lex_state = 280, .external_lex_state = 23}, + [2652] = {.lex_state = 278, .external_lex_state = 23}, + [2653] = {.lex_state = 117, .external_lex_state = 9}, + [2654] = {.lex_state = 73}, + [2655] = {.lex_state = 83, .external_lex_state = 14}, + [2656] = {.lex_state = 83, .external_lex_state = 14}, + [2657] = {.lex_state = 151}, + [2658] = {.lex_state = 91}, + [2659] = {.lex_state = 83, .external_lex_state = 14}, + [2660] = {.lex_state = 83, .external_lex_state = 14}, + [2661] = {.lex_state = 83, .external_lex_state = 14}, + [2662] = {.lex_state = 62}, + [2663] = {.lex_state = 157, .external_lex_state = 16}, + [2664] = {.lex_state = 160, .external_lex_state = 6}, + [2665] = {.lex_state = 157, .external_lex_state = 16}, + [2666] = {.lex_state = 157, .external_lex_state = 16}, + [2667] = {.lex_state = 162}, + [2668] = {.lex_state = 169, .external_lex_state = 2}, + [2669] = {.lex_state = 162}, + [2670] = {.lex_state = 177, .external_lex_state = 2}, + [2671] = {.lex_state = 162}, + [2672] = {.lex_state = 169, .external_lex_state = 2}, + [2673] = {.lex_state = 83, .external_lex_state = 3}, + [2674] = {.lex_state = 73}, + [2675] = {.lex_state = 83, .external_lex_state = 10}, + [2676] = {.lex_state = 83, .external_lex_state = 10}, + [2677] = {.lex_state = 151}, + [2678] = {.lex_state = 91}, + [2679] = {.lex_state = 83, .external_lex_state = 10}, + [2680] = {.lex_state = 83, .external_lex_state = 10}, + [2681] = {.lex_state = 83, .external_lex_state = 10}, + [2682] = {.lex_state = 62}, + [2683] = {.lex_state = 157, .external_lex_state = 16}, + [2684] = {.lex_state = 160, .external_lex_state = 6}, + [2685] = {.lex_state = 157, .external_lex_state = 16}, + [2686] = {.lex_state = 157, .external_lex_state = 16}, + [2687] = {.lex_state = 162}, + [2688] = {.lex_state = 169, .external_lex_state = 2}, + [2689] = {.lex_state = 162}, + [2690] = {.lex_state = 177, .external_lex_state = 2}, + [2691] = {.lex_state = 162}, + [2692] = {.lex_state = 169, .external_lex_state = 2}, + [2693] = {.lex_state = 83, .external_lex_state = 4}, + [2694] = {.lex_state = 88, .external_lex_state = 5}, + [2695] = {.lex_state = 124}, + [2696] = {.lex_state = 132, .external_lex_state = 4}, + [2697] = {.lex_state = 113, .external_lex_state = 8}, + [2698] = {.lex_state = 73}, + [2699] = {.lex_state = 88, .external_lex_state = 5}, + [2700] = {.lex_state = 88, .external_lex_state = 5}, + [2701] = {.lex_state = 278, .external_lex_state = 5}, + [2702] = {.lex_state = 278, .external_lex_state = 5}, + [2703] = {.lex_state = 278, .external_lex_state = 5}, + [2704] = {.lex_state = 278, .external_lex_state = 5}, + [2705] = {.lex_state = 278, .external_lex_state = 7}, + [2706] = {.lex_state = 278, .external_lex_state = 7}, + [2707] = {.lex_state = 88, .external_lex_state = 7}, + [2708] = {.lex_state = 179, .external_lex_state = 2}, + [2709] = {.lex_state = 88, .external_lex_state = 7}, + [2710] = {.lex_state = 73}, + [2711] = {.lex_state = 132, .external_lex_state = 4}, + [2712] = {.lex_state = 113, .external_lex_state = 8}, + [2713] = {.lex_state = 179, .external_lex_state = 2}, + [2714] = {.lex_state = 73}, + [2715] = {.lex_state = 132, .external_lex_state = 4}, + [2716] = {.lex_state = 113, .external_lex_state = 8}, + [2717] = {.lex_state = 73}, + [2718] = {.lex_state = 83, .external_lex_state = 4}, + [2719] = {.lex_state = 113, .external_lex_state = 8}, + [2720] = {.lex_state = 179, .external_lex_state = 2}, + [2721] = {.lex_state = 179, .external_lex_state = 2}, + [2722] = {.lex_state = 73}, + [2723] = {.lex_state = 83, .external_lex_state = 4}, + [2724] = {.lex_state = 113, .external_lex_state = 8}, + [2725] = {.lex_state = 179, .external_lex_state = 2}, + [2726] = {.lex_state = 179, .external_lex_state = 2}, + [2727] = {.lex_state = 245, .external_lex_state = 27}, + [2728] = {.lex_state = 245, .external_lex_state = 27}, + [2729] = {.lex_state = 245, .external_lex_state = 27}, + [2730] = {.lex_state = 234, .external_lex_state = 16}, + [2731] = {.lex_state = 213, .external_lex_state = 24}, + [2732] = {.lex_state = 213, .external_lex_state = 24}, + [2733] = {.lex_state = 213, .external_lex_state = 16}, + [2734] = {.lex_state = 234, .external_lex_state = 16}, + [2735] = {.lex_state = 245, .external_lex_state = 27}, + [2736] = {.lex_state = 234, .external_lex_state = 16}, + [2737] = {.lex_state = 245, .external_lex_state = 27}, + [2738] = {.lex_state = 234, .external_lex_state = 16}, + [2739] = {.lex_state = 245, .external_lex_state = 27}, + [2740] = {.lex_state = 234, .external_lex_state = 16}, + [2741] = {.lex_state = 245, .external_lex_state = 27}, + [2742] = {.lex_state = 234, .external_lex_state = 16}, + [2743] = {.lex_state = 213, .external_lex_state = 24}, + [2744] = {.lex_state = 213, .external_lex_state = 24}, + [2745] = {.lex_state = 213, .external_lex_state = 24}, + [2746] = {.lex_state = 213, .external_lex_state = 24}, + [2747] = {.lex_state = 234, .external_lex_state = 16}, + [2748] = {.lex_state = 213, .external_lex_state = 24}, + [2749] = {.lex_state = 234, .external_lex_state = 16}, + [2750] = {.lex_state = 213, .external_lex_state = 24}, + [2751] = {.lex_state = 234, .external_lex_state = 16}, + [2752] = {.lex_state = 213, .external_lex_state = 24}, + [2753] = {.lex_state = 213, .external_lex_state = 24}, + [2754] = {.lex_state = 234, .external_lex_state = 24}, + [2755] = {.lex_state = 234, .external_lex_state = 24}, + [2756] = {.lex_state = 234, .external_lex_state = 24}, + [2757] = {.lex_state = 162}, + [2758] = {.lex_state = 162}, + [2759] = {.lex_state = 269}, + [2760] = {.lex_state = 162}, + [2761] = {.lex_state = 162}, + [2762] = {.lex_state = 265, .external_lex_state = 28}, + [2763] = {.lex_state = 265, .external_lex_state = 28}, + [2764] = {.lex_state = 213, .external_lex_state = 24}, + [2765] = {.lex_state = 213, .external_lex_state = 24}, + [2766] = {.lex_state = 213, .external_lex_state = 16}, + [2767] = {.lex_state = 234, .external_lex_state = 16}, + [2768] = {.lex_state = 265, .external_lex_state = 28}, + [2769] = {.lex_state = 232, .external_lex_state = 16}, + [2770] = {.lex_state = 265, .external_lex_state = 28}, + [2771] = {.lex_state = 236}, + [2772] = {.lex_state = 234, .external_lex_state = 16}, + [2773] = {.lex_state = 265, .external_lex_state = 28}, + [2774] = {.lex_state = 236}, + [2775] = {.lex_state = 234, .external_lex_state = 16}, + [2776] = {.lex_state = 236}, + [2777] = {.lex_state = 234, .external_lex_state = 16}, + [2778] = {.lex_state = 234, .external_lex_state = 16}, + [2779] = {.lex_state = 265, .external_lex_state = 28}, + [2780] = {.lex_state = 234, .external_lex_state = 16}, + [2781] = {.lex_state = 162, .external_lex_state = 25}, + [2782] = {.lex_state = 162, .external_lex_state = 25}, + [2783] = {.lex_state = 162, .external_lex_state = 25}, + [2784] = {.lex_state = 162, .external_lex_state = 13}, + [2785] = {.lex_state = 162, .external_lex_state = 13}, + [2786] = {.lex_state = 162, .external_lex_state = 13}, + [2787] = {.lex_state = 182, .external_lex_state = 19}, + [2788] = {.lex_state = 182, .external_lex_state = 19}, + [2789] = {.lex_state = 182, .external_lex_state = 19}, + [2790] = {.lex_state = 247, .external_lex_state = 13}, + [2791] = {.lex_state = 247, .external_lex_state = 13}, + [2792] = {.lex_state = 247, .external_lex_state = 13}, + [2793] = {.lex_state = 271, .external_lex_state = 13}, + [2794] = {.lex_state = 271, .external_lex_state = 13}, + [2795] = {.lex_state = 271, .external_lex_state = 13}, + [2796] = {.lex_state = 271, .external_lex_state = 13}, + [2797] = {.lex_state = 234, .external_lex_state = 16}, + [2798] = {.lex_state = 271, .external_lex_state = 13}, + [2799] = {.lex_state = 234, .external_lex_state = 16}, + [2800] = {.lex_state = 271, .external_lex_state = 13}, + [2801] = {.lex_state = 234, .external_lex_state = 16}, + [2802] = {.lex_state = 271, .external_lex_state = 13}, + [2803] = {.lex_state = 271, .external_lex_state = 13}, + [2804] = {.lex_state = 113, .external_lex_state = 21}, + [2805] = {.lex_state = 278, .external_lex_state = 7}, + [2806] = {.lex_state = 124}, + [2807] = {.lex_state = 56}, + [2808] = {.lex_state = 73}, + [2809] = {.lex_state = 56}, + [2810] = {.lex_state = 73}, + [2811] = {.lex_state = 73}, + [2812] = {.lex_state = 278, .external_lex_state = 23}, + [2813] = {.lex_state = 83, .external_lex_state = 3}, + [2814] = {.lex_state = 169}, + [2815] = {.lex_state = 83, .external_lex_state = 14}, + [2816] = {.lex_state = 83, .external_lex_state = 14}, + [2817] = {.lex_state = 83, .external_lex_state = 14}, + [2818] = {.lex_state = 83, .external_lex_state = 14}, + [2819] = {.lex_state = 83, .external_lex_state = 14}, + [2820] = {.lex_state = 151}, + [2821] = {.lex_state = 232, .external_lex_state = 16}, + [2822] = {.lex_state = 83, .external_lex_state = 14}, + [2823] = {.lex_state = 236}, + [2824] = {.lex_state = 234, .external_lex_state = 16}, + [2825] = {.lex_state = 62}, + [2826] = {.lex_state = 157, .external_lex_state = 16}, + [2827] = {.lex_state = 157, .external_lex_state = 16}, + [2828] = {.lex_state = 157, .external_lex_state = 16}, + [2829] = {.lex_state = 83, .external_lex_state = 14}, + [2830] = {.lex_state = 236}, + [2831] = {.lex_state = 234, .external_lex_state = 16}, + [2832] = {.lex_state = 83, .external_lex_state = 14}, + [2833] = {.lex_state = 236}, + [2834] = {.lex_state = 234, .external_lex_state = 16}, + [2835] = {.lex_state = 83, .external_lex_state = 14}, + [2836] = {.lex_state = 83, .external_lex_state = 14}, + [2837] = {.lex_state = 83, .external_lex_state = 10}, + [2838] = {.lex_state = 83, .external_lex_state = 10}, + [2839] = {.lex_state = 83, .external_lex_state = 10}, + [2840] = {.lex_state = 151}, + [2841] = {.lex_state = 232, .external_lex_state = 16}, + [2842] = {.lex_state = 83, .external_lex_state = 10}, + [2843] = {.lex_state = 236}, + [2844] = {.lex_state = 234, .external_lex_state = 16}, + [2845] = {.lex_state = 62}, + [2846] = {.lex_state = 157, .external_lex_state = 16}, + [2847] = {.lex_state = 157, .external_lex_state = 16}, + [2848] = {.lex_state = 157, .external_lex_state = 16}, + [2849] = {.lex_state = 83, .external_lex_state = 10}, + [2850] = {.lex_state = 236}, + [2851] = {.lex_state = 234, .external_lex_state = 16}, + [2852] = {.lex_state = 83, .external_lex_state = 10}, + [2853] = {.lex_state = 236}, + [2854] = {.lex_state = 234, .external_lex_state = 16}, + [2855] = {.lex_state = 83, .external_lex_state = 10}, + [2856] = {.lex_state = 83, .external_lex_state = 10}, + [2857] = {.lex_state = 280, .external_lex_state = 23}, + [2858] = {.lex_state = 278, .external_lex_state = 5}, + [2859] = {.lex_state = 278, .external_lex_state = 5}, + [2860] = {.lex_state = 278, .external_lex_state = 5}, + [2861] = {.lex_state = 278, .external_lex_state = 7}, + [2862] = {.lex_state = 179, .external_lex_state = 2}, + [2863] = {.lex_state = 179, .external_lex_state = 2}, + [2864] = {.lex_state = 179, .external_lex_state = 2}, + [2865] = {.lex_state = 73}, + [2866] = {.lex_state = 83, .external_lex_state = 4}, + [2867] = {.lex_state = 113, .external_lex_state = 8}, + [2868] = {.lex_state = 179, .external_lex_state = 2}, + [2869] = {.lex_state = 179, .external_lex_state = 2}, + [2870] = {.lex_state = 179, .external_lex_state = 2}, + [2871] = {.lex_state = 73}, + [2872] = {.lex_state = 83, .external_lex_state = 4}, + [2873] = {.lex_state = 113, .external_lex_state = 8}, + [2874] = {.lex_state = 179, .external_lex_state = 2}, + [2875] = {.lex_state = 245, .external_lex_state = 27}, + [2876] = {.lex_state = 245, .external_lex_state = 27}, + [2877] = {.lex_state = 245, .external_lex_state = 27}, + [2878] = {.lex_state = 245, .external_lex_state = 27}, + [2879] = {.lex_state = 234, .external_lex_state = 16}, + [2880] = {.lex_state = 245, .external_lex_state = 27}, + [2881] = {.lex_state = 234, .external_lex_state = 16}, + [2882] = {.lex_state = 245, .external_lex_state = 27}, + [2883] = {.lex_state = 234, .external_lex_state = 16}, + [2884] = {.lex_state = 245, .external_lex_state = 27}, + [2885] = {.lex_state = 245, .external_lex_state = 27}, + [2886] = {.lex_state = 213, .external_lex_state = 24}, + [2887] = {.lex_state = 213, .external_lex_state = 24}, + [2888] = {.lex_state = 213, .external_lex_state = 24}, + [2889] = {.lex_state = 162}, + [2890] = {.lex_state = 265, .external_lex_state = 28}, + [2891] = {.lex_state = 265, .external_lex_state = 28}, + [2892] = {.lex_state = 265, .external_lex_state = 28}, + [2893] = {.lex_state = 234, .external_lex_state = 16}, + [2894] = {.lex_state = 213, .external_lex_state = 24}, + [2895] = {.lex_state = 213, .external_lex_state = 24}, + [2896] = {.lex_state = 213, .external_lex_state = 16}, + [2897] = {.lex_state = 234, .external_lex_state = 16}, + [2898] = {.lex_state = 265, .external_lex_state = 28}, + [2899] = {.lex_state = 234, .external_lex_state = 16}, + [2900] = {.lex_state = 265, .external_lex_state = 28}, + [2901] = {.lex_state = 234, .external_lex_state = 16}, + [2902] = {.lex_state = 265, .external_lex_state = 28}, + [2903] = {.lex_state = 234, .external_lex_state = 16}, + [2904] = {.lex_state = 265, .external_lex_state = 28}, + [2905] = {.lex_state = 234, .external_lex_state = 16}, + [2906] = {.lex_state = 271, .external_lex_state = 13}, + [2907] = {.lex_state = 271, .external_lex_state = 13}, + [2908] = {.lex_state = 271, .external_lex_state = 13}, + [2909] = {.lex_state = 113, .external_lex_state = 21}, + [2910] = {.lex_state = 280, .external_lex_state = 23}, + [2911] = {.lex_state = 73}, + [2912] = {.lex_state = 132, .external_lex_state = 10}, + [2913] = {.lex_state = 132, .external_lex_state = 10}, + [2914] = {.lex_state = 73}, + [2915] = {.lex_state = 278, .external_lex_state = 27}, + [2916] = {.lex_state = 278, .external_lex_state = 27}, + [2917] = {.lex_state = 278, .external_lex_state = 27}, + [2918] = {.lex_state = 278, .external_lex_state = 27}, + [2919] = {.lex_state = 278, .external_lex_state = 23}, + [2920] = {.lex_state = 83, .external_lex_state = 3}, + [2921] = {.lex_state = 169}, + [2922] = {.lex_state = 83, .external_lex_state = 14}, + [2923] = {.lex_state = 83, .external_lex_state = 14}, + [2924] = {.lex_state = 213, .external_lex_state = 24}, + [2925] = {.lex_state = 213, .external_lex_state = 24}, + [2926] = {.lex_state = 213, .external_lex_state = 16}, + [2927] = {.lex_state = 234, .external_lex_state = 16}, + [2928] = {.lex_state = 83, .external_lex_state = 14}, + [2929] = {.lex_state = 232, .external_lex_state = 16}, + [2930] = {.lex_state = 83, .external_lex_state = 14}, + [2931] = {.lex_state = 236}, + [2932] = {.lex_state = 234, .external_lex_state = 16}, + [2933] = {.lex_state = 83, .external_lex_state = 14}, + [2934] = {.lex_state = 236}, + [2935] = {.lex_state = 234, .external_lex_state = 16}, + [2936] = {.lex_state = 236}, + [2937] = {.lex_state = 234, .external_lex_state = 16}, + [2938] = {.lex_state = 234, .external_lex_state = 16}, + [2939] = {.lex_state = 83, .external_lex_state = 14}, + [2940] = {.lex_state = 234, .external_lex_state = 16}, + [2941] = {.lex_state = 83, .external_lex_state = 10}, + [2942] = {.lex_state = 83, .external_lex_state = 10}, + [2943] = {.lex_state = 213, .external_lex_state = 24}, + [2944] = {.lex_state = 213, .external_lex_state = 24}, + [2945] = {.lex_state = 213, .external_lex_state = 16}, + [2946] = {.lex_state = 234, .external_lex_state = 16}, + [2947] = {.lex_state = 83, .external_lex_state = 10}, + [2948] = {.lex_state = 232, .external_lex_state = 16}, + [2949] = {.lex_state = 83, .external_lex_state = 10}, + [2950] = {.lex_state = 236}, + [2951] = {.lex_state = 234, .external_lex_state = 16}, + [2952] = {.lex_state = 83, .external_lex_state = 10}, + [2953] = {.lex_state = 236}, + [2954] = {.lex_state = 234, .external_lex_state = 16}, + [2955] = {.lex_state = 236}, + [2956] = {.lex_state = 234, .external_lex_state = 16}, + [2957] = {.lex_state = 234, .external_lex_state = 16}, + [2958] = {.lex_state = 83, .external_lex_state = 10}, + [2959] = {.lex_state = 234, .external_lex_state = 16}, + [2960] = {.lex_state = 278, .external_lex_state = 5}, + [2961] = {.lex_state = 179, .external_lex_state = 2}, + [2962] = {.lex_state = 73}, + [2963] = {.lex_state = 83, .external_lex_state = 4}, + [2964] = {.lex_state = 113, .external_lex_state = 8}, + [2965] = {.lex_state = 179, .external_lex_state = 2}, + [2966] = {.lex_state = 73}, + [2967] = {.lex_state = 83, .external_lex_state = 4}, + [2968] = {.lex_state = 113, .external_lex_state = 8}, + [2969] = {.lex_state = 245, .external_lex_state = 27}, + [2970] = {.lex_state = 245, .external_lex_state = 27}, + [2971] = {.lex_state = 245, .external_lex_state = 27}, + [2972] = {.lex_state = 265, .external_lex_state = 28}, + [2973] = {.lex_state = 265, .external_lex_state = 28}, + [2974] = {.lex_state = 265, .external_lex_state = 28}, + [2975] = {.lex_state = 265, .external_lex_state = 28}, + [2976] = {.lex_state = 234, .external_lex_state = 16}, + [2977] = {.lex_state = 265, .external_lex_state = 28}, + [2978] = {.lex_state = 234, .external_lex_state = 16}, + [2979] = {.lex_state = 265, .external_lex_state = 28}, + [2980] = {.lex_state = 234, .external_lex_state = 16}, + [2981] = {.lex_state = 265, .external_lex_state = 28}, + [2982] = {.lex_state = 265, .external_lex_state = 28}, + [2983] = {.lex_state = 132, .external_lex_state = 10}, + [2984] = {.lex_state = 132, .external_lex_state = 10}, + [2985] = {.lex_state = 132, .external_lex_state = 10}, + [2986] = {.lex_state = 278, .external_lex_state = 27}, + [2987] = {.lex_state = 278, .external_lex_state = 27}, + [2988] = {.lex_state = 278, .external_lex_state = 27}, + [2989] = {.lex_state = 83, .external_lex_state = 3}, + [2990] = {.lex_state = 83, .external_lex_state = 14}, + [2991] = {.lex_state = 83, .external_lex_state = 14}, + [2992] = {.lex_state = 83, .external_lex_state = 14}, + [2993] = {.lex_state = 234, .external_lex_state = 16}, + [2994] = {.lex_state = 213, .external_lex_state = 24}, + [2995] = {.lex_state = 213, .external_lex_state = 24}, + [2996] = {.lex_state = 213, .external_lex_state = 16}, + [2997] = {.lex_state = 234, .external_lex_state = 16}, + [2998] = {.lex_state = 83, .external_lex_state = 14}, + [2999] = {.lex_state = 234, .external_lex_state = 16}, + [3000] = {.lex_state = 83, .external_lex_state = 14}, + [3001] = {.lex_state = 234, .external_lex_state = 16}, + [3002] = {.lex_state = 83, .external_lex_state = 14}, + [3003] = {.lex_state = 234, .external_lex_state = 16}, + [3004] = {.lex_state = 83, .external_lex_state = 14}, + [3005] = {.lex_state = 234, .external_lex_state = 16}, + [3006] = {.lex_state = 83, .external_lex_state = 10}, + [3007] = {.lex_state = 83, .external_lex_state = 10}, + [3008] = {.lex_state = 83, .external_lex_state = 10}, + [3009] = {.lex_state = 234, .external_lex_state = 16}, + [3010] = {.lex_state = 213, .external_lex_state = 24}, + [3011] = {.lex_state = 213, .external_lex_state = 24}, + [3012] = {.lex_state = 213, .external_lex_state = 16}, + [3013] = {.lex_state = 234, .external_lex_state = 16}, + [3014] = {.lex_state = 83, .external_lex_state = 10}, + [3015] = {.lex_state = 234, .external_lex_state = 16}, + [3016] = {.lex_state = 83, .external_lex_state = 10}, + [3017] = {.lex_state = 234, .external_lex_state = 16}, + [3018] = {.lex_state = 83, .external_lex_state = 10}, + [3019] = {.lex_state = 234, .external_lex_state = 16}, + [3020] = {.lex_state = 83, .external_lex_state = 10}, + [3021] = {.lex_state = 234, .external_lex_state = 16}, + [3022] = {.lex_state = 179, .external_lex_state = 2}, + [3023] = {.lex_state = 179, .external_lex_state = 2}, + [3024] = {.lex_state = 265, .external_lex_state = 28}, + [3025] = {.lex_state = 265, .external_lex_state = 28}, + [3026] = {.lex_state = 265, .external_lex_state = 28}, + [3027] = {.lex_state = 132, .external_lex_state = 10}, + [3028] = {.lex_state = 278, .external_lex_state = 27}, + [3029] = {.lex_state = 83, .external_lex_state = 14}, + [3030] = {.lex_state = 83, .external_lex_state = 14}, + [3031] = {.lex_state = 83, .external_lex_state = 14}, + [3032] = {.lex_state = 83, .external_lex_state = 14}, + [3033] = {.lex_state = 234, .external_lex_state = 16}, + [3034] = {.lex_state = 83, .external_lex_state = 14}, + [3035] = {.lex_state = 234, .external_lex_state = 16}, + [3036] = {.lex_state = 83, .external_lex_state = 14}, + [3037] = {.lex_state = 234, .external_lex_state = 16}, + [3038] = {.lex_state = 83, .external_lex_state = 14}, + [3039] = {.lex_state = 83, .external_lex_state = 14}, + [3040] = {.lex_state = 83, .external_lex_state = 10}, + [3041] = {.lex_state = 83, .external_lex_state = 10}, + [3042] = {.lex_state = 83, .external_lex_state = 10}, + [3043] = {.lex_state = 83, .external_lex_state = 10}, + [3044] = {.lex_state = 234, .external_lex_state = 16}, + [3045] = {.lex_state = 83, .external_lex_state = 10}, + [3046] = {.lex_state = 234, .external_lex_state = 16}, + [3047] = {.lex_state = 83, .external_lex_state = 10}, + [3048] = {.lex_state = 234, .external_lex_state = 16}, + [3049] = {.lex_state = 83, .external_lex_state = 10}, + [3050] = {.lex_state = 83, .external_lex_state = 10}, + [3051] = {.lex_state = 83, .external_lex_state = 14}, + [3052] = {.lex_state = 83, .external_lex_state = 14}, + [3053] = {.lex_state = 83, .external_lex_state = 14}, + [3054] = {.lex_state = 83, .external_lex_state = 10}, + [3055] = {.lex_state = 83, .external_lex_state = 10}, + [3056] = {.lex_state = 83, .external_lex_state = 10}, }; enum { @@ -8198,8 +8898,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1] = { [sym_program] = STATE(25), - [sym__terminated_statement] = STATE(32), + [sym__terminated_statement] = STATE(31), [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), [sym_case_statement] = STATE(26), @@ -8215,16 +8916,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(32), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_program_repeat1] = STATE(31), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [ts_builtin_sym_end] = ACTIONS(9), @@ -8280,12 +8981,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [4] = { + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(65), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(67), }, [5] = { [sym__terminated_statement] = STATE(38), [sym_for_statement] = STATE(39), + [sym_c_style_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), [sym_case_statement] = STATE(39), @@ -8301,15 +9004,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(40), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -8350,6 +9053,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [6] = { [sym__terminated_statement] = STATE(41), [sym_for_statement] = STATE(39), + [sym_c_style_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), [sym_case_statement] = STATE(39), @@ -8365,15 +9069,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(40), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -8419,25 +9123,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(45), [sym_command_substitution] = STATE(45), [sym_process_substitution] = STATE(45), - [sym__special_characters] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(71), - [sym_raw_string] = ACTIONS(73), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(75), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(77), - [anon_sym_BQUOTE] = ACTIONS(79), - [anon_sym_LT_LPAREN] = ACTIONS(81), - [anon_sym_GT_LPAREN] = ACTIONS(81), + [sym__special_characters] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(81), + [anon_sym_LT_LPAREN] = ACTIONS(83), + [anon_sym_GT_LPAREN] = ACTIONS(83), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(73), + [sym_word] = ACTIONS(75), }, [8] = { [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(83), + [sym_word] = ACTIONS(85), }, [9] = { [sym__terminated_statement] = STATE(67), [sym_for_statement] = STATE(63), + [sym_c_style_for_statement] = STATE(63), [sym_while_statement] = STATE(63), [sym_if_statement] = STATE(63), [sym_case_statement] = STATE(63), @@ -8453,8 +9158,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(64), [sym_variable_assignment] = STATE(65), [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(68), + [sym_concatenation] = STATE(30), [sym_string] = STATE(61), [sym_simple_expansion] = STATE(61), [sym_string_expansion] = STATE(61), @@ -8464,23 +9169,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_program_repeat1] = STATE(67), [aux_sym_command_repeat1] = STATE(68), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(85), + [sym_variable_name] = ACTIONS(87), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(89), + [anon_sym_function] = ACTIONS(91), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_typeset] = ACTIONS(97), - [anon_sym_export] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_local] = ACTIONS(97), - [anon_sym_unset] = ACTIONS(99), - [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -8488,36 +9193,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(101), + [sym__special_characters] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(103), + [sym_raw_string] = ACTIONS(105), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(105), + [sym_word] = ACTIONS(107), }, [10] = { [sym_subshell] = STATE(70), [sym_test_command] = STATE(70), [sym_command] = STATE(70), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(30), + [sym_variable_assignment] = STATE(32), [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(107), + [sym_variable_name] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(25), [anon_sym_LBRACK_LBRACK] = ACTIONS(27), @@ -8552,20 +9257,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(77), [sym_command_substitution] = STATE(77), [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(111), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [sym__special_characters] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - [sym_test_operator] = ACTIONS(131), + [sym_word] = ACTIONS(131), + [sym_test_operator] = ACTIONS(133), }, [12] = { [sym__expression] = STATE(93), @@ -8579,266 +9284,267 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(88), [sym_command_substitution] = STATE(88), [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(139), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(157), }, [13] = { - [sym_variable_assignment] = STATE(105), - [sym_subscript] = STATE(104), - [sym_concatenation] = STATE(105), + [sym_variable_assignment] = STATE(104), + [sym_subscript] = STATE(105), + [sym_concatenation] = STATE(104), [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_declaration_command_repeat1] = STATE(105), - [sym_variable_name] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(159), - [anon_sym_SEMI_SEMI] = ACTIONS(159), - [anon_sym_PIPE_AMP] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(159), - [anon_sym_PIPE_PIPE] = ACTIONS(159), - [sym__special_characters] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(179), - [sym_word] = ACTIONS(167), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_LF] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(159), + [aux_sym_declaration_command_repeat1] = STATE(106), + [sym_variable_name] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_SEMI_SEMI] = ACTIONS(161), + [anon_sym_PIPE_AMP] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(161), + [anon_sym_PIPE_PIPE] = ACTIONS(161), + [sym__special_characters] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(173), + [anon_sym_BQUOTE] = ACTIONS(175), + [anon_sym_LT_LPAREN] = ACTIONS(177), + [anon_sym_GT_LPAREN] = ACTIONS(177), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), + [sym_word] = ACTIONS(169), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LF] = ACTIONS(183), + [anon_sym_AMP] = ACTIONS(161), }, [14] = { - [sym_concatenation] = STATE(115), - [sym_string] = STATE(109), - [sym_simple_expansion] = STATE(109), - [sym_string_expansion] = STATE(109), - [sym_expansion] = STATE(109), - [sym_command_substitution] = STATE(109), - [sym_process_substitution] = STATE(109), - [aux_sym_unset_command_repeat1] = STATE(115), - [anon_sym_PIPE] = ACTIONS(183), - [anon_sym_SEMI_SEMI] = ACTIONS(183), - [anon_sym_PIPE_AMP] = ACTIONS(183), - [anon_sym_AMP_AMP] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(183), - [sym__special_characters] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(187), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(197), - [anon_sym_LT_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(199), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(201), - [sym_word] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LF] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(183), + [sym_concatenation] = STATE(116), + [sym_string] = STATE(110), + [sym_simple_expansion] = STATE(110), + [sym_string_expansion] = STATE(110), + [sym_expansion] = STATE(110), + [sym_command_substitution] = STATE(110), + [sym_process_substitution] = STATE(110), + [aux_sym_unset_command_repeat1] = STATE(116), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [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(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), + [sym_word] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(205), + [anon_sym_AMP] = ACTIONS(185), }, [15] = { - [sym_concatenation] = STATE(124), - [sym_string] = STATE(119), - [sym_simple_expansion] = STATE(119), - [sym_string_expansion] = STATE(119), - [sym_expansion] = STATE(119), - [sym_command_substitution] = STATE(119), - [sym_process_substitution] = STATE(119), - [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_concatenation] = STATE(125), + [sym_string] = STATE(120), + [sym_simple_expansion] = STATE(120), + [sym_string_expansion] = STATE(120), + [sym_expansion] = STATE(120), + [sym_command_substitution] = STATE(120), + [sym_process_substitution] = STATE(120), + [sym__special_characters] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [sym_raw_string] = ACTIONS(213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [anon_sym_LT_LPAREN] = ACTIONS(221), + [anon_sym_GT_LPAREN] = ACTIONS(221), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(211), + [sym_word] = ACTIONS(213), }, [16] = { - [aux_sym_concatenation_repeat1] = STATE(126), - [sym__simple_heredoc_body] = ACTIONS(221), - [sym__heredoc_body_beginning] = ACTIONS(221), - [sym_file_descriptor] = ACTIONS(221), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(225), - [anon_sym_PIPE_PIPE] = ACTIONS(225), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(225), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_AMP_GT_GT] = ACTIONS(225), - [anon_sym_LT_AMP] = ACTIONS(225), - [anon_sym_GT_AMP] = ACTIONS(225), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(225), - [anon_sym_LT_LT_LT] = ACTIONS(225), - [sym__special_characters] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(225), - [sym_raw_string] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(225), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_LF] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(225), + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(223), + [sym__heredoc_body_beginning] = ACTIONS(223), + [sym_file_descriptor] = ACTIONS(223), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(227), + [anon_sym_SEMI_SEMI] = ACTIONS(227), + [anon_sym_PIPE_AMP] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_EQ_TILDE] = ACTIONS(227), + [anon_sym_EQ_EQ] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_GT] = ACTIONS(227), + [anon_sym_AMP_GT] = ACTIONS(227), + [anon_sym_AMP_GT_GT] = ACTIONS(227), + [anon_sym_LT_AMP] = ACTIONS(227), + [anon_sym_GT_AMP] = ACTIONS(227), + [anon_sym_LT_LT] = ACTIONS(227), + [anon_sym_LT_LT_DASH] = ACTIONS(227), + [anon_sym_LT_LT_LT] = ACTIONS(227), + [sym__special_characters] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(227), + [sym_raw_string] = ACTIONS(227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(227), + [anon_sym_BQUOTE] = ACTIONS(227), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(227), + [anon_sym_LF] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(227), }, [17] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(133), - [anon_sym_DQUOTE] = ACTIONS(227), - [anon_sym_DOLLAR] = ACTIONS(229), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(134), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [18] = { - [sym_string] = STATE(135), + [sym_string] = STATE(136), [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_raw_string] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_0] = ACTIONS(245), - [anon_sym__] = ACTIONS(245), + [anon_sym_DOLLAR] = ACTIONS(241), + [sym_raw_string] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(241), + [anon_sym_DASH] = ACTIONS(241), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_AT] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(241), + [anon_sym_0] = ACTIONS(247), + [anon_sym__] = ACTIONS(247), }, [19] = { - [aux_sym_concatenation_repeat1] = STATE(126), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(249), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(249), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(249), + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(251), + [anon_sym_PIPE_AMP] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [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(251), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [anon_sym_LT_LT_LT] = ACTIONS(251), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LT_LPAREN] = ACTIONS(251), + [anon_sym_GT_LPAREN] = ACTIONS(251), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), }, [20] = { - [sym_subscript] = STATE(141), - [sym_variable_name] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(253), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_0] = ACTIONS(259), - [anon_sym__] = ACTIONS(259), + [sym_subscript] = STATE(142), + [sym_variable_name] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(255), + [anon_sym_POUND] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(255), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(255), + [anon_sym_AT] = ACTIONS(255), + [anon_sym_QMARK] = ACTIONS(255), + [anon_sym_0] = ACTIONS(261), + [anon_sym__] = ACTIONS(261), }, [21] = { - [sym_for_statement] = STATE(163), - [sym_while_statement] = STATE(163), - [sym_if_statement] = STATE(163), - [sym_case_statement] = STATE(163), - [sym_function_definition] = STATE(163), - [sym_subshell] = STATE(163), - [sym_pipeline] = STATE(163), - [sym_list] = STATE(163), - [sym_negated_command] = STATE(163), - [sym_test_command] = STATE(163), - [sym_declaration_command] = STATE(163), - [sym_unset_command] = STATE(163), - [sym_command] = STATE(163), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(165), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [sym_for_statement] = STATE(164), + [sym_c_style_for_statement] = STATE(164), + [sym_while_statement] = STATE(164), + [sym_if_statement] = STATE(164), + [sym_case_statement] = STATE(164), + [sym_function_definition] = STATE(164), + [sym_subshell] = STATE(164), + [sym_pipeline] = STATE(164), + [sym_list] = STATE(164), + [sym_negated_command] = STATE(164), + [sym_test_command] = STATE(164), + [sym_declaration_command] = STATE(164), + [sym_unset_command] = STATE(164), + [sym_command] = STATE(164), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(166), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -8846,62 +9552,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(303), }, [22] = { - [sym_for_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_function_definition] = STATE(180), - [sym_subshell] = STATE(180), - [sym_pipeline] = STATE(180), - [sym_list] = STATE(180), - [sym_negated_command] = STATE(180), - [sym_test_command] = STATE(180), - [sym_declaration_command] = STATE(180), - [sym_unset_command] = STATE(180), - [sym_command] = STATE(180), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(182), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), + [sym_for_statement] = STATE(181), + [sym_c_style_for_statement] = STATE(181), + [sym_while_statement] = STATE(181), + [sym_if_statement] = STATE(181), + [sym_case_statement] = STATE(181), + [sym_function_definition] = STATE(181), + [sym_subshell] = STATE(181), + [sym_pipeline] = STATE(181), + [sym_list] = STATE(181), + [sym_negated_command] = STATE(181), + [sym_test_command] = STATE(181), + [sym_declaration_command] = STATE(181), + [sym_unset_command] = STATE(181), + [sym_command] = STATE(181), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(183), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -8909,62 +9616,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [sym_word] = ACTIONS(325), }, [23] = { - [sym_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_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(164), - [sym_variable_assignment] = STATE(186), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [sym_for_statement] = STATE(186), + [sym_c_style_for_statement] = STATE(186), + [sym_while_statement] = STATE(186), + [sym_if_statement] = STATE(186), + [sym_case_statement] = STATE(186), + [sym_function_definition] = STATE(186), + [sym_subshell] = STATE(186), + [sym_pipeline] = STATE(186), + [sym_list] = STATE(186), + [sym_negated_command] = STATE(186), + [sym_test_command] = STATE(186), + [sym_declaration_command] = STATE(186), + [sym_unset_command] = STATE(186), + [sym_command] = STATE(186), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(187), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -8972,150 +9680,150 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(303), }, [24] = { - [aux_sym_concatenation_repeat1] = STATE(126), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(249), - [anon_sym_LPAREN] = ACTIONS(325), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(249), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(249), + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(251), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_PIPE_AMP] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [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(251), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [anon_sym_LT_LT_LT] = ACTIONS(251), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LT_LPAREN] = ACTIONS(251), + [anon_sym_GT_LPAREN] = ACTIONS(251), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), }, [25] = { - [ts_builtin_sym_end] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(329), [sym_comment] = ACTIONS(53), }, [26] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(331), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(333), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [27] = { - [sym_file_redirect] = STATE(201), - [sym_heredoc_redirect] = STATE(201), - [sym_heredoc_body] = STATE(200), - [sym_herestring_redirect] = STATE(201), + [sym_file_redirect] = STATE(203), + [sym_heredoc_redirect] = STATE(203), + [sym_heredoc_body] = STATE(201), + [sym_herestring_redirect] = STATE(203), [sym_concatenation] = STATE(202), - [sym_string] = STATE(199), - [sym_simple_expansion] = STATE(199), - [sym_string_expansion] = STATE(199), - [sym_expansion] = STATE(199), - [sym_command_substitution] = STATE(199), - [sym_process_substitution] = STATE(199), - [aux_sym_while_statement_repeat1] = STATE(201), - [aux_sym_command_repeat2] = STATE(202), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_SEMI_SEMI] = ACTIONS(343), - [anon_sym_PIPE_AMP] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_EQ_TILDE] = ACTIONS(345), - [anon_sym_EQ_EQ] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(351), - [sym__special_characters] = ACTIONS(353), - [anon_sym_DQUOTE] = ACTIONS(355), + [sym_string] = STATE(200), + [sym_simple_expansion] = STATE(200), + [sym_string_expansion] = STATE(200), + [sym_expansion] = STATE(200), + [sym_command_substitution] = STATE(200), + [sym_process_substitution] = STATE(200), + [aux_sym_while_statement_repeat1] = STATE(203), + [aux_sym_command_repeat2] = STATE(204), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(345), + [anon_sym_SEMI_SEMI] = ACTIONS(345), + [anon_sym_PIPE_AMP] = ACTIONS(345), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(349), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(357), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(343), + [sym_raw_string] = ACTIONS(359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_LF] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(345), }, [28] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(331), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(333), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [29] = { [anon_sym_EQ] = ACTIONS(63), @@ -9123,68 +9831,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [30] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [anon_sym_esac] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(251), + [anon_sym_PIPE_AMP] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [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(251), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [anon_sym_LT_LT_LT] = ACTIONS(251), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LT_LPAREN] = ACTIONS(251), + [anon_sym_GT_LPAREN] = ACTIONS(251), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), }, [31] = { - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [anon_sym_esac] = ACTIONS(249), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(249), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(249), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(249), - }, - [32] = { - [sym__terminated_statement] = STATE(203), + [sym__terminated_statement] = STATE(205), [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), [sym_case_statement] = STATE(26), @@ -9200,19 +9887,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(203), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_program_repeat1] = STATE(205), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), - [ts_builtin_sym_end] = ACTIONS(373), + [ts_builtin_sym_end] = ACTIONS(375), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), @@ -9248,21 +9935,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [33] = { - [sym_command_name] = STATE(204), - [sym_variable_assignment] = STATE(30), + [32] = { + [sym_command_name] = STATE(206), + [sym_variable_assignment] = STATE(207), [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(207), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(205), + [aux_sym_command_repeat1] = STATE(207), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(107), + [sym_variable_name] = ACTIONS(109), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -9270,7 +9957,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(375), + [sym__special_characters] = ACTIONS(377), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), [sym_raw_string] = ACTIONS(43), @@ -9282,233 +9969,265 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(43), }, - [34] = { - [sym_concatenation] = STATE(208), - [sym_string] = STATE(207), - [sym_simple_expansion] = STATE(207), - [sym_string_expansion] = STATE(207), - [sym_expansion] = STATE(207), - [sym_command_substitution] = STATE(207), - [sym_process_substitution] = STATE(207), - [sym__special_characters] = ACTIONS(377), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(379), - [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), + [33] = { + [sym_concatenation] = STATE(210), + [sym_string] = STATE(209), + [sym_simple_expansion] = STATE(209), + [sym_string_expansion] = STATE(209), + [sym_expansion] = STATE(209), + [sym_command_substitution] = STATE(209), + [sym_process_substitution] = STATE(209), + [sym__special_characters] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [sym_raw_string] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [anon_sym_LT_LPAREN] = ACTIONS(221), + [anon_sym_GT_LPAREN] = ACTIONS(221), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(379), + [sym_word] = ACTIONS(381), + }, + [34] = { + [sym_concatenation] = STATE(213), + [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__special_characters] = ACTIONS(383), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(385), }, [35] = { - [sym_concatenation] = STATE(211), - [sym_string] = STATE(210), - [sym_simple_expansion] = STATE(210), - [sym_string_expansion] = STATE(210), - [sym_expansion] = STATE(210), - [sym_command_substitution] = STATE(210), - [sym_process_substitution] = STATE(210), - [sym__special_characters] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), + [sym_concatenation] = STATE(214), + [sym_string] = STATE(219), + [sym_array] = STATE(214), + [sym_simple_expansion] = STATE(219), + [sym_string_expansion] = STATE(219), + [sym_expansion] = STATE(219), + [sym_command_substitution] = STATE(219), + [sym_process_substitution] = STATE(219), + [sym__empty_value] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(389), + [sym__special_characters] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [sym_raw_string] = ACTIONS(397), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), + [anon_sym_BQUOTE] = ACTIONS(403), + [anon_sym_LT_LPAREN] = ACTIONS(405), + [anon_sym_GT_LPAREN] = ACTIONS(405), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(383), + [sym_word] = ACTIONS(397), }, [36] = { - [sym_concatenation] = STATE(212), - [sym_string] = STATE(217), - [sym_array] = STATE(212), - [sym_simple_expansion] = STATE(217), - [sym_string_expansion] = STATE(217), - [sym_expansion] = STATE(217), - [sym_command_substitution] = STATE(217), - [sym_process_substitution] = STATE(217), - [sym__empty_value] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [sym__special_characters] = ACTIONS(389), - [anon_sym_DQUOTE] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [sym_raw_string] = ACTIONS(395), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(399), - [anon_sym_BQUOTE] = ACTIONS(401), - [anon_sym_LT_LPAREN] = ACTIONS(403), - [anon_sym_GT_LPAREN] = ACTIONS(403), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(395), - }, - [37] = { - [anon_sym_in] = ACTIONS(405), + [sym__expression] = STATE(235), + [sym_binary_expression] = STATE(235), + [sym_unary_expression] = STATE(235), + [sym_parenthesized_expression] = STATE(235), + [sym_concatenation] = STATE(235), + [sym_string] = STATE(230), + [sym_simple_expansion] = STATE(230), + [sym_string_expansion] = STATE(230), + [sym_expansion] = STATE(230), + [sym_command_substitution] = STATE(230), + [sym_process_substitution] = STATE(230), [anon_sym_SEMI_SEMI] = ACTIONS(407), - [sym_comment] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [sym__special_characters] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(417), + [sym_raw_string] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(419), + [sym_test_operator] = ACTIONS(411), [anon_sym_SEMI] = ACTIONS(407), - [anon_sym_LF] = ACTIONS(409), + [anon_sym_LF] = ACTIONS(429), [anon_sym_AMP] = ACTIONS(407), }, + [37] = { + [anon_sym_in] = ACTIONS(431), + [anon_sym_SEMI_SEMI] = ACTIONS(433), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(433), + [anon_sym_LF] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(433), + }, [38] = { - [sym_do_group] = STATE(225), - [anon_sym_do] = ACTIONS(411), + [sym_do_group] = STATE(239), + [anon_sym_do] = ACTIONS(437), [sym_comment] = ACTIONS(53), }, [39] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(413), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(439), }, [40] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(439), }, [41] = { - [anon_sym_then] = ACTIONS(417), + [anon_sym_then] = ACTIONS(443), [sym_comment] = ACTIONS(53), }, [42] = { - [aux_sym_concatenation_repeat1] = STATE(231), - [sym__concat] = ACTIONS(419), - [anon_sym_in] = ACTIONS(421), - [anon_sym_SEMI_SEMI] = ACTIONS(423), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(425), - [anon_sym_AMP] = ACTIONS(423), + [aux_sym_concatenation_repeat1] = STATE(245), + [sym__concat] = ACTIONS(445), + [anon_sym_in] = ACTIONS(447), + [anon_sym_SEMI_SEMI] = ACTIONS(449), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(449), + [anon_sym_LF] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(449), }, [43] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(234), - [anon_sym_DQUOTE] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(429), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(248), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [44] = { - [sym_string] = STATE(236), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(431), - [sym_raw_string] = ACTIONS(433), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_0] = ACTIONS(437), - [anon_sym__] = ACTIONS(437), + [sym_string] = STATE(250), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_AT] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(457), + [anon_sym_0] = ACTIONS(463), + [anon_sym__] = ACTIONS(463), }, [45] = { - [aux_sym_concatenation_repeat1] = STATE(231), - [sym__concat] = ACTIONS(419), - [anon_sym_in] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(441), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(441), - [anon_sym_LF] = ACTIONS(443), - [anon_sym_AMP] = ACTIONS(441), + [aux_sym_concatenation_repeat1] = STATE(245), + [sym__concat] = ACTIONS(445), + [anon_sym_in] = ACTIONS(465), + [anon_sym_SEMI_SEMI] = ACTIONS(467), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(467), + [anon_sym_LF] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(467), }, [46] = { - [sym_subscript] = STATE(244), - [sym_variable_name] = ACTIONS(445), - [anon_sym_DOLLAR] = ACTIONS(447), - [anon_sym_POUND] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(447), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(451), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_AT] = ACTIONS(447), - [anon_sym_QMARK] = ACTIONS(447), - [anon_sym_0] = ACTIONS(453), - [anon_sym__] = ACTIONS(453), + [sym_subscript] = STATE(258), + [sym_variable_name] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(473), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_0] = ACTIONS(479), + [anon_sym__] = ACTIONS(479), }, [47] = { - [sym_for_statement] = STATE(245), - [sym_while_statement] = STATE(245), - [sym_if_statement] = STATE(245), - [sym_case_statement] = STATE(245), - [sym_function_definition] = STATE(245), - [sym_subshell] = STATE(245), - [sym_pipeline] = STATE(245), - [sym_list] = STATE(245), - [sym_negated_command] = STATE(245), - [sym_test_command] = STATE(245), - [sym_declaration_command] = STATE(245), - [sym_unset_command] = STATE(245), - [sym_command] = STATE(245), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(246), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [sym_for_statement] = STATE(259), + [sym_c_style_for_statement] = STATE(259), + [sym_while_statement] = STATE(259), + [sym_if_statement] = STATE(259), + [sym_case_statement] = STATE(259), + [sym_function_definition] = STATE(259), + [sym_subshell] = STATE(259), + [sym_pipeline] = STATE(259), + [sym_list] = STATE(259), + [sym_negated_command] = STATE(259), + [sym_test_command] = STATE(259), + [sym_declaration_command] = STATE(259), + [sym_unset_command] = STATE(259), + [sym_command] = STATE(259), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(260), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -9516,62 +10235,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(303), }, [48] = { - [sym_for_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_function_definition] = STATE(247), - [sym_subshell] = STATE(247), - [sym_pipeline] = STATE(247), - [sym_list] = STATE(247), - [sym_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(181), - [sym_variable_assignment] = STATE(248), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), + [sym_for_statement] = STATE(261), + [sym_c_style_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_if_statement] = STATE(261), + [sym_case_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_subshell] = STATE(261), + [sym_pipeline] = STATE(261), + [sym_list] = STATE(261), + [sym_negated_command] = STATE(261), + [sym_test_command] = STATE(261), + [sym_declaration_command] = STATE(261), + [sym_unset_command] = STATE(261), + [sym_command] = STATE(261), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(262), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -9579,62 +10299,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [sym_word] = ACTIONS(325), }, [49] = { - [sym_for_statement] = STATE(249), - [sym_while_statement] = STATE(249), - [sym_if_statement] = STATE(249), - [sym_case_statement] = STATE(249), - [sym_function_definition] = STATE(249), - [sym_subshell] = STATE(249), - [sym_pipeline] = STATE(249), - [sym_list] = STATE(249), - [sym_negated_command] = STATE(249), - [sym_test_command] = STATE(249), - [sym_declaration_command] = STATE(249), - [sym_unset_command] = STATE(249), - [sym_command] = STATE(249), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(250), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [sym_for_statement] = STATE(263), + [sym_c_style_for_statement] = STATE(263), + [sym_while_statement] = STATE(263), + [sym_if_statement] = STATE(263), + [sym_case_statement] = STATE(263), + [sym_function_definition] = STATE(263), + [sym_subshell] = STATE(263), + [sym_pipeline] = STATE(263), + [sym_list] = STATE(263), + [sym_negated_command] = STATE(263), + [sym_test_command] = STATE(263), + [sym_declaration_command] = STATE(263), + [sym_unset_command] = STATE(263), + [sym_command] = STATE(263), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(264), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -9642,41 +10363,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(303), }, [50] = { - [anon_sym_in] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(441), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(441), - [anon_sym_LF] = ACTIONS(443), - [anon_sym_AMP] = ACTIONS(441), + [anon_sym_in] = ACTIONS(465), + [anon_sym_SEMI_SEMI] = ACTIONS(467), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(467), + [anon_sym_LF] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(467), }, [51] = { - [sym_compound_statement] = STATE(253), - [anon_sym_LPAREN] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(457), + [sym_compound_statement] = STATE(267), + [anon_sym_LPAREN] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), [sym_comment] = ACTIONS(53), }, [52] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(459), - [anon_sym_PLUS_EQ] = ACTIONS(459), + [anon_sym_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), [sym_comment] = ACTIONS(53), }, [53] = { - [sym__terminated_statement] = STATE(255), + [sym__terminated_statement] = STATE(269), [sym_for_statement] = STATE(39), + [sym_c_style_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), [sym_case_statement] = STATE(39), @@ -9692,15 +10414,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(40), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -9740,17 +10462,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [54] = { [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(461), + [sym_word] = ACTIONS(487), }, [55] = { [sym_subshell] = STATE(70), [sym_test_command] = STATE(70), [sym_command] = STATE(70), [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(30), + [sym_variable_assignment] = STATE(68), [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(68), + [sym_concatenation] = STATE(30), [sym_string] = STATE(61), [sym_simple_expansion] = STATE(61), [sym_string_expansion] = STATE(61), @@ -9759,10 +10481,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(61), [aux_sym_command_repeat1] = STATE(68), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(107), + [sym_variable_name] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -9770,410 +10492,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(101), + [sym__special_characters] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(103), - }, - [56] = { - [sym__expression] = STATE(257), - [sym_binary_expression] = STATE(257), - [sym_unary_expression] = STATE(257), - [sym_parenthesized_expression] = STATE(257), - [sym_concatenation] = STATE(257), - [sym_string] = STATE(77), - [sym_simple_expansion] = STATE(77), - [sym_string_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(111), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - [sym_test_operator] = ACTIONS(131), - }, - [57] = { - [sym__expression] = STATE(258), - [sym_binary_expression] = STATE(258), - [sym_unary_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_concatenation] = STATE(258), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_string_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), - }, - [58] = { - [sym_variable_assignment] = STATE(263), - [sym_subscript] = STATE(262), - [sym_concatenation] = STATE(263), - [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), - [aux_sym_declaration_command_repeat1] = STATE(263), - [sym_variable_name] = ACTIONS(463), - [anon_sym_PIPE] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(159), - [anon_sym_SEMI_SEMI] = ACTIONS(159), - [anon_sym_PIPE_AMP] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(159), - [anon_sym_PIPE_PIPE] = ACTIONS(159), - [sym__special_characters] = ACTIONS(465), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(179), - [sym_word] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_LF] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(159), - }, - [59] = { - [sym_concatenation] = STATE(266), - [sym_string] = STATE(265), - [sym_simple_expansion] = STATE(265), - [sym_string_expansion] = STATE(265), - [sym_expansion] = STATE(265), - [sym_command_substitution] = STATE(265), - [sym_process_substitution] = STATE(265), - [aux_sym_unset_command_repeat1] = STATE(266), - [anon_sym_PIPE] = ACTIONS(183), - [anon_sym_RPAREN] = ACTIONS(183), - [anon_sym_SEMI_SEMI] = ACTIONS(183), - [anon_sym_PIPE_AMP] = ACTIONS(183), - [anon_sym_AMP_AMP] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(183), - [sym__special_characters] = ACTIONS(469), - [anon_sym_DQUOTE] = ACTIONS(187), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(197), - [anon_sym_LT_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(199), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(201), - [sym_word] = ACTIONS(471), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LF] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(183), - }, - [60] = { - [aux_sym_concatenation_repeat1] = STATE(267), - [sym__simple_heredoc_body] = ACTIONS(221), - [sym__heredoc_body_beginning] = ACTIONS(221), - [sym_file_descriptor] = ACTIONS(221), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_RPAREN] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(225), - [anon_sym_PIPE_PIPE] = ACTIONS(225), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(225), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_AMP_GT_GT] = ACTIONS(225), - [anon_sym_LT_AMP] = ACTIONS(225), - [anon_sym_GT_AMP] = ACTIONS(225), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(225), - [anon_sym_LT_LT_LT] = ACTIONS(225), - [sym__special_characters] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(225), - [sym_raw_string] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(225), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_LF] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(225), - }, - [61] = { - [aux_sym_concatenation_repeat1] = STATE(267), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(249), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(249), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(249), - }, - [62] = { - [aux_sym_concatenation_repeat1] = STATE(267), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(249), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(249), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(249), - }, - [63] = { - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_SEMI_SEMI] = ACTIONS(479), - [anon_sym_PIPE_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(479), - [anon_sym_LF] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(479), - }, - [64] = { - [sym_file_redirect] = STATE(279), - [sym_heredoc_redirect] = STATE(279), - [sym_heredoc_body] = STATE(200), - [sym_herestring_redirect] = STATE(279), - [sym_concatenation] = STATE(280), - [sym_string] = STATE(278), - [sym_simple_expansion] = STATE(278), - [sym_string_expansion] = STATE(278), - [sym_expansion] = STATE(278), - [sym_command_substitution] = STATE(278), - [sym_process_substitution] = STATE(278), - [aux_sym_while_statement_repeat1] = STATE(279), - [aux_sym_command_repeat2] = STATE(280), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_SEMI_SEMI] = ACTIONS(343), - [anon_sym_PIPE_AMP] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_EQ_TILDE] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(491), - [sym__special_characters] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(343), - }, - [65] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_SEMI_SEMI] = ACTIONS(479), - [anon_sym_PIPE_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(479), - [anon_sym_LF] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(479), - }, - [66] = { - [anon_sym_EQ] = ACTIONS(459), - [anon_sym_PLUS_EQ] = ACTIONS(459), - [sym_comment] = ACTIONS(53), - }, - [67] = { - [sym__terminated_statement] = STATE(283), - [sym_for_statement] = STATE(281), - [sym_while_statement] = STATE(281), - [sym_if_statement] = STATE(281), - [sym_case_statement] = STATE(281), - [sym_function_definition] = STATE(281), - [sym_subshell] = STATE(281), - [sym_pipeline] = STATE(281), - [sym_list] = STATE(281), - [sym_negated_command] = STATE(281), - [sym_test_command] = STATE(281), - [sym_declaration_command] = STATE(281), - [sym_unset_command] = STATE(281), - [sym_command] = STATE(281), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(282), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_program_repeat1] = STATE(283), - [aux_sym_command_repeat1] = STATE(68), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(85), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(87), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_typeset] = ACTIONS(97), - [anon_sym_export] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_local] = ACTIONS(97), - [anon_sym_unset] = ACTIONS(99), - [anon_sym_unsetenv] = ACTIONS(99), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(103), + [sym_raw_string] = ACTIONS(105), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), @@ -10182,562 +10504,967 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(105), }, - [68] = { - [sym_command_name] = STATE(284), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_command_repeat1] = STATE(205), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(103), - }, - [69] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(499), - [anon_sym_PLUS_EQ] = ACTIONS(499), - [sym_comment] = ACTIONS(53), - }, - [70] = { - [anon_sym_esac] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(501), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(501), - [anon_sym_LF] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(501), - }, - [71] = { - [anon_sym_EQ] = ACTIONS(499), - [anon_sym_PLUS_EQ] = ACTIONS(499), - [sym_comment] = ACTIONS(53), - }, - [72] = { - [sym__expression] = STATE(289), - [sym_binary_expression] = STATE(289), - [sym_unary_expression] = STATE(289), - [sym_parenthesized_expression] = STATE(289), - [sym_concatenation] = STATE(289), - [sym_string] = STATE(288), - [sym_simple_expansion] = STATE(288), - [sym_string_expansion] = STATE(288), - [sym_expansion] = STATE(288), - [sym_command_substitution] = STATE(288), - [sym_process_substitution] = STATE(288), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(505), - [sym__special_characters] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(511), - [sym_test_operator] = ACTIONS(513), - }, - [73] = { - [sym__expression] = STATE(290), - [sym_binary_expression] = STATE(290), - [sym_unary_expression] = STATE(290), - [sym_parenthesized_expression] = STATE(290), - [sym_concatenation] = STATE(290), + [56] = { + [sym__expression] = STATE(271), + [sym_binary_expression] = STATE(271), + [sym_unary_expression] = STATE(271), + [sym_parenthesized_expression] = STATE(271), + [sym_concatenation] = STATE(271), [sym_string] = STATE(77), [sym_simple_expansion] = STATE(77), [sym_string_expansion] = STATE(77), [sym_expansion] = STATE(77), [sym_command_substitution] = STATE(77), [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(111), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [sym__special_characters] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - [sym_test_operator] = ACTIONS(131), + [sym_word] = ACTIONS(131), + [sym_test_operator] = ACTIONS(133), }, - [74] = { - [aux_sym_concatenation_repeat1] = STATE(292), - [sym__concat] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(517), - [anon_sym_PIPE_PIPE] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(517), - [anon_sym_EQ_TILDE] = ACTIONS(517), - [anon_sym_EQ_EQ] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(517), - [anon_sym_BANG_EQ] = ACTIONS(517), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(517), - }, - [75] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(295), - [anon_sym_DQUOTE] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [76] = { - [sym_string] = STATE(297), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(525), - [sym_raw_string] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(525), - [anon_sym_0] = ACTIONS(531), - [anon_sym__] = ACTIONS(531), - }, - [77] = { - [aux_sym_concatenation_repeat1] = STATE(292), - [sym__concat] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(533), - [anon_sym_PIPE_PIPE] = ACTIONS(533), - [anon_sym_RBRACK] = ACTIONS(533), - [anon_sym_EQ_TILDE] = ACTIONS(533), - [anon_sym_EQ_EQ] = ACTIONS(533), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(533), - [anon_sym_GT] = ACTIONS(533), - [anon_sym_BANG_EQ] = ACTIONS(533), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(533), - }, - [78] = { - [sym_subscript] = STATE(303), - [sym_variable_name] = ACTIONS(537), - [anon_sym_DOLLAR] = ACTIONS(539), - [anon_sym_POUND] = ACTIONS(541), - [anon_sym_DASH] = ACTIONS(539), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(543), - [anon_sym_STAR] = ACTIONS(539), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_QMARK] = ACTIONS(539), - [anon_sym_0] = ACTIONS(545), - [anon_sym__] = ACTIONS(545), - }, - [79] = { - [sym_for_statement] = STATE(304), - [sym_while_statement] = STATE(304), - [sym_if_statement] = STATE(304), - [sym_case_statement] = STATE(304), - [sym_function_definition] = STATE(304), - [sym_subshell] = STATE(304), - [sym_pipeline] = STATE(304), - [sym_list] = STATE(304), - [sym_negated_command] = STATE(304), - [sym_test_command] = STATE(304), - [sym_declaration_command] = STATE(304), - [sym_unset_command] = STATE(304), - [sym_command] = STATE(304), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(305), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [80] = { - [sym_for_statement] = STATE(306), - [sym_while_statement] = STATE(306), - [sym_if_statement] = STATE(306), - [sym_case_statement] = STATE(306), - [sym_function_definition] = STATE(306), - [sym_subshell] = STATE(306), - [sym_pipeline] = STATE(306), - [sym_list] = STATE(306), - [sym_negated_command] = STATE(306), - [sym_test_command] = STATE(306), - [sym_declaration_command] = STATE(306), - [sym_unset_command] = STATE(306), - [sym_command] = STATE(306), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(307), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [81] = { - [sym_for_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_case_statement] = STATE(308), - [sym_function_definition] = STATE(308), - [sym_subshell] = STATE(308), - [sym_pipeline] = STATE(308), - [sym_list] = STATE(308), - [sym_negated_command] = STATE(308), - [sym_test_command] = STATE(308), - [sym_declaration_command] = STATE(308), - [sym_unset_command] = STATE(308), - [sym_command] = STATE(308), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(309), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [82] = { - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_RBRACK] = ACTIONS(549), - [anon_sym_EQ_TILDE] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(553), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(547), - }, - [83] = { - [sym__expression] = STATE(313), - [sym_binary_expression] = STATE(313), - [sym_unary_expression] = STATE(313), - [sym_parenthesized_expression] = STATE(313), - [sym_concatenation] = STATE(313), - [sym_string] = STATE(288), - [sym_simple_expansion] = STATE(288), - [sym_string_expansion] = STATE(288), - [sym_expansion] = STATE(288), - [sym_command_substitution] = STATE(288), - [sym_process_substitution] = STATE(288), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(505), - [sym__special_characters] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(511), - [sym_test_operator] = ACTIONS(513), - }, - [84] = { - [sym__expression] = STATE(314), - [sym_binary_expression] = STATE(314), - [sym_unary_expression] = STATE(314), - [sym_parenthesized_expression] = STATE(314), - [sym_concatenation] = STATE(314), + [57] = { + [sym__expression] = STATE(272), + [sym_binary_expression] = STATE(272), + [sym_unary_expression] = STATE(272), + [sym_parenthesized_expression] = STATE(272), + [sym_concatenation] = STATE(272), [sym_string] = STATE(88), [sym_simple_expansion] = STATE(88), [sym_string_expansion] = STATE(88), [sym_expansion] = STATE(88), [sym_command_substitution] = STATE(88), [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(139), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(157), + }, + [58] = { + [sym_variable_assignment] = STATE(104), + [sym_subscript] = STATE(276), + [sym_concatenation] = STATE(104), + [sym_string] = STATE(275), + [sym_simple_expansion] = STATE(275), + [sym_string_expansion] = STATE(275), + [sym_expansion] = STATE(275), + [sym_command_substitution] = STATE(275), + [sym_process_substitution] = STATE(275), + [aux_sym_declaration_command_repeat1] = STATE(277), + [sym_variable_name] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(161), + [anon_sym_SEMI_SEMI] = ACTIONS(161), + [anon_sym_PIPE_AMP] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(161), + [anon_sym_PIPE_PIPE] = ACTIONS(161), + [sym__special_characters] = ACTIONS(491), + [anon_sym_DQUOTE] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(493), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(173), + [anon_sym_BQUOTE] = ACTIONS(175), + [anon_sym_LT_LPAREN] = ACTIONS(177), + [anon_sym_GT_LPAREN] = ACTIONS(177), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), + [sym_word] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LF] = ACTIONS(183), + [anon_sym_AMP] = ACTIONS(161), + }, + [59] = { + [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_unset_command_repeat1] = STATE(280), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [sym__special_characters] = ACTIONS(495), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(497), + [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(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), + [sym_word] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(205), + [anon_sym_AMP] = ACTIONS(185), + }, + [60] = { + [aux_sym_concatenation_repeat1] = STATE(281), + [sym__simple_heredoc_body] = ACTIONS(223), + [sym__heredoc_body_beginning] = ACTIONS(223), + [sym_file_descriptor] = ACTIONS(223), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(227), + [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_SEMI_SEMI] = ACTIONS(227), + [anon_sym_PIPE_AMP] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_EQ_TILDE] = ACTIONS(227), + [anon_sym_EQ_EQ] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_GT] = ACTIONS(227), + [anon_sym_AMP_GT] = ACTIONS(227), + [anon_sym_AMP_GT_GT] = ACTIONS(227), + [anon_sym_LT_AMP] = ACTIONS(227), + [anon_sym_GT_AMP] = ACTIONS(227), + [anon_sym_LT_LT] = ACTIONS(227), + [anon_sym_LT_LT_DASH] = ACTIONS(227), + [anon_sym_LT_LT_LT] = ACTIONS(227), + [sym__special_characters] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(227), + [sym_raw_string] = ACTIONS(227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(227), + [anon_sym_BQUOTE] = ACTIONS(227), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(227), + [anon_sym_LF] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(227), + }, + [61] = { + [aux_sym_concatenation_repeat1] = STATE(281), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(251), + [anon_sym_PIPE_AMP] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [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(251), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [anon_sym_LT_LT_LT] = ACTIONS(251), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LT_LPAREN] = ACTIONS(251), + [anon_sym_GT_LPAREN] = ACTIONS(251), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), + }, + [62] = { + [aux_sym_concatenation_repeat1] = STATE(281), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(251), + [anon_sym_LPAREN] = ACTIONS(499), + [anon_sym_PIPE_AMP] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [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(251), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [anon_sym_LT_LT_LT] = ACTIONS(251), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LT_LPAREN] = ACTIONS(251), + [anon_sym_GT_LPAREN] = ACTIONS(251), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), + }, + [63] = { + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(503), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(505), + }, + [64] = { + [sym_file_redirect] = STATE(293), + [sym_heredoc_redirect] = STATE(293), + [sym_heredoc_body] = STATE(201), + [sym_herestring_redirect] = STATE(293), + [sym_concatenation] = STATE(202), + [sym_string] = STATE(292), + [sym_simple_expansion] = STATE(292), + [sym_string_expansion] = STATE(292), + [sym_expansion] = STATE(292), + [sym_command_substitution] = STATE(292), + [sym_process_substitution] = STATE(292), + [aux_sym_while_statement_repeat1] = STATE(293), + [aux_sym_command_repeat2] = STATE(294), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(345), + [anon_sym_SEMI_SEMI] = ACTIONS(345), + [anon_sym_PIPE_AMP] = ACTIONS(345), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(515), + [anon_sym_AMP_GT_GT] = ACTIONS(515), + [anon_sym_LT_AMP] = ACTIONS(515), + [anon_sym_GT_AMP] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(517), + [sym__special_characters] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(521), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_LF] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(345), + }, + [65] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(503), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(505), + }, + [66] = { + [anon_sym_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [sym_comment] = ACTIONS(53), + }, + [67] = { + [sym__terminated_statement] = STATE(297), + [sym_for_statement] = STATE(295), + [sym_c_style_for_statement] = STATE(295), + [sym_while_statement] = STATE(295), + [sym_if_statement] = STATE(295), + [sym_case_statement] = STATE(295), + [sym_function_definition] = STATE(295), + [sym_subshell] = STATE(295), + [sym_pipeline] = STATE(295), + [sym_list] = STATE(295), + [sym_negated_command] = STATE(295), + [sym_test_command] = STATE(295), + [sym_declaration_command] = STATE(295), + [sym_unset_command] = STATE(295), + [sym_command] = STATE(295), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(296), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(68), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(61), + [sym_simple_expansion] = STATE(61), + [sym_string_expansion] = STATE(61), + [sym_expansion] = STATE(61), + [sym_command_substitution] = STATE(61), + [sym_process_substitution] = STATE(61), + [aux_sym_program_repeat1] = STATE(297), + [aux_sym_command_repeat1] = STATE(68), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [68] = { + [sym_command_name] = STATE(298), + [sym_variable_assignment] = STATE(207), + [sym_subscript] = STATE(71), + [sym_file_redirect] = STATE(207), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(61), + [sym_simple_expansion] = STATE(61), + [sym_string_expansion] = STATE(61), + [sym_expansion] = STATE(61), + [sym_command_substitution] = STATE(61), + [sym_process_substitution] = STATE(61), + [aux_sym_command_repeat1] = STATE(207), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(523), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(105), + }, + [69] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(525), + [sym_comment] = ACTIONS(53), + }, + [70] = { + [anon_sym_esac] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_SEMI_SEMI] = ACTIONS(527), + [anon_sym_PIPE_AMP] = ACTIONS(527), + [anon_sym_AMP_AMP] = ACTIONS(527), + [anon_sym_PIPE_PIPE] = ACTIONS(527), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(527), + [anon_sym_LF] = ACTIONS(529), + [anon_sym_AMP] = ACTIONS(527), + }, + [71] = { + [anon_sym_EQ] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(525), + [sym_comment] = ACTIONS(53), + }, + [72] = { + [sym__expression] = STATE(303), + [sym_binary_expression] = STATE(303), + [sym_unary_expression] = STATE(303), + [sym_parenthesized_expression] = STATE(303), + [sym_concatenation] = STATE(303), + [sym_string] = STATE(302), + [sym_simple_expansion] = STATE(302), + [sym_string_expansion] = STATE(302), + [sym_expansion] = STATE(302), + [sym_command_substitution] = STATE(302), + [sym_process_substitution] = STATE(302), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(531), + [sym__special_characters] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(537), + [sym_test_operator] = ACTIONS(539), + }, + [73] = { + [sym__expression] = STATE(304), + [sym_binary_expression] = STATE(304), + [sym_unary_expression] = STATE(304), + [sym_parenthesized_expression] = STATE(304), + [sym_concatenation] = STATE(304), + [sym_string] = STATE(77), + [sym_simple_expansion] = STATE(77), + [sym_string_expansion] = STATE(77), + [sym_expansion] = STATE(77), + [sym_command_substitution] = STATE(77), + [sym_process_substitution] = STATE(77), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [sym__special_characters] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(131), + [sym_test_operator] = ACTIONS(133), + }, + [74] = { + [aux_sym_concatenation_repeat1] = STATE(306), + [sym__concat] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE_PIPE] = ACTIONS(543), + [anon_sym_RBRACK] = ACTIONS(543), + [anon_sym_EQ_TILDE] = ACTIONS(543), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(543), + }, + [75] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(309), + [anon_sym_DQUOTE] = ACTIONS(547), + [anon_sym_DOLLAR] = ACTIONS(549), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [76] = { + [sym_string] = STATE(311), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(551), + [sym_raw_string] = ACTIONS(553), + [anon_sym_POUND] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(555), + [anon_sym_STAR] = ACTIONS(551), + [anon_sym_AT] = ACTIONS(551), + [anon_sym_QMARK] = ACTIONS(551), + [anon_sym_0] = ACTIONS(557), + [anon_sym__] = ACTIONS(557), + }, + [77] = { + [aux_sym_concatenation_repeat1] = STATE(306), + [sym__concat] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(559), + [anon_sym_EQ_TILDE] = ACTIONS(559), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(559), + }, + [78] = { + [sym_subscript] = STATE(317), + [sym_variable_name] = ACTIONS(563), + [anon_sym_DOLLAR] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(565), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(571), + }, + [79] = { + [sym_for_statement] = STATE(318), + [sym_c_style_for_statement] = STATE(318), + [sym_while_statement] = STATE(318), + [sym_if_statement] = STATE(318), + [sym_case_statement] = STATE(318), + [sym_function_definition] = STATE(318), + [sym_subshell] = STATE(318), + [sym_pipeline] = STATE(318), + [sym_list] = STATE(318), + [sym_negated_command] = STATE(318), + [sym_test_command] = STATE(318), + [sym_declaration_command] = STATE(318), + [sym_unset_command] = STATE(318), + [sym_command] = STATE(318), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(319), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [80] = { + [sym_for_statement] = STATE(320), + [sym_c_style_for_statement] = STATE(320), + [sym_while_statement] = STATE(320), + [sym_if_statement] = STATE(320), + [sym_case_statement] = STATE(320), + [sym_function_definition] = STATE(320), + [sym_subshell] = STATE(320), + [sym_pipeline] = STATE(320), + [sym_list] = STATE(320), + [sym_negated_command] = STATE(320), + [sym_test_command] = STATE(320), + [sym_declaration_command] = STATE(320), + [sym_unset_command] = STATE(320), + [sym_command] = STATE(320), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(321), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [81] = { + [sym_for_statement] = STATE(322), + [sym_c_style_for_statement] = STATE(322), + [sym_while_statement] = STATE(322), + [sym_if_statement] = STATE(322), + [sym_case_statement] = STATE(322), + [sym_function_definition] = STATE(322), + [sym_subshell] = STATE(322), + [sym_pipeline] = STATE(322), + [sym_list] = STATE(322), + [sym_negated_command] = STATE(322), + [sym_test_command] = STATE(322), + [sym_declaration_command] = STATE(322), + [sym_unset_command] = STATE(322), + [sym_command] = STATE(322), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(323), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [82] = { + [anon_sym_AMP_AMP] = ACTIONS(573), + [anon_sym_PIPE_PIPE] = ACTIONS(573), + [anon_sym_RBRACK] = ACTIONS(575), + [anon_sym_EQ_TILDE] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_BANG_EQ] = ACTIONS(573), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(573), + }, + [83] = { + [sym__expression] = STATE(327), + [sym_binary_expression] = STATE(327), + [sym_unary_expression] = STATE(327), + [sym_parenthesized_expression] = STATE(327), + [sym_concatenation] = STATE(327), + [sym_string] = STATE(302), + [sym_simple_expansion] = STATE(302), + [sym_string_expansion] = STATE(302), + [sym_expansion] = STATE(302), + [sym_command_substitution] = STATE(302), + [sym_process_substitution] = STATE(302), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(531), + [sym__special_characters] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(537), + [sym_test_operator] = ACTIONS(539), + }, + [84] = { + [sym__expression] = STATE(328), + [sym_binary_expression] = STATE(328), + [sym_unary_expression] = STATE(328), + [sym_parenthesized_expression] = STATE(328), + [sym_concatenation] = STATE(328), + [sym_string] = STATE(88), + [sym_simple_expansion] = STATE(88), + [sym_string_expansion] = STATE(88), + [sym_expansion] = STATE(88), + [sym_command_substitution] = STATE(88), + [sym_process_substitution] = STATE(88), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(139), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(157), }, [85] = { - [aux_sym_concatenation_repeat1] = STATE(316), - [sym__concat] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(517), - [anon_sym_PIPE_PIPE] = ACTIONS(517), - [anon_sym_RBRACK_RBRACK] = ACTIONS(517), - [anon_sym_EQ_TILDE] = ACTIONS(517), - [anon_sym_EQ_EQ] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(517), - [anon_sym_BANG_EQ] = ACTIONS(517), + [aux_sym_concatenation_repeat1] = STATE(330), + [sym__concat] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE_PIPE] = ACTIONS(543), + [anon_sym_RBRACK_RBRACK] = ACTIONS(543), + [anon_sym_EQ_TILDE] = ACTIONS(543), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(517), + [sym_test_operator] = ACTIONS(543), }, [86] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(319), - [anon_sym_DQUOTE] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(559), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(333), + [anon_sym_DQUOTE] = ACTIONS(583), + [anon_sym_DOLLAR] = ACTIONS(585), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [87] = { - [sym_string] = STATE(321), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(561), - [sym_raw_string] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AT] = ACTIONS(561), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_0] = ACTIONS(567), - [anon_sym__] = ACTIONS(567), + [sym_string] = STATE(335), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(587), + [sym_raw_string] = ACTIONS(589), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(587), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_0] = ACTIONS(593), + [anon_sym__] = ACTIONS(593), }, [88] = { - [aux_sym_concatenation_repeat1] = STATE(316), - [sym__concat] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(533), - [anon_sym_PIPE_PIPE] = ACTIONS(533), - [anon_sym_RBRACK_RBRACK] = ACTIONS(533), - [anon_sym_EQ_TILDE] = ACTIONS(533), - [anon_sym_EQ_EQ] = ACTIONS(533), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(533), - [anon_sym_GT] = ACTIONS(533), - [anon_sym_BANG_EQ] = ACTIONS(533), + [aux_sym_concatenation_repeat1] = STATE(330), + [sym__concat] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_RBRACK_RBRACK] = ACTIONS(559), + [anon_sym_EQ_TILDE] = ACTIONS(559), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(533), + [sym_test_operator] = ACTIONS(559), }, [89] = { - [sym_subscript] = STATE(327), - [sym_variable_name] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_POUND] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(571), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_0] = ACTIONS(577), - [anon_sym__] = ACTIONS(577), + [sym_subscript] = STATE(341), + [sym_variable_name] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_0] = ACTIONS(603), + [anon_sym__] = ACTIONS(603), }, [90] = { - [sym_for_statement] = STATE(328), - [sym_while_statement] = STATE(328), - [sym_if_statement] = STATE(328), - [sym_case_statement] = STATE(328), - [sym_function_definition] = STATE(328), - [sym_subshell] = STATE(328), - [sym_pipeline] = STATE(328), - [sym_list] = STATE(328), - [sym_negated_command] = STATE(328), - [sym_test_command] = STATE(328), - [sym_declaration_command] = STATE(328), - [sym_unset_command] = STATE(328), - [sym_command] = STATE(328), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(329), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [sym_for_statement] = STATE(342), + [sym_c_style_for_statement] = STATE(342), + [sym_while_statement] = STATE(342), + [sym_if_statement] = STATE(342), + [sym_case_statement] = STATE(342), + [sym_function_definition] = STATE(342), + [sym_subshell] = STATE(342), + [sym_pipeline] = STATE(342), + [sym_list] = STATE(342), + [sym_negated_command] = STATE(342), + [sym_test_command] = STATE(342), + [sym_declaration_command] = STATE(342), + [sym_unset_command] = STATE(342), + [sym_command] = STATE(342), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(343), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -10745,62 +11472,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(303), }, [91] = { - [sym_for_statement] = STATE(330), - [sym_while_statement] = STATE(330), - [sym_if_statement] = STATE(330), - [sym_case_statement] = STATE(330), - [sym_function_definition] = STATE(330), - [sym_subshell] = STATE(330), - [sym_pipeline] = STATE(330), - [sym_list] = STATE(330), - [sym_negated_command] = STATE(330), - [sym_test_command] = STATE(330), - [sym_declaration_command] = STATE(330), - [sym_unset_command] = STATE(330), - [sym_command] = STATE(330), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(331), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), + [sym_for_statement] = STATE(344), + [sym_c_style_for_statement] = STATE(344), + [sym_while_statement] = STATE(344), + [sym_if_statement] = STATE(344), + [sym_case_statement] = STATE(344), + [sym_function_definition] = STATE(344), + [sym_subshell] = STATE(344), + [sym_pipeline] = STATE(344), + [sym_list] = STATE(344), + [sym_negated_command] = STATE(344), + [sym_test_command] = STATE(344), + [sym_declaration_command] = STATE(344), + [sym_unset_command] = STATE(344), + [sym_command] = STATE(344), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(345), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -10808,62 +11536,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [sym_word] = ACTIONS(325), }, [92] = { - [sym_for_statement] = STATE(332), - [sym_while_statement] = STATE(332), - [sym_if_statement] = STATE(332), - [sym_case_statement] = STATE(332), - [sym_function_definition] = STATE(332), - [sym_subshell] = STATE(332), - [sym_pipeline] = STATE(332), - [sym_list] = STATE(332), - [sym_negated_command] = STATE(332), - [sym_test_command] = STATE(332), - [sym_declaration_command] = STATE(332), - [sym_unset_command] = STATE(332), - [sym_command] = STATE(332), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(333), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [sym_for_statement] = STATE(346), + [sym_c_style_for_statement] = STATE(346), + [sym_while_statement] = STATE(346), + [sym_if_statement] = STATE(346), + [sym_case_statement] = STATE(346), + [sym_function_definition] = STATE(346), + [sym_subshell] = STATE(346), + [sym_pipeline] = STATE(346), + [sym_list] = STATE(346), + [sym_negated_command] = STATE(346), + [sym_test_command] = STATE(346), + [sym_declaration_command] = STATE(346), + [sym_unset_command] = STATE(346), + [sym_command] = STATE(346), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(347), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -10871,173 +11600,174 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(303), }, [93] = { - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_RBRACK_RBRACK] = ACTIONS(549), - [anon_sym_EQ_TILDE] = ACTIONS(581), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_EQ] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_RBRACK_RBRACK] = ACTIONS(575), + [anon_sym_EQ_TILDE] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_EQ] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(579), + [sym_test_operator] = ACTIONS(605), }, [94] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(611), [sym_comment] = ACTIONS(53), }, [95] = { - [aux_sym_concatenation_repeat1] = STATE(338), - [sym__concat] = ACTIONS(587), - [sym_variable_name] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(591), - [anon_sym_SEMI_SEMI] = ACTIONS(591), - [anon_sym_PIPE_AMP] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [sym__special_characters] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [anon_sym_DOLLAR] = ACTIONS(591), - [sym_raw_string] = ACTIONS(591), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(591), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(591), - [anon_sym_BQUOTE] = ACTIONS(591), - [anon_sym_LT_LPAREN] = ACTIONS(591), - [anon_sym_GT_LPAREN] = ACTIONS(591), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(591), - [sym_word] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(591), + [aux_sym_concatenation_repeat1] = STATE(352), + [sym__concat] = ACTIONS(613), + [sym_variable_name] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_SEMI_SEMI] = ACTIONS(617), + [anon_sym_PIPE_AMP] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [sym__special_characters] = ACTIONS(617), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(617), + [sym_raw_string] = ACTIONS(617), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_LT_LPAREN] = ACTIONS(617), + [anon_sym_GT_LPAREN] = ACTIONS(617), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(617), + [sym_word] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(617), }, [96] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(341), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(595), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(355), + [anon_sym_DQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [97] = { - [sym_string] = STATE(343), - [anon_sym_DQUOTE] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(599), - [sym_raw_string] = ACTIONS(601), - [anon_sym_POUND] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(599), - [anon_sym_0] = ACTIONS(605), - [anon_sym__] = ACTIONS(605), + [sym_string] = STATE(357), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(625), + [sym_raw_string] = ACTIONS(627), + [anon_sym_POUND] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_AT] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(625), + [anon_sym_0] = ACTIONS(631), + [anon_sym__] = ACTIONS(631), }, [98] = { - [aux_sym_concatenation_repeat1] = STATE(338), - [sym__concat] = ACTIONS(587), - [sym_variable_name] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_SEMI_SEMI] = ACTIONS(609), - [anon_sym_PIPE_AMP] = ACTIONS(609), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [sym__special_characters] = ACTIONS(609), - [anon_sym_DQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(609), - [sym_raw_string] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_LT_LPAREN] = ACTIONS(609), - [anon_sym_GT_LPAREN] = ACTIONS(609), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), - [sym_word] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(609), + [aux_sym_concatenation_repeat1] = STATE(352), + [sym__concat] = ACTIONS(613), + [sym_variable_name] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_SEMI_SEMI] = ACTIONS(635), + [anon_sym_PIPE_AMP] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [sym__special_characters] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(635), + [sym_raw_string] = ACTIONS(635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), + [anon_sym_BQUOTE] = ACTIONS(635), + [anon_sym_LT_LPAREN] = ACTIONS(635), + [anon_sym_GT_LPAREN] = ACTIONS(635), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), + [sym_word] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_LF] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(635), }, [99] = { - [sym_subscript] = STATE(349), - [sym_variable_name] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(613), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_0] = ACTIONS(619), - [anon_sym__] = ACTIONS(619), + [sym_subscript] = STATE(363), + [sym_variable_name] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(639), + [anon_sym_POUND] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(639), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(639), + [anon_sym_QMARK] = ACTIONS(639), + [anon_sym_0] = ACTIONS(645), + [anon_sym__] = ACTIONS(645), }, [100] = { - [sym_for_statement] = STATE(350), - [sym_while_statement] = STATE(350), - [sym_if_statement] = STATE(350), - [sym_case_statement] = STATE(350), - [sym_function_definition] = STATE(350), - [sym_subshell] = STATE(350), - [sym_pipeline] = STATE(350), - [sym_list] = STATE(350), - [sym_negated_command] = STATE(350), - [sym_test_command] = STATE(350), - [sym_declaration_command] = STATE(350), - [sym_unset_command] = STATE(350), - [sym_command] = STATE(350), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(351), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [sym_for_statement] = STATE(364), + [sym_c_style_for_statement] = STATE(364), + [sym_while_statement] = STATE(364), + [sym_if_statement] = STATE(364), + [sym_case_statement] = STATE(364), + [sym_function_definition] = STATE(364), + [sym_subshell] = STATE(364), + [sym_pipeline] = STATE(364), + [sym_list] = STATE(364), + [sym_negated_command] = STATE(364), + [sym_test_command] = STATE(364), + [sym_declaration_command] = STATE(364), + [sym_unset_command] = STATE(364), + [sym_command] = STATE(364), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(365), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -11045,62 +11775,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(303), }, [101] = { - [sym_for_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_case_statement] = STATE(352), - [sym_function_definition] = STATE(352), - [sym_subshell] = STATE(352), - [sym_pipeline] = STATE(352), - [sym_list] = STATE(352), - [sym_negated_command] = STATE(352), - [sym_test_command] = STATE(352), - [sym_declaration_command] = STATE(352), - [sym_unset_command] = STATE(352), - [sym_command] = STATE(352), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(353), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), + [sym_for_statement] = STATE(366), + [sym_c_style_for_statement] = STATE(366), + [sym_while_statement] = STATE(366), + [sym_if_statement] = STATE(366), + [sym_case_statement] = STATE(366), + [sym_function_definition] = STATE(366), + [sym_subshell] = STATE(366), + [sym_pipeline] = STATE(366), + [sym_list] = STATE(366), + [sym_negated_command] = STATE(366), + [sym_test_command] = STATE(366), + [sym_declaration_command] = STATE(366), + [sym_unset_command] = STATE(366), + [sym_command] = STATE(366), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(367), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -11108,62 +11839,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [sym_word] = ACTIONS(325), }, [102] = { - [sym_for_statement] = STATE(354), - [sym_while_statement] = STATE(354), - [sym_if_statement] = STATE(354), - [sym_case_statement] = STATE(354), - [sym_function_definition] = STATE(354), - [sym_subshell] = STATE(354), - [sym_pipeline] = STATE(354), - [sym_list] = STATE(354), - [sym_negated_command] = STATE(354), - [sym_test_command] = STATE(354), - [sym_declaration_command] = STATE(354), - [sym_unset_command] = STATE(354), - [sym_command] = STATE(354), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(355), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [sym_for_statement] = STATE(368), + [sym_c_style_for_statement] = STATE(368), + [sym_while_statement] = STATE(368), + [sym_if_statement] = STATE(368), + [sym_case_statement] = STATE(368), + [sym_function_definition] = STATE(368), + [sym_subshell] = STATE(368), + [sym_pipeline] = STATE(368), + [sym_list] = STATE(368), + [sym_negated_command] = STATE(368), + [sym_test_command] = STATE(368), + [sym_declaration_command] = STATE(368), + [sym_unset_command] = STATE(368), + [sym_command] = STATE(368), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(369), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -11171,136 +11903,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(303), }, [103] = { - [sym_variable_name] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(623), - [anon_sym_SEMI_SEMI] = ACTIONS(623), - [anon_sym_PIPE_AMP] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [sym__special_characters] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(623), - [sym_raw_string] = ACTIONS(623), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(623), - [anon_sym_BQUOTE] = ACTIONS(623), - [anon_sym_LT_LPAREN] = ACTIONS(623), - [anon_sym_GT_LPAREN] = ACTIONS(623), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), - [sym_word] = ACTIONS(623), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_LF] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - }, - [104] = { - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(53), - }, - [105] = { - [sym_variable_assignment] = STATE(356), - [sym_subscript] = STATE(104), - [sym_concatenation] = STATE(356), - [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_declaration_command_repeat1] = STATE(356), - [sym_variable_name] = ACTIONS(157), - [anon_sym_PIPE] = 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), - [sym__special_characters] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(179), - [sym_word] = ACTIONS(167), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - }, - [106] = { - [aux_sym_concatenation_repeat1] = STATE(358), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_SEMI_SEMI] = ACTIONS(631), - [anon_sym_PIPE_AMP] = ACTIONS(631), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym__special_characters] = ACTIONS(631), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [sym_raw_string] = ACTIONS(631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(631), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(631), - [sym_word] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_LF] = ACTIONS(633), - [anon_sym_AMP] = ACTIONS(631), - }, - [107] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(361), - [anon_sym_DQUOTE] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(637), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [108] = { - [sym_string] = STATE(363), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(641), - [sym_raw_string] = ACTIONS(643), - [anon_sym_POUND] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(641), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_AT] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(641), - [anon_sym_0] = ACTIONS(647), - [anon_sym__] = ACTIONS(647), - }, - [109] = { - [aux_sym_concatenation_repeat1] = STATE(358), - [sym__concat] = ACTIONS(629), + [sym_variable_name] = ACTIONS(647), [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(649), [anon_sym_SEMI_SEMI] = ACTIONS(649), [anon_sym_PIPE_AMP] = ACTIONS(649), [anon_sym_AMP_AMP] = ACTIONS(649), @@ -11314,314 +11932,158 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(649), [anon_sym_LT_LPAREN] = ACTIONS(649), [anon_sym_GT_LPAREN] = ACTIONS(649), - [sym_comment] = ACTIONS(177), + [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), [sym_word] = ACTIONS(649), [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_LF] = ACTIONS(651), + [anon_sym_LF] = ACTIONS(647), [anon_sym_AMP] = ACTIONS(649), }, + [104] = { + [sym_variable_name] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_SEMI_SEMI] = ACTIONS(635), + [anon_sym_PIPE_AMP] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [sym__special_characters] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(635), + [sym_raw_string] = ACTIONS(635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), + [anon_sym_BQUOTE] = ACTIONS(635), + [anon_sym_LT_LPAREN] = ACTIONS(635), + [anon_sym_GT_LPAREN] = ACTIONS(635), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), + [sym_word] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_LF] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(635), + }, + [105] = { + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(611), + [sym_comment] = ACTIONS(53), + }, + [106] = { + [sym_variable_assignment] = STATE(104), + [sym_subscript] = STATE(105), + [sym_concatenation] = STATE(104), + [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_declaration_command_repeat1] = STATE(370), + [sym_variable_name] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_SEMI_SEMI] = ACTIONS(651), + [anon_sym_PIPE_AMP] = ACTIONS(651), + [anon_sym_AMP_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(651), + [sym__special_characters] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(173), + [anon_sym_BQUOTE] = ACTIONS(175), + [anon_sym_LT_LPAREN] = ACTIONS(177), + [anon_sym_GT_LPAREN] = ACTIONS(177), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), + [sym_word] = ACTIONS(169), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_LF] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + }, + [107] = { + [aux_sym_concatenation_repeat1] = STATE(372), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(657), + [anon_sym_SEMI_SEMI] = ACTIONS(657), + [anon_sym_PIPE_AMP] = ACTIONS(657), + [anon_sym_AMP_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [sym__special_characters] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(657), + [sym_raw_string] = ACTIONS(657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(657), + [anon_sym_BQUOTE] = ACTIONS(657), + [anon_sym_LT_LPAREN] = ACTIONS(657), + [anon_sym_GT_LPAREN] = ACTIONS(657), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(657), + [sym_word] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(657), + [anon_sym_LF] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(657), + }, + [108] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(375), + [anon_sym_DQUOTE] = ACTIONS(661), + [anon_sym_DOLLAR] = ACTIONS(663), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [109] = { + [sym_string] = STATE(377), + [anon_sym_DQUOTE] = ACTIONS(665), + [anon_sym_DOLLAR] = ACTIONS(667), + [sym_raw_string] = ACTIONS(669), + [anon_sym_POUND] = ACTIONS(667), + [anon_sym_DASH] = ACTIONS(667), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(667), + [anon_sym_QMARK] = ACTIONS(667), + [anon_sym_0] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + }, [110] = { - [sym_subscript] = STATE(369), - [sym_variable_name] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(655), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(659), - [anon_sym_STAR] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(655), - [anon_sym_0] = ACTIONS(661), - [anon_sym__] = ACTIONS(661), + [aux_sym_concatenation_repeat1] = STATE(372), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(675), + [anon_sym_AMP_AMP] = ACTIONS(675), + [anon_sym_PIPE_PIPE] = ACTIONS(675), + [sym__special_characters] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(675), + [anon_sym_DOLLAR] = ACTIONS(675), + [sym_raw_string] = ACTIONS(675), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_BQUOTE] = ACTIONS(675), + [anon_sym_LT_LPAREN] = ACTIONS(675), + [anon_sym_GT_LPAREN] = ACTIONS(675), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), + [sym_word] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(675), + [anon_sym_LF] = ACTIONS(677), + [anon_sym_AMP] = ACTIONS(675), }, [111] = { - [sym_for_statement] = STATE(370), - [sym_while_statement] = STATE(370), - [sym_if_statement] = STATE(370), - [sym_case_statement] = STATE(370), - [sym_function_definition] = STATE(370), - [sym_subshell] = STATE(370), - [sym_pipeline] = STATE(370), - [sym_list] = STATE(370), - [sym_negated_command] = STATE(370), - [sym_test_command] = STATE(370), - [sym_declaration_command] = STATE(370), - [sym_unset_command] = STATE(370), - [sym_command] = STATE(370), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(371), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [112] = { - [sym_for_statement] = STATE(372), - [sym_while_statement] = STATE(372), - [sym_if_statement] = STATE(372), - [sym_case_statement] = STATE(372), - [sym_function_definition] = STATE(372), - [sym_subshell] = STATE(372), - [sym_pipeline] = STATE(372), - [sym_list] = STATE(372), - [sym_negated_command] = STATE(372), - [sym_test_command] = STATE(372), - [sym_declaration_command] = STATE(372), - [sym_unset_command] = STATE(372), - [sym_command] = STATE(372), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(373), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [113] = { - [sym_for_statement] = STATE(374), - [sym_while_statement] = STATE(374), - [sym_if_statement] = STATE(374), - [sym_case_statement] = STATE(374), - [sym_function_definition] = STATE(374), - [sym_subshell] = STATE(374), - [sym_pipeline] = STATE(374), - [sym_list] = STATE(374), - [sym_negated_command] = STATE(374), - [sym_test_command] = STATE(374), - [sym_declaration_command] = STATE(374), - [sym_unset_command] = STATE(374), - [sym_command] = STATE(374), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(375), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [114] = { - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [anon_sym_PIPE_AMP] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [sym__special_characters] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [anon_sym_DOLLAR] = ACTIONS(663), - [sym_raw_string] = ACTIONS(663), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(663), - [anon_sym_BQUOTE] = ACTIONS(663), - [anon_sym_LT_LPAREN] = ACTIONS(663), - [anon_sym_GT_LPAREN] = ACTIONS(663), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(663), - [sym_word] = ACTIONS(663), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LF] = ACTIONS(665), - [anon_sym_AMP] = ACTIONS(663), - }, - [115] = { - [sym_concatenation] = STATE(376), - [sym_string] = STATE(109), - [sym_simple_expansion] = STATE(109), - [sym_string_expansion] = STATE(109), - [sym_expansion] = STATE(109), - [sym_command_substitution] = STATE(109), - [sym_process_substitution] = STATE(109), - [aux_sym_unset_command_repeat1] = STATE(376), - [anon_sym_PIPE] = ACTIONS(667), - [anon_sym_SEMI_SEMI] = ACTIONS(667), - [anon_sym_PIPE_AMP] = ACTIONS(667), - [anon_sym_AMP_AMP] = ACTIONS(667), - [anon_sym_PIPE_PIPE] = ACTIONS(667), - [sym__special_characters] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(187), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(197), - [anon_sym_LT_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(199), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(201), - [sym_word] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_LF] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(667), - }, - [116] = { - [aux_sym_concatenation_repeat1] = STATE(378), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_AMP_GT] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(671), - [anon_sym_GT_AMP] = ACTIONS(671), - [sym__special_characters] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(671), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_raw_string] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(671), - [anon_sym_BQUOTE] = ACTIONS(671), - [anon_sym_LT_LPAREN] = ACTIONS(671), - [anon_sym_GT_LPAREN] = ACTIONS(671), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(671), - }, - [117] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(381), - [anon_sym_DQUOTE] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(679), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [118] = { - [sym_string] = STATE(383), - [anon_sym_DQUOTE] = ACTIONS(207), + [sym_subscript] = STATE(383), + [sym_variable_name] = ACTIONS(679), [anon_sym_DOLLAR] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [anon_sym_POUND] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(683), [anon_sym_DASH] = ACTIONS(681), - [sym_comment] = ACTIONS(177), + [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(685), [anon_sym_STAR] = ACTIONS(681), [anon_sym_AT] = ACTIONS(681), @@ -11629,151 +12091,386 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(687), [anon_sym__] = ACTIONS(687), }, - [119] = { - [aux_sym_concatenation_repeat1] = STATE(378), - [sym_file_descriptor] = ACTIONS(689), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_AMP] = ACTIONS(689), + [112] = { + [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_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(165), + [sym_variable_assignment] = STATE(385), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [113] = { + [sym_for_statement] = STATE(386), + [sym_c_style_for_statement] = STATE(386), + [sym_while_statement] = STATE(386), + [sym_if_statement] = STATE(386), + [sym_case_statement] = STATE(386), + [sym_function_definition] = STATE(386), + [sym_subshell] = STATE(386), + [sym_pipeline] = STATE(386), + [sym_list] = STATE(386), + [sym_negated_command] = STATE(386), + [sym_test_command] = STATE(386), + [sym_declaration_command] = STATE(386), + [sym_unset_command] = STATE(386), + [sym_command] = STATE(386), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(387), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [114] = { + [sym_for_statement] = STATE(388), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_subshell] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [115] = { + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), [sym__special_characters] = ACTIONS(689), [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(689), [sym_raw_string] = ACTIONS(689), [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), [anon_sym_BQUOTE] = ACTIONS(689), [anon_sym_LT_LPAREN] = ACTIONS(689), [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), [sym_word] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(689), + }, + [116] = { + [sym_concatenation] = STATE(390), + [sym_string] = STATE(110), + [sym_simple_expansion] = STATE(110), + [sym_string_expansion] = STATE(110), + [sym_expansion] = STATE(110), + [sym_command_substitution] = STATE(110), + [sym_process_substitution] = STATE(110), + [aux_sym_unset_command_repeat1] = STATE(390), + [anon_sym_PIPE] = ACTIONS(693), + [anon_sym_SEMI_SEMI] = ACTIONS(693), + [anon_sym_PIPE_AMP] = ACTIONS(693), + [anon_sym_AMP_AMP] = ACTIONS(693), + [anon_sym_PIPE_PIPE] = ACTIONS(693), + [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(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), + [sym_word] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(693), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(693), + }, + [117] = { + [aux_sym_concatenation_repeat1] = STATE(392), + [sym_file_descriptor] = ACTIONS(697), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(697), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(697), + [anon_sym_LT_AMP] = ACTIONS(697), + [anon_sym_GT_AMP] = ACTIONS(697), + [sym__special_characters] = ACTIONS(697), + [anon_sym_DQUOTE] = ACTIONS(697), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(697), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(697), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(697), + [anon_sym_BQUOTE] = ACTIONS(697), + [anon_sym_LT_LPAREN] = ACTIONS(697), + [anon_sym_GT_LPAREN] = ACTIONS(697), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(697), + }, + [118] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(395), + [anon_sym_DQUOTE] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [119] = { + [sym_string] = STATE(397), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(709), + [anon_sym_POUND] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym_AT] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(707), + [anon_sym_0] = ACTIONS(713), + [anon_sym__] = ACTIONS(713), }, [120] = { - [sym_subscript] = STATE(389), - [sym_variable_name] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_AT] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_0] = ACTIONS(701), - [anon_sym__] = ACTIONS(701), + [aux_sym_concatenation_repeat1] = STATE(392), + [sym_file_descriptor] = ACTIONS(715), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(715), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(715), + [anon_sym_LT_AMP] = ACTIONS(715), + [anon_sym_GT_AMP] = ACTIONS(715), + [sym__special_characters] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(717), + [sym_raw_string] = ACTIONS(715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_LT_LPAREN] = ACTIONS(715), + [anon_sym_GT_LPAREN] = ACTIONS(715), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(715), }, [121] = { - [sym_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_if_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_subshell] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_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(164), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_subscript] = STATE(403), + [sym_variable_name] = ACTIONS(719), + [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_POUND] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(721), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(721), + [anon_sym_QMARK] = ACTIONS(721), + [anon_sym_0] = ACTIONS(727), + [anon_sym__] = ACTIONS(727), }, [122] = { - [sym_for_statement] = STATE(392), - [sym_while_statement] = STATE(392), - [sym_if_statement] = STATE(392), - [sym_case_statement] = STATE(392), - [sym_function_definition] = STATE(392), - [sym_subshell] = STATE(392), - [sym_pipeline] = STATE(392), - [sym_list] = STATE(392), - [sym_negated_command] = STATE(392), - [sym_test_command] = STATE(392), - [sym_declaration_command] = STATE(392), - [sym_unset_command] = STATE(392), - [sym_command] = STATE(392), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(393), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), + [sym_for_statement] = STATE(404), + [sym_c_style_for_statement] = STATE(404), + [sym_while_statement] = STATE(404), + [sym_if_statement] = STATE(404), + [sym_case_statement] = STATE(404), + [sym_function_definition] = STATE(404), + [sym_subshell] = STATE(404), + [sym_pipeline] = STATE(404), + [sym_list] = STATE(404), + [sym_negated_command] = STATE(404), + [sym_test_command] = STATE(404), + [sym_declaration_command] = STATE(404), + [sym_unset_command] = STATE(404), + [sym_command] = STATE(404), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(405), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -11781,62 +12478,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [sym_word] = ACTIONS(303), }, [123] = { - [sym_for_statement] = STATE(394), - [sym_while_statement] = STATE(394), - [sym_if_statement] = STATE(394), - [sym_case_statement] = STATE(394), - [sym_function_definition] = STATE(394), - [sym_subshell] = STATE(394), - [sym_pipeline] = STATE(394), - [sym_list] = STATE(394), - [sym_negated_command] = STATE(394), - [sym_test_command] = STATE(394), - [sym_declaration_command] = STATE(394), - [sym_unset_command] = STATE(394), - [sym_command] = STATE(394), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(395), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [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_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(182), + [sym_variable_assignment] = STATE(407), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -11844,176 +12542,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(325), }, [124] = { - [sym_file_descriptor] = ACTIONS(689), - [sym_variable_name] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym__special_characters] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR] = ACTIONS(691), - [sym_raw_string] = ACTIONS(689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(689), - }, - [125] = { - [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), - [sym__special_characters] = ACTIONS(703), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(703), - }, - [126] = { - [aux_sym_concatenation_repeat1] = STATE(397), - [sym__simple_heredoc_body] = ACTIONS(705), - [sym__heredoc_body_beginning] = ACTIONS(705), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = 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_EQ_TILDE] = ACTIONS(707), - [anon_sym_EQ_EQ] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(707), - [anon_sym_LT_AMP] = ACTIONS(707), - [anon_sym_GT_AMP] = ACTIONS(707), - [anon_sym_LT_LT] = ACTIONS(707), - [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(707), - [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(177), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [127] = { - [sym__simple_heredoc_body] = ACTIONS(709), - [sym__heredoc_body_beginning] = ACTIONS(709), - [sym_file_descriptor] = ACTIONS(709), - [sym__concat] = ACTIONS(709), - [anon_sym_esac] = ACTIONS(711), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_PIPE_AMP] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [anon_sym_EQ_TILDE] = ACTIONS(711), - [anon_sym_EQ_EQ] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_GT] = ACTIONS(711), - [anon_sym_GT_GT] = ACTIONS(711), - [anon_sym_AMP_GT] = ACTIONS(711), - [anon_sym_AMP_GT_GT] = ACTIONS(711), - [anon_sym_LT_AMP] = ACTIONS(711), - [anon_sym_GT_AMP] = ACTIONS(711), - [anon_sym_LT_LT] = ACTIONS(711), - [anon_sym_LT_LT_DASH] = ACTIONS(711), - [anon_sym_LT_LT_LT] = ACTIONS(711), - [sym__special_characters] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(711), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), - [anon_sym_BQUOTE] = ACTIONS(711), - [anon_sym_LT_LPAREN] = ACTIONS(711), - [anon_sym_GT_LPAREN] = ACTIONS(711), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_LF] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(711), - }, - [128] = { - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [129] = { - [sym__concat] = ACTIONS(723), - [anon_sym_DQUOTE] = ACTIONS(725), - [anon_sym_DOLLAR] = ACTIONS(725), - [sym__string_content] = ACTIONS(727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), - [anon_sym_BQUOTE] = ACTIONS(725), - [sym_comment] = ACTIONS(177), - }, - [130] = { - [sym_subscript] = STATE(407), - [sym_variable_name] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(731), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(735), - [anon_sym_STAR] = ACTIONS(731), - [anon_sym_AT] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_0] = ACTIONS(737), - [anon_sym__] = ACTIONS(737), - }, - [131] = { [sym_for_statement] = STATE(408), + [sym_c_style_for_statement] = STATE(408), [sym_while_statement] = STATE(408), [sym_if_statement] = STATE(408), [sym_case_statement] = STATE(408), @@ -12026,36 +12569,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(408), [sym_unset_command] = STATE(408), [sym_command] = STATE(408), - [sym_command_name] = STATE(164), + [sym_command_name] = STATE(165), [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -12063,396 +12606,555 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(303), }, - [132] = { - [sym_for_statement] = STATE(410), - [sym_while_statement] = STATE(410), - [sym_if_statement] = STATE(410), - [sym_case_statement] = STATE(410), - [sym_function_definition] = STATE(410), - [sym_subshell] = STATE(410), - [sym_pipeline] = STATE(410), - [sym_list] = STATE(410), - [sym_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(181), - [sym_variable_assignment] = STATE(411), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [125] = { + [sym_file_descriptor] = ACTIONS(715), + [sym_variable_name] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(715), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(715), + [anon_sym_LT_AMP] = ACTIONS(715), + [anon_sym_GT_AMP] = ACTIONS(715), + [sym__special_characters] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(717), + [sym_raw_string] = ACTIONS(715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_LT_LPAREN] = ACTIONS(715), + [anon_sym_GT_LPAREN] = ACTIONS(715), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [sym_word] = ACTIONS(715), }, - [133] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_DOLLAR] = ACTIONS(739), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [134] = { - [sym__simple_heredoc_body] = ACTIONS(741), - [sym__heredoc_body_beginning] = ACTIONS(741), - [sym_file_descriptor] = ACTIONS(741), - [sym__concat] = ACTIONS(741), - [anon_sym_esac] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_PIPE_AMP] = ACTIONS(743), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [anon_sym_EQ_TILDE] = ACTIONS(743), - [anon_sym_EQ_EQ] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_GT_GT] = ACTIONS(743), - [anon_sym_AMP_GT] = ACTIONS(743), - [anon_sym_AMP_GT_GT] = ACTIONS(743), - [anon_sym_LT_AMP] = ACTIONS(743), - [anon_sym_GT_AMP] = ACTIONS(743), - [anon_sym_LT_LT] = ACTIONS(743), - [anon_sym_LT_LT_DASH] = ACTIONS(743), - [anon_sym_LT_LT_LT] = ACTIONS(743), - [sym__special_characters] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LT_LPAREN] = ACTIONS(743), - [anon_sym_GT_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LF] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), - }, - [135] = { - [sym__simple_heredoc_body] = ACTIONS(745), - [sym__heredoc_body_beginning] = ACTIONS(745), - [sym_file_descriptor] = ACTIONS(745), - [sym__concat] = ACTIONS(745), - [anon_sym_esac] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [anon_sym_EQ_TILDE] = ACTIONS(747), - [anon_sym_EQ_EQ] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_GT] = ACTIONS(747), - [anon_sym_AMP_GT] = ACTIONS(747), - [anon_sym_AMP_GT_GT] = ACTIONS(747), - [anon_sym_LT_AMP] = ACTIONS(747), - [anon_sym_GT_AMP] = ACTIONS(747), - [anon_sym_LT_LT] = ACTIONS(747), - [anon_sym_LT_LT_DASH] = ACTIONS(747), - [anon_sym_LT_LT_LT] = ACTIONS(747), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(747), - [anon_sym_DOLLAR] = ACTIONS(747), - [sym_raw_string] = ACTIONS(747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), - [anon_sym_BQUOTE] = ACTIONS(747), - [anon_sym_LT_LPAREN] = ACTIONS(747), - [anon_sym_GT_LPAREN] = ACTIONS(747), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - }, - [136] = { - [sym__simple_heredoc_body] = ACTIONS(749), - [sym__heredoc_body_beginning] = ACTIONS(749), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(749), - [anon_sym_esac] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_PIPE_AMP] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_EQ_TILDE] = ACTIONS(751), - [anon_sym_EQ_EQ] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(751), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(751), - [anon_sym_LT_AMP] = ACTIONS(751), - [anon_sym_GT_AMP] = ACTIONS(751), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(751), - [anon_sym_LT_LT_LT] = ACTIONS(751), - [sym__special_characters] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [anon_sym_LT_LPAREN] = ACTIONS(751), - [anon_sym_GT_LPAREN] = ACTIONS(751), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [137] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(755), - [sym_comment] = ACTIONS(53), - }, - [138] = { - [sym_concatenation] = STATE(426), - [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), - [aux_sym_expansion_repeat1] = STATE(426), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_EQ] = ACTIONS(759), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_COLON] = ACTIONS(759), - [anon_sym_COLON_QMARK] = ACTIONS(759), - [anon_sym_COLON_DASH] = ACTIONS(759), - [anon_sym_PERCENT] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [139] = { - [sym_subscript] = STATE(430), - [sym_variable_name] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_AT] = ACTIONS(785), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_0] = ACTIONS(789), - [anon_sym__] = ACTIONS(789), - }, - [140] = { - [sym_concatenation] = STATE(433), - [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), - [aux_sym_expansion_repeat1] = STATE(433), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_EQ] = ACTIONS(793), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(795), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(793), - [anon_sym_COLON_QMARK] = ACTIONS(793), - [anon_sym_COLON_DASH] = ACTIONS(793), - [anon_sym_PERCENT] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [141] = { - [sym_concatenation] = STATE(436), - [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), - [aux_sym_expansion_repeat1] = STATE(436), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_EQ] = ACTIONS(801), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(801), - [anon_sym_COLON_QMARK] = ACTIONS(801), - [anon_sym_COLON_DASH] = ACTIONS(801), - [anon_sym_PERCENT] = ACTIONS(801), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [142] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(807), - [sym_comment] = ACTIONS(53), - }, - [143] = { - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), - }, - [144] = { - [sym__terminated_statement] = STATE(439), - [sym_for_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_subshell] = STATE(39), - [sym_pipeline] = STATE(39), - [sym_list] = STATE(39), - [sym_negated_command] = STATE(39), - [sym_test_command] = STATE(39), - [sym_declaration_command] = STATE(39), - [sym_unset_command] = STATE(39), - [sym_command] = STATE(39), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), + [126] = { + [sym_string] = STATE(410), + [sym_simple_expansion] = STATE(410), + [sym_string_expansion] = STATE(410), + [sym_expansion] = STATE(410), + [sym_command_substitution] = STATE(410), + [sym_process_substitution] = STATE(410), + [sym__special_characters] = ACTIONS(729), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), + [sym_raw_string] = ACTIONS(729), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(729), + }, + [127] = { + [aux_sym_concatenation_repeat1] = STATE(411), + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_EQ_TILDE] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_LT_LT_LT] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [128] = { + [sym__simple_heredoc_body] = ACTIONS(735), + [sym__heredoc_body_beginning] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [anon_sym_esac] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [anon_sym_EQ_TILDE] = ACTIONS(737), + [anon_sym_EQ_EQ] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_GT] = ACTIONS(737), + [anon_sym_AMP_GT] = ACTIONS(737), + [anon_sym_AMP_GT_GT] = ACTIONS(737), + [anon_sym_LT_AMP] = ACTIONS(737), + [anon_sym_GT_AMP] = ACTIONS(737), + [anon_sym_LT_LT] = ACTIONS(737), + [anon_sym_LT_LT_DASH] = ACTIONS(737), + [anon_sym_LT_LT_LT] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + }, + [129] = { + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [130] = { + [sym__concat] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym__string_content] = ACTIONS(753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), + [anon_sym_BQUOTE] = ACTIONS(751), + [sym_comment] = ACTIONS(179), + }, + [131] = { + [sym_subscript] = STATE(421), + [sym_variable_name] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(757), + [anon_sym_QMARK] = ACTIONS(757), + [anon_sym_0] = ACTIONS(763), + [anon_sym__] = ACTIONS(763), + }, + [132] = { + [sym_for_statement] = STATE(422), + [sym_c_style_for_statement] = STATE(422), + [sym_while_statement] = STATE(422), + [sym_if_statement] = STATE(422), + [sym_case_statement] = STATE(422), + [sym_function_definition] = STATE(422), + [sym_subshell] = STATE(422), + [sym_pipeline] = STATE(422), + [sym_list] = STATE(422), + [sym_negated_command] = STATE(422), + [sym_test_command] = STATE(422), + [sym_declaration_command] = STATE(422), + [sym_unset_command] = STATE(422), + [sym_command] = STATE(422), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(423), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [133] = { + [sym_for_statement] = STATE(424), + [sym_c_style_for_statement] = STATE(424), + [sym_while_statement] = STATE(424), + [sym_if_statement] = STATE(424), + [sym_case_statement] = STATE(424), + [sym_function_definition] = STATE(424), + [sym_subshell] = STATE(424), + [sym_pipeline] = STATE(424), + [sym_list] = STATE(424), + [sym_negated_command] = STATE(424), + [sym_test_command] = STATE(424), + [sym_declaration_command] = STATE(424), + [sym_unset_command] = STATE(424), + [sym_command] = STATE(424), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(425), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [134] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [135] = { + [sym__simple_heredoc_body] = ACTIONS(767), + [sym__heredoc_body_beginning] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(767), + [sym__concat] = ACTIONS(767), + [anon_sym_esac] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_AMP_GT] = ACTIONS(769), + [anon_sym_AMP_GT_GT] = ACTIONS(769), + [anon_sym_LT_AMP] = ACTIONS(769), + [anon_sym_GT_AMP] = ACTIONS(769), + [anon_sym_LT_LT] = ACTIONS(769), + [anon_sym_LT_LT_DASH] = ACTIONS(769), + [anon_sym_LT_LT_LT] = ACTIONS(769), + [sym__special_characters] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym_raw_string] = ACTIONS(769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), + [anon_sym_BQUOTE] = ACTIONS(769), + [anon_sym_LT_LPAREN] = ACTIONS(769), + [anon_sym_GT_LPAREN] = ACTIONS(769), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), + }, + [136] = { + [sym__simple_heredoc_body] = ACTIONS(771), + [sym__heredoc_body_beginning] = ACTIONS(771), + [sym_file_descriptor] = ACTIONS(771), + [sym__concat] = ACTIONS(771), + [anon_sym_esac] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(773), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [sym__special_characters] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_LT_LPAREN] = ACTIONS(773), + [anon_sym_GT_LPAREN] = ACTIONS(773), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(773), + }, + [137] = { + [sym__simple_heredoc_body] = ACTIONS(775), + [sym__heredoc_body_beginning] = ACTIONS(775), + [sym_file_descriptor] = ACTIONS(775), + [sym__concat] = ACTIONS(775), + [anon_sym_esac] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [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_EQ_TILDE] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(777), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(777), + [anon_sym_LT_AMP] = ACTIONS(777), + [anon_sym_GT_AMP] = ACTIONS(777), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(777), + [anon_sym_LT_LT_LT] = ACTIONS(777), + [sym__special_characters] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(777), + }, + [138] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(781), + [sym_comment] = ACTIONS(53), + }, + [139] = { + [sym_concatenation] = STATE(440), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(440), + [anon_sym_RBRACE] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(785), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(799), + [anon_sym_COLON] = ACTIONS(785), + [anon_sym_COLON_QMARK] = ACTIONS(785), + [anon_sym_COLON_DASH] = ACTIONS(785), + [anon_sym_PERCENT] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [140] = { + [sym_subscript] = STATE(444), + [sym_variable_name] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_QMARK] = ACTIONS(811), + [anon_sym_0] = ACTIONS(815), + [anon_sym__] = ACTIONS(815), + }, + [141] = { + [sym_concatenation] = STATE(447), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(447), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_EQ] = ACTIONS(819), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(823), + [anon_sym_COLON] = ACTIONS(819), + [anon_sym_COLON_QMARK] = ACTIONS(819), + [anon_sym_COLON_DASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [142] = { + [sym_concatenation] = STATE(450), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(450), + [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_COLON] = ACTIONS(827), + [anon_sym_COLON_QMARK] = ACTIONS(827), + [anon_sym_COLON_DASH] = ACTIONS(827), + [anon_sym_PERCENT] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [143] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(833), + [anon_sym_PLUS_EQ] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + }, + [144] = { + [anon_sym_LPAREN_LPAREN] = ACTIONS(835), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(837), }, [145] = { - [sym__terminated_statement] = STATE(440), + [sym__terminated_statement] = STATE(454), [sym_for_statement] = STATE(39), + [sym_c_style_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), [sym_case_statement] = STATE(39), @@ -12468,15 +13170,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(40), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -12515,744 +13217,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [146] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(442), - [sym_simple_expansion] = STATE(442), - [sym_string_expansion] = STATE(442), - [sym_expansion] = STATE(442), - [sym_command_substitution] = STATE(442), - [sym_process_substitution] = STATE(442), - [sym__special_characters] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(71), - [sym_raw_string] = ACTIONS(813), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(75), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(77), - [anon_sym_BQUOTE] = ACTIONS(79), - [anon_sym_LT_LPAREN] = ACTIONS(81), - [anon_sym_GT_LPAREN] = ACTIONS(81), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(813), - }, - [147] = { - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(815), - }, - [148] = { - [sym__terminated_statement] = STATE(447), - [sym_for_statement] = STATE(445), - [sym_while_statement] = STATE(445), - [sym_if_statement] = STATE(445), - [sym_case_statement] = STATE(445), - [sym_function_definition] = STATE(445), - [sym_subshell] = STATE(445), - [sym_pipeline] = STATE(445), - [sym_list] = STATE(445), - [sym_negated_command] = STATE(445), - [sym_test_command] = STATE(445), - [sym_declaration_command] = STATE(445), - [sym_unset_command] = STATE(445), - [sym_command] = STATE(445), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(446), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_program_repeat1] = STATE(447), - [aux_sym_command_repeat1] = STATE(68), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(85), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(87), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_typeset] = ACTIONS(97), - [anon_sym_export] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_local] = ACTIONS(97), - [anon_sym_unset] = ACTIONS(99), - [anon_sym_unsetenv] = ACTIONS(99), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(105), - }, - [149] = { - [sym_subshell] = STATE(448), - [sym_test_command] = STATE(448), - [sym_command] = STATE(448), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(291), - }, - [150] = { - [sym__expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_concatenation] = STATE(449), - [sym_string] = STATE(77), - [sym_simple_expansion] = STATE(77), - [sym_string_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(111), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - [sym_test_operator] = ACTIONS(131), - }, - [151] = { - [sym__expression] = STATE(450), - [sym_binary_expression] = STATE(450), - [sym_unary_expression] = STATE(450), - [sym_parenthesized_expression] = STATE(450), - [sym_concatenation] = STATE(450), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_string_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), - }, - [152] = { - [sym_variable_assignment] = STATE(462), - [sym_subscript] = STATE(461), - [sym_concatenation] = STATE(462), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_declaration_command_repeat1] = STATE(462), - [sym_variable_name] = ACTIONS(817), - [anon_sym_PIPE] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(181), - [anon_sym_PIPE_AMP] = ACTIONS(181), - [anon_sym_AMP_AMP] = ACTIONS(181), - [anon_sym_PIPE_PIPE] = ACTIONS(181), - [sym__special_characters] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(823), - [sym_raw_string] = ACTIONS(825), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_LT_LPAREN] = ACTIONS(833), - [anon_sym_GT_LPAREN] = ACTIONS(833), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(835), - [sym_word] = ACTIONS(837), - }, - [153] = { - [sym_concatenation] = STATE(472), - [sym_string] = STATE(466), - [sym_simple_expansion] = STATE(466), - [sym_string_expansion] = STATE(466), - [sym_expansion] = STATE(466), - [sym_command_substitution] = STATE(466), - [sym_process_substitution] = STATE(466), - [aux_sym_unset_command_repeat1] = STATE(472), - [anon_sym_PIPE] = ACTIONS(183), - [anon_sym_RPAREN] = ACTIONS(203), - [anon_sym_PIPE_AMP] = ACTIONS(203), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [sym__special_characters] = ACTIONS(839), - [anon_sym_DQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(843), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(851), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), - [sym_word] = ACTIONS(857), - }, - [154] = { - [aux_sym_concatenation_repeat1] = STATE(474), - [sym__simple_heredoc_body] = ACTIONS(221), - [sym__heredoc_body_beginning] = ACTIONS(221), - [sym_file_descriptor] = ACTIONS(221), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_RPAREN] = ACTIONS(221), - [anon_sym_PIPE_AMP] = ACTIONS(221), - [anon_sym_AMP_AMP] = ACTIONS(221), - [anon_sym_PIPE_PIPE] = ACTIONS(221), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(221), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_AMP_GT_GT] = ACTIONS(221), - [anon_sym_LT_AMP] = ACTIONS(221), - [anon_sym_GT_AMP] = ACTIONS(221), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(221), - [anon_sym_LT_LT_LT] = ACTIONS(221), - [sym__special_characters] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR] = ACTIONS(225), - [sym_raw_string] = ACTIONS(221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(221), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(221), - [anon_sym_GT_LPAREN] = ACTIONS(221), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(225), - }, - [155] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(477), - [anon_sym_DQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(863), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [156] = { - [sym_string] = STATE(479), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(865), - [sym_raw_string] = ACTIONS(867), - [anon_sym_POUND] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(865), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_AT] = ACTIONS(865), - [anon_sym_QMARK] = ACTIONS(865), - [anon_sym_0] = ACTIONS(871), - [anon_sym__] = ACTIONS(871), - }, - [157] = { - [aux_sym_concatenation_repeat1] = STATE(474), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_RPAREN] = 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(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(247), - [anon_sym_LT_AMP] = ACTIONS(247), - [anon_sym_GT_AMP] = ACTIONS(247), - [anon_sym_LT_LT] = ACTIONS(249), - [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(249), - [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(53), - [sym_word] = ACTIONS(249), - }, - [158] = { - [sym_subscript] = STATE(485), - [sym_variable_name] = ACTIONS(873), - [anon_sym_DOLLAR] = ACTIONS(875), - [anon_sym_POUND] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(875), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(879), - [anon_sym_STAR] = ACTIONS(875), - [anon_sym_AT] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(875), - [anon_sym_0] = ACTIONS(881), - [anon_sym__] = ACTIONS(881), - }, - [159] = { - [sym_for_statement] = STATE(486), - [sym_while_statement] = STATE(486), - [sym_if_statement] = STATE(486), - [sym_case_statement] = STATE(486), - [sym_function_definition] = STATE(486), - [sym_subshell] = STATE(486), - [sym_pipeline] = STATE(486), - [sym_list] = STATE(486), - [sym_negated_command] = STATE(486), - [sym_test_command] = STATE(486), - [sym_declaration_command] = STATE(486), - [sym_unset_command] = STATE(486), - [sym_command] = STATE(486), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(487), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [160] = { - [sym_for_statement] = STATE(488), - [sym_while_statement] = STATE(488), - [sym_if_statement] = STATE(488), - [sym_case_statement] = STATE(488), - [sym_function_definition] = STATE(488), - [sym_subshell] = STATE(488), - [sym_pipeline] = STATE(488), - [sym_list] = STATE(488), - [sym_negated_command] = STATE(488), - [sym_test_command] = STATE(488), - [sym_declaration_command] = STATE(488), - [sym_unset_command] = STATE(488), - [sym_command] = STATE(488), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [161] = { - [sym_for_statement] = STATE(490), - [sym_while_statement] = STATE(490), - [sym_if_statement] = STATE(490), - [sym_case_statement] = STATE(490), - [sym_function_definition] = STATE(490), - [sym_subshell] = STATE(490), - [sym_pipeline] = STATE(490), - [sym_list] = STATE(490), - [sym_negated_command] = STATE(490), - [sym_test_command] = STATE(490), - [sym_declaration_command] = STATE(490), - [sym_unset_command] = STATE(490), - [sym_command] = STATE(490), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(491), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [162] = { - [aux_sym_concatenation_repeat1] = STATE(474), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_PIPE_AMP] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_EQ_TILDE] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(247), - [anon_sym_LT_AMP] = ACTIONS(247), - [anon_sym_GT_AMP] = ACTIONS(247), - [anon_sym_LT_LT] = ACTIONS(249), - [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(249), - [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(53), - [sym_word] = ACTIONS(249), - }, - [163] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(887), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [164] = { - [sym_file_redirect] = STATE(506), - [sym_heredoc_redirect] = STATE(506), - [sym_heredoc_body] = STATE(505), - [sym_herestring_redirect] = STATE(506), - [sym_concatenation] = STATE(507), - [sym_string] = STATE(504), - [sym_simple_expansion] = STATE(504), - [sym_string_expansion] = STATE(504), - [sym_expansion] = STATE(504), - [sym_command_substitution] = STATE(504), - [sym_process_substitution] = STATE(504), - [aux_sym_while_statement_repeat1] = STATE(506), - [aux_sym_command_repeat2] = STATE(507), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(367), - [anon_sym_PIPE_AMP] = ACTIONS(367), - [anon_sym_AMP_AMP] = ACTIONS(367), - [anon_sym_PIPE_PIPE] = ACTIONS(367), - [anon_sym_EQ_TILDE] = ACTIONS(899), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(901), - [anon_sym_AMP_GT_GT] = ACTIONS(903), - [anon_sym_LT_AMP] = ACTIONS(903), - [anon_sym_GT_AMP] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(909), - [sym__special_characters] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(915), - }, - [165] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(887), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [166] = { - [anon_sym_EQ] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(807), - [sym_comment] = ACTIONS(53), - }, - [167] = { - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_RPAREN] = 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(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(247), - [anon_sym_LT_AMP] = ACTIONS(247), - [anon_sym_GT_AMP] = ACTIONS(247), - [anon_sym_LT_LT] = ACTIONS(249), - [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(249), - [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(53), - [sym_word] = ACTIONS(249), - }, - [168] = { - [sym_command_name] = STATE(508), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(205), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(291), - }, - [169] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [170] = { - [sym__terminated_statement] = STATE(510), + [sym__terminated_statement] = STATE(455), [sym_for_statement] = STATE(39), + [sym_c_style_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), [sym_case_statement] = STATE(39), @@ -13268,15 +13235,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(40), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -13314,31 +13281,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [171] = { + [147] = { + [sym_concatenation] = STATE(458), + [sym_string] = STATE(457), + [sym_simple_expansion] = STATE(457), + [sym_string_expansion] = STATE(457), + [sym_expansion] = STATE(457), + [sym_command_substitution] = STATE(457), + [sym_process_substitution] = STATE(457), + [sym__special_characters] = ACTIONS(839), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(73), + [sym_raw_string] = ACTIONS(841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(81), + [anon_sym_LT_LPAREN] = ACTIONS(83), + [anon_sym_GT_LPAREN] = ACTIONS(83), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(921), + [sym_word] = ACTIONS(841), }, - [172] = { - [sym_subshell] = STATE(448), - [sym_test_command] = STATE(448), - [sym_command] = STATE(448), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), + [148] = { + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(843), + }, + [149] = { + [sym__terminated_statement] = STATE(462), + [sym_for_statement] = STATE(460), + [sym_c_style_for_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_function_definition] = STATE(460), + [sym_subshell] = STATE(460), + [sym_pipeline] = STATE(460), + [sym_list] = STATE(460), + [sym_negated_command] = STATE(460), + [sym_test_command] = STATE(460), + [sym_declaration_command] = STATE(460), + [sym_unset_command] = STATE(460), + [sym_command] = STATE(460), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(68), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(61), + [sym_simple_expansion] = STATE(61), + [sym_string_expansion] = STATE(61), + [sym_expansion] = STATE(61), + [sym_command_substitution] = STATE(61), + [sym_process_substitution] = STATE(61), + [aux_sym_program_repeat1] = STATE(462), + [aux_sym_command_repeat1] = STATE(68), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -13346,826 +13359,1626 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(321), + [sym_word] = ACTIONS(107), }, - [173] = { - [sym__expression] = STATE(512), - [sym_binary_expression] = STATE(512), - [sym_unary_expression] = STATE(512), - [sym_parenthesized_expression] = STATE(512), - [sym_concatenation] = STATE(512), + [150] = { + [sym_subshell] = STATE(463), + [sym_test_command] = STATE(463), + [sym_command] = STATE(463), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(169), + [sym_subscript] = STATE(71), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(293), + }, + [151] = { + [sym__expression] = STATE(464), + [sym_binary_expression] = STATE(464), + [sym_unary_expression] = STATE(464), + [sym_parenthesized_expression] = STATE(464), + [sym_concatenation] = STATE(464), [sym_string] = STATE(77), [sym_simple_expansion] = STATE(77), [sym_string_expansion] = STATE(77), [sym_expansion] = STATE(77), [sym_command_substitution] = STATE(77), [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(111), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [sym__special_characters] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - [sym_test_operator] = ACTIONS(131), + [sym_word] = ACTIONS(131), + [sym_test_operator] = ACTIONS(133), }, - [174] = { - [sym__expression] = STATE(513), - [sym_binary_expression] = STATE(513), - [sym_unary_expression] = STATE(513), - [sym_parenthesized_expression] = STATE(513), - [sym_concatenation] = STATE(513), + [152] = { + [sym__expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_concatenation] = STATE(465), [sym_string] = STATE(88), [sym_simple_expansion] = STATE(88), [sym_string_expansion] = STATE(88), [sym_expansion] = STATE(88), [sym_command_substitution] = STATE(88), [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(139), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(157), }, - [175] = { - [sym_variable_assignment] = STATE(518), - [sym_subscript] = STATE(517), - [sym_concatenation] = STATE(518), - [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), - [aux_sym_declaration_command_repeat1] = STATE(518), - [sym_variable_name] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(159), - [anon_sym_PIPE_AMP] = ACTIONS(181), - [anon_sym_AMP_AMP] = ACTIONS(181), - [anon_sym_PIPE_PIPE] = ACTIONS(181), - [sym__special_characters] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(823), - [sym_raw_string] = ACTIONS(927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(181), - [anon_sym_LT_LPAREN] = ACTIONS(833), - [anon_sym_GT_LPAREN] = ACTIONS(833), + [153] = { + [sym_variable_assignment] = STATE(476), + [sym_subscript] = STATE(477), + [sym_concatenation] = STATE(476), + [sym_string] = STATE(470), + [sym_simple_expansion] = STATE(470), + [sym_string_expansion] = STATE(470), + [sym_expansion] = STATE(470), + [sym_command_substitution] = STATE(470), + [sym_process_substitution] = STATE(470), + [aux_sym_declaration_command_repeat1] = STATE(478), + [sym_variable_name] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_PIPE_AMP] = ACTIONS(183), + [anon_sym_AMP_AMP] = ACTIONS(183), + [anon_sym_PIPE_PIPE] = ACTIONS(183), + [sym__special_characters] = ACTIONS(847), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), + [anon_sym_BQUOTE] = ACTIONS(859), + [anon_sym_LT_LPAREN] = ACTIONS(861), + [anon_sym_GT_LPAREN] = ACTIONS(861), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(835), - [sym_word] = ACTIONS(929), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(863), + [sym_word] = ACTIONS(865), }, - [176] = { - [sym_concatenation] = STATE(521), + [154] = { + [sym_concatenation] = STATE(488), + [sym_string] = STATE(482), + [sym_simple_expansion] = STATE(482), + [sym_string_expansion] = STATE(482), + [sym_expansion] = STATE(482), + [sym_command_substitution] = STATE(482), + [sym_process_substitution] = STATE(482), + [aux_sym_unset_command_repeat1] = STATE(488), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_PIPE_AMP] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [sym__special_characters] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(871), + [sym_raw_string] = ACTIONS(873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), + [anon_sym_BQUOTE] = ACTIONS(879), + [anon_sym_LT_LPAREN] = ACTIONS(881), + [anon_sym_GT_LPAREN] = ACTIONS(881), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(883), + [sym_word] = ACTIONS(885), + }, + [155] = { + [aux_sym_concatenation_repeat1] = STATE(490), + [sym__simple_heredoc_body] = ACTIONS(223), + [sym__heredoc_body_beginning] = ACTIONS(223), + [sym_file_descriptor] = ACTIONS(223), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(227), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_PIPE_AMP] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(223), + [anon_sym_PIPE_PIPE] = ACTIONS(223), + [anon_sym_EQ_TILDE] = ACTIONS(227), + [anon_sym_EQ_EQ] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_GT] = ACTIONS(223), + [anon_sym_AMP_GT] = ACTIONS(227), + [anon_sym_AMP_GT_GT] = ACTIONS(223), + [anon_sym_LT_AMP] = ACTIONS(223), + [anon_sym_GT_AMP] = ACTIONS(223), + [anon_sym_LT_LT] = ACTIONS(227), + [anon_sym_LT_LT_DASH] = ACTIONS(223), + [anon_sym_LT_LT_LT] = ACTIONS(223), + [sym__special_characters] = ACTIONS(223), + [anon_sym_DQUOTE] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(227), + [sym_raw_string] = ACTIONS(223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(223), + [anon_sym_LT_LPAREN] = ACTIONS(223), + [anon_sym_GT_LPAREN] = ACTIONS(223), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(227), + }, + [156] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(493), + [anon_sym_DQUOTE] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(891), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [157] = { + [sym_string] = STATE(495), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(893), + [sym_raw_string] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_AT] = ACTIONS(893), + [anon_sym_QMARK] = ACTIONS(893), + [anon_sym_0] = ACTIONS(899), + [anon_sym__] = ACTIONS(899), + }, + [158] = { + [aux_sym_concatenation_repeat1] = STATE(490), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(249), + [anon_sym_PIPE_AMP] = ACTIONS(249), + [anon_sym_AMP_AMP] = ACTIONS(249), + [anon_sym_PIPE_PIPE] = ACTIONS(249), + [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(249), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(249), + [anon_sym_LT_AMP] = ACTIONS(249), + [anon_sym_GT_AMP] = ACTIONS(249), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(249), + [anon_sym_LT_LT_LT] = ACTIONS(249), + [sym__special_characters] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), + [anon_sym_BQUOTE] = ACTIONS(249), + [anon_sym_LT_LPAREN] = ACTIONS(249), + [anon_sym_GT_LPAREN] = ACTIONS(249), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(251), + }, + [159] = { + [sym_subscript] = STATE(501), + [sym_variable_name] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(903), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_AT] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(903), + [anon_sym_0] = ACTIONS(909), + [anon_sym__] = ACTIONS(909), + }, + [160] = { + [sym_for_statement] = STATE(502), + [sym_c_style_for_statement] = STATE(502), + [sym_while_statement] = STATE(502), + [sym_if_statement] = STATE(502), + [sym_case_statement] = STATE(502), + [sym_function_definition] = STATE(502), + [sym_subshell] = STATE(502), + [sym_pipeline] = STATE(502), + [sym_list] = STATE(502), + [sym_negated_command] = STATE(502), + [sym_test_command] = STATE(502), + [sym_declaration_command] = STATE(502), + [sym_unset_command] = STATE(502), + [sym_command] = STATE(502), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(503), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [161] = { + [sym_for_statement] = STATE(504), + [sym_c_style_for_statement] = STATE(504), + [sym_while_statement] = STATE(504), + [sym_if_statement] = STATE(504), + [sym_case_statement] = STATE(504), + [sym_function_definition] = STATE(504), + [sym_subshell] = STATE(504), + [sym_pipeline] = STATE(504), + [sym_list] = STATE(504), + [sym_negated_command] = STATE(504), + [sym_test_command] = STATE(504), + [sym_declaration_command] = STATE(504), + [sym_unset_command] = STATE(504), + [sym_command] = STATE(504), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [162] = { + [sym_for_statement] = STATE(506), + [sym_c_style_for_statement] = STATE(506), + [sym_while_statement] = STATE(506), + [sym_if_statement] = STATE(506), + [sym_case_statement] = STATE(506), + [sym_function_definition] = STATE(506), + [sym_subshell] = STATE(506), + [sym_pipeline] = STATE(506), + [sym_list] = STATE(506), + [sym_negated_command] = STATE(506), + [sym_test_command] = STATE(506), + [sym_declaration_command] = STATE(506), + [sym_unset_command] = STATE(506), + [sym_command] = STATE(506), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(507), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [163] = { + [aux_sym_concatenation_repeat1] = STATE(490), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_PIPE_AMP] = ACTIONS(249), + [anon_sym_AMP_AMP] = ACTIONS(249), + [anon_sym_PIPE_PIPE] = ACTIONS(249), + [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(249), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(249), + [anon_sym_LT_AMP] = ACTIONS(249), + [anon_sym_GT_AMP] = ACTIONS(249), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(249), + [anon_sym_LT_LT_LT] = ACTIONS(249), + [sym__special_characters] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), + [anon_sym_BQUOTE] = ACTIONS(249), + [anon_sym_LT_LPAREN] = ACTIONS(249), + [anon_sym_GT_LPAREN] = ACTIONS(249), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(251), + }, + [164] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(915), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [165] = { + [sym_file_redirect] = STATE(523), + [sym_heredoc_redirect] = STATE(523), + [sym_heredoc_body] = STATE(521), + [sym_herestring_redirect] = STATE(523), + [sym_concatenation] = STATE(522), [sym_string] = STATE(520), [sym_simple_expansion] = STATE(520), [sym_string_expansion] = STATE(520), [sym_expansion] = STATE(520), [sym_command_substitution] = STATE(520), [sym_process_substitution] = STATE(520), - [aux_sym_unset_command_repeat1] = STATE(521), - [anon_sym_PIPE] = ACTIONS(183), - [anon_sym_PIPE_AMP] = ACTIONS(203), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [sym__special_characters] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(843), - [sym_raw_string] = ACTIONS(933), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), + [aux_sym_while_statement_repeat1] = STATE(523), + [aux_sym_command_repeat2] = STATE(524), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(369), + [anon_sym_PIPE_AMP] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(937), + [sym__special_characters] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), - [sym_word] = ACTIONS(935), + [sym_word] = ACTIONS(943), + }, + [166] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(915), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [167] = { + [anon_sym_EQ] = ACTIONS(833), + [anon_sym_PLUS_EQ] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + }, + [168] = { + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(249), + [anon_sym_PIPE_AMP] = ACTIONS(249), + [anon_sym_AMP_AMP] = ACTIONS(249), + [anon_sym_PIPE_PIPE] = ACTIONS(249), + [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(249), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(249), + [anon_sym_LT_AMP] = ACTIONS(249), + [anon_sym_GT_AMP] = ACTIONS(249), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(249), + [anon_sym_LT_LT_LT] = ACTIONS(249), + [sym__special_characters] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), + [anon_sym_BQUOTE] = ACTIONS(249), + [anon_sym_LT_LPAREN] = ACTIONS(249), + [anon_sym_GT_LPAREN] = ACTIONS(249), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(251), + }, + [169] = { + [sym_command_name] = STATE(525), + [sym_variable_assignment] = STATE(207), + [sym_subscript] = STATE(71), + [sym_file_redirect] = STATE(207), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(207), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(293), + }, + [170] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(947), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [sym_comment] = ACTIONS(53), + }, + [171] = { + [sym__terminated_statement] = STATE(527), + [sym_for_statement] = STATE(39), + [sym_c_style_for_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_subshell] = STATE(39), + [sym_pipeline] = STATE(39), + [sym_list] = STATE(39), + [sym_negated_command] = STATE(39), + [sym_test_command] = STATE(39), + [sym_declaration_command] = STATE(39), + [sym_unset_command] = STATE(39), + [sym_command] = STATE(39), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(40), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [172] = { + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(949), + }, + [173] = { + [sym_subshell] = STATE(463), + [sym_test_command] = STATE(463), + [sym_command] = STATE(463), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(185), + [sym_subscript] = STATE(71), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(323), + }, + [174] = { + [sym__expression] = STATE(529), + [sym_binary_expression] = STATE(529), + [sym_unary_expression] = STATE(529), + [sym_parenthesized_expression] = STATE(529), + [sym_concatenation] = STATE(529), + [sym_string] = STATE(77), + [sym_simple_expansion] = STATE(77), + [sym_string_expansion] = STATE(77), + [sym_expansion] = STATE(77), + [sym_command_substitution] = STATE(77), + [sym_process_substitution] = STATE(77), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [sym__special_characters] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(131), + [sym_test_operator] = ACTIONS(133), + }, + [175] = { + [sym__expression] = STATE(530), + [sym_binary_expression] = STATE(530), + [sym_unary_expression] = STATE(530), + [sym_parenthesized_expression] = STATE(530), + [sym_concatenation] = STATE(530), + [sym_string] = STATE(88), + [sym_simple_expansion] = STATE(88), + [sym_string_expansion] = STATE(88), + [sym_expansion] = STATE(88), + [sym_command_substitution] = STATE(88), + [sym_process_substitution] = STATE(88), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(139), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(157), + }, + [176] = { + [sym_variable_assignment] = STATE(476), + [sym_subscript] = STATE(534), + [sym_concatenation] = STATE(476), + [sym_string] = STATE(533), + [sym_simple_expansion] = STATE(533), + [sym_string_expansion] = STATE(533), + [sym_expansion] = STATE(533), + [sym_command_substitution] = STATE(533), + [sym_process_substitution] = STATE(533), + [aux_sym_declaration_command_repeat1] = STATE(535), + [sym_variable_name] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_PIPE_AMP] = ACTIONS(183), + [anon_sym_AMP_AMP] = ACTIONS(183), + [anon_sym_PIPE_PIPE] = ACTIONS(183), + [sym__special_characters] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), + [anon_sym_BQUOTE] = ACTIONS(183), + [anon_sym_LT_LPAREN] = ACTIONS(861), + [anon_sym_GT_LPAREN] = ACTIONS(861), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(863), + [sym_word] = ACTIONS(957), }, [177] = { - [aux_sym_concatenation_repeat1] = STATE(522), - [sym__simple_heredoc_body] = ACTIONS(221), - [sym__heredoc_body_beginning] = ACTIONS(221), - [sym_file_descriptor] = ACTIONS(221), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(221), - [anon_sym_AMP_AMP] = ACTIONS(221), - [anon_sym_PIPE_PIPE] = ACTIONS(221), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(221), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_AMP_GT_GT] = ACTIONS(221), - [anon_sym_LT_AMP] = ACTIONS(221), - [anon_sym_GT_AMP] = ACTIONS(221), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(221), - [anon_sym_LT_LT_LT] = ACTIONS(221), - [sym__special_characters] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR] = ACTIONS(225), - [sym_raw_string] = ACTIONS(221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(221), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(221), - [anon_sym_GT_LPAREN] = ACTIONS(221), + [sym_concatenation] = STATE(538), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_unset_command_repeat1] = STATE(538), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [sym__special_characters] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(871), + [sym_raw_string] = ACTIONS(961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), + [anon_sym_BQUOTE] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(881), + [anon_sym_GT_LPAREN] = ACTIONS(881), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(225), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(883), + [sym_word] = ACTIONS(963), }, [178] = { - [aux_sym_concatenation_repeat1] = STATE(522), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_PIPE_AMP] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_EQ_TILDE] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(247), - [anon_sym_LT_AMP] = ACTIONS(247), - [anon_sym_GT_AMP] = ACTIONS(247), - [anon_sym_LT_LT] = ACTIONS(249), - [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(249), - [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(539), + [sym__simple_heredoc_body] = ACTIONS(223), + [sym__heredoc_body_beginning] = ACTIONS(223), + [sym_file_descriptor] = ACTIONS(223), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(227), + [anon_sym_PIPE_AMP] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(223), + [anon_sym_PIPE_PIPE] = ACTIONS(223), + [anon_sym_EQ_TILDE] = ACTIONS(227), + [anon_sym_EQ_EQ] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_GT] = ACTIONS(223), + [anon_sym_AMP_GT] = ACTIONS(227), + [anon_sym_AMP_GT_GT] = ACTIONS(223), + [anon_sym_LT_AMP] = ACTIONS(223), + [anon_sym_GT_AMP] = ACTIONS(223), + [anon_sym_LT_LT] = ACTIONS(227), + [anon_sym_LT_LT_DASH] = ACTIONS(223), + [anon_sym_LT_LT_LT] = ACTIONS(223), + [sym__special_characters] = ACTIONS(223), + [anon_sym_DQUOTE] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(227), + [sym_raw_string] = ACTIONS(223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(223), + [anon_sym_LT_LPAREN] = ACTIONS(223), + [anon_sym_GT_LPAREN] = ACTIONS(223), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(249), + [sym_word] = ACTIONS(227), }, [179] = { - [aux_sym_concatenation_repeat1] = STATE(522), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_PIPE_AMP] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_EQ_TILDE] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(247), - [anon_sym_LT_AMP] = ACTIONS(247), - [anon_sym_GT_AMP] = ACTIONS(247), - [anon_sym_LT_LT] = ACTIONS(249), - [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(249), - [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(539), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_PIPE_AMP] = ACTIONS(249), + [anon_sym_AMP_AMP] = ACTIONS(249), + [anon_sym_PIPE_PIPE] = ACTIONS(249), + [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(249), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(249), + [anon_sym_LT_AMP] = ACTIONS(249), + [anon_sym_GT_AMP] = ACTIONS(249), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(249), + [anon_sym_LT_LT_LT] = ACTIONS(249), + [sym__special_characters] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), + [anon_sym_BQUOTE] = ACTIONS(249), + [anon_sym_LT_LPAREN] = ACTIONS(249), + [anon_sym_GT_LPAREN] = ACTIONS(249), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(249), + [sym_word] = ACTIONS(251), }, [180] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(887), + [aux_sym_concatenation_repeat1] = STATE(539), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(249), + [anon_sym_AMP_AMP] = ACTIONS(249), + [anon_sym_PIPE_PIPE] = ACTIONS(249), + [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(249), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(249), + [anon_sym_LT_AMP] = ACTIONS(249), + [anon_sym_GT_AMP] = ACTIONS(249), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(249), + [anon_sym_LT_LT_LT] = ACTIONS(249), + [sym__special_characters] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), + [anon_sym_BQUOTE] = ACTIONS(249), + [anon_sym_LT_LPAREN] = ACTIONS(249), + [anon_sym_GT_LPAREN] = ACTIONS(249), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(251), }, [181] = { - [sym_file_redirect] = STATE(532), - [sym_heredoc_redirect] = STATE(532), - [sym_heredoc_body] = STATE(505), - [sym_herestring_redirect] = STATE(532), - [sym_concatenation] = STATE(533), - [sym_string] = STATE(531), - [sym_simple_expansion] = STATE(531), - [sym_string_expansion] = STATE(531), - [sym_expansion] = STATE(531), - [sym_command_substitution] = STATE(531), - [sym_process_substitution] = STATE(531), - [aux_sym_while_statement_repeat1] = STATE(532), - [aux_sym_command_repeat2] = STATE(533), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_PIPE_AMP] = ACTIONS(367), - [anon_sym_AMP_AMP] = ACTIONS(367), - [anon_sym_PIPE_PIPE] = ACTIONS(367), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(949), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [sym__special_characters] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(959), - }, - [182] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [183] = { - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [184] = { - [sym_command_name] = STATE(534), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(205), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(321), - }, - [185] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [186] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [187] = { - [anon_sym_RPAREN] = ACTIONS(965), - [sym_comment] = ACTIONS(53), - }, - [188] = { - [sym_for_statement] = STATE(537), - [sym_while_statement] = STATE(537), - [sym_if_statement] = STATE(537), - [sym_case_statement] = STATE(537), - [sym_function_definition] = STATE(537), - [sym_subshell] = STATE(537), - [sym_pipeline] = STATE(537), - [sym_list] = STATE(537), - [sym_negated_command] = STATE(537), - [sym_test_command] = STATE(537), - [sym_declaration_command] = STATE(537), - [sym_unset_command] = STATE(537), - [sym_command] = STATE(537), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(538), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [189] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [ts_builtin_sym_end] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_done] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_fi] = ACTIONS(969), - [anon_sym_elif] = ACTIONS(969), - [anon_sym_else] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_esac] = ACTIONS(969), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(969), - [sym_raw_string] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(969), - }, - [190] = { - [sym_for_statement] = STATE(539), - [sym_while_statement] = STATE(539), - [sym_if_statement] = STATE(539), - [sym_case_statement] = STATE(539), - [sym_function_definition] = STATE(539), - [sym_subshell] = STATE(539), - [sym_pipeline] = STATE(539), - [sym_list] = STATE(539), - [sym_negated_command] = STATE(539), - [sym_test_command] = STATE(539), - [sym_declaration_command] = STATE(539), - [sym_unset_command] = STATE(539), - [sym_command] = STATE(539), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(540), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [191] = { - [anon_sym_esac] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), [anon_sym_AMP_AMP] = ACTIONS(971), [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(971), - }, - [192] = { - [sym_simple_expansion] = STATE(544), - [sym_expansion] = STATE(544), - [aux_sym_heredoc_body_repeat1] = STATE(544), - [sym__heredoc_body_middle] = ACTIONS(975), - [sym__heredoc_body_end] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(915), [sym_comment] = ACTIONS(53), }, + [182] = { + [sym_file_redirect] = STATE(549), + [sym_heredoc_redirect] = STATE(549), + [sym_heredoc_body] = STATE(521), + [sym_herestring_redirect] = STATE(549), + [sym_concatenation] = STATE(522), + [sym_string] = STATE(548), + [sym_simple_expansion] = STATE(548), + [sym_string_expansion] = STATE(548), + [sym_expansion] = STATE(548), + [sym_command_substitution] = STATE(548), + [sym_process_substitution] = STATE(548), + [aux_sym_while_statement_repeat1] = STATE(549), + [aux_sym_command_repeat2] = STATE(550), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(345), + [anon_sym_PIPE_AMP] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_EQ_TILDE] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(977), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym__special_characters] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(987), + }, + [183] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(915), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [184] = { + [anon_sym_EQ] = ACTIONS(947), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [sym_comment] = ACTIONS(53), + }, + [185] = { + [sym_command_name] = STATE(551), + [sym_variable_assignment] = STATE(207), + [sym_subscript] = STATE(71), + [sym_file_redirect] = STATE(207), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(207), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(323), + }, + [186] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [187] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [188] = { + [anon_sym_RPAREN] = ACTIONS(993), + [sym_comment] = ACTIONS(53), + }, + [189] = { + [sym_for_statement] = STATE(554), + [sym_c_style_for_statement] = STATE(554), + [sym_while_statement] = STATE(554), + [sym_if_statement] = STATE(554), + [sym_case_statement] = STATE(554), + [sym_function_definition] = STATE(554), + [sym_subshell] = STATE(554), + [sym_pipeline] = STATE(554), + [sym_list] = STATE(554), + [sym_negated_command] = STATE(554), + [sym_test_command] = STATE(554), + [sym_declaration_command] = STATE(554), + [sym_unset_command] = STATE(554), + [sym_command] = STATE(554), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(555), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [190] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [ts_builtin_sym_end] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_done] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_fi] = ACTIONS(997), + [anon_sym_elif] = ACTIONS(997), + [anon_sym_else] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_esac] = ACTIONS(997), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(997), + [sym_raw_string] = ACTIONS(995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), + [anon_sym_BQUOTE] = ACTIONS(995), + [anon_sym_LT_LPAREN] = ACTIONS(995), + [anon_sym_GT_LPAREN] = ACTIONS(995), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(997), + }, + [191] = { + [sym_for_statement] = STATE(556), + [sym_c_style_for_statement] = STATE(556), + [sym_while_statement] = STATE(556), + [sym_if_statement] = STATE(556), + [sym_case_statement] = STATE(556), + [sym_function_definition] = STATE(556), + [sym_subshell] = STATE(556), + [sym_pipeline] = STATE(556), + [sym_list] = STATE(556), + [sym_negated_command] = STATE(556), + [sym_test_command] = STATE(556), + [sym_declaration_command] = STATE(556), + [sym_unset_command] = STATE(556), + [sym_command] = STATE(556), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(557), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [192] = { + [anon_sym_esac] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_SEMI_SEMI] = ACTIONS(999), + [anon_sym_PIPE_AMP] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LF] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(999), + }, [193] = { - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_AMP_GT] = ACTIONS(983), - [anon_sym_AMP_GT_GT] = ACTIONS(985), - [anon_sym_LT_AMP] = ACTIONS(985), - [anon_sym_GT_AMP] = ACTIONS(985), + [sym_simple_expansion] = STATE(561), + [sym_expansion] = STATE(561), + [aux_sym_heredoc_body_repeat1] = STATE(561), + [sym__heredoc_body_middle] = ACTIONS(1003), + [sym__heredoc_body_end] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1009), [sym_comment] = ACTIONS(53), }, [194] = { - [sym_concatenation] = STATE(548), - [sym_string] = STATE(547), - [sym_simple_expansion] = STATE(547), - [sym_string_expansion] = STATE(547), - [sym_expansion] = STATE(547), - [sym_command_substitution] = STATE(547), - [sym_process_substitution] = STATE(547), - [sym__special_characters] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(989), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(989), - [sym_regex] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(1011), + [anon_sym_GT] = ACTIONS(1011), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_AMP_GT] = ACTIONS(1011), + [anon_sym_AMP_GT_GT] = ACTIONS(1013), + [anon_sym_LT_AMP] = ACTIONS(1013), + [anon_sym_GT_AMP] = ACTIONS(1013), + [sym_comment] = ACTIONS(53), }, [195] = { - [sym_concatenation] = STATE(551), - [sym_string] = STATE(550), - [sym_simple_expansion] = STATE(550), - [sym_string_expansion] = STATE(550), - [sym_expansion] = STATE(550), - [sym_command_substitution] = STATE(550), - [sym_process_substitution] = STATE(550), - [sym__special_characters] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(39), + [sym_concatenation] = STATE(565), + [sym_string] = STATE(564), + [sym_simple_expansion] = STATE(564), + [sym_string_expansion] = STATE(564), + [sym_expansion] = STATE(564), + [sym_command_substitution] = STATE(564), + [sym_process_substitution] = STATE(564), + [sym__special_characters] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(357), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(995), + [sym_raw_string] = ACTIONS(1017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1017), + [sym_regex] = ACTIONS(1019), }, [196] = { - [sym_heredoc_start] = ACTIONS(997), - [sym_comment] = ACTIONS(53), - }, - [197] = { - [sym_concatenation] = STATE(555), - [sym_string] = STATE(554), - [sym_simple_expansion] = STATE(554), - [sym_string_expansion] = STATE(554), - [sym_expansion] = STATE(554), - [sym_command_substitution] = STATE(554), - [sym_process_substitution] = STATE(554), - [sym__special_characters] = ACTIONS(999), + [sym_concatenation] = STATE(568), + [sym_string] = STATE(567), + [sym_simple_expansion] = STATE(567), + [sym_string_expansion] = STATE(567), + [sym_expansion] = STATE(567), + [sym_command_substitution] = STATE(567), + [sym_process_substitution] = STATE(567), + [sym__special_characters] = ACTIONS(1021), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1001), + [sym_raw_string] = ACTIONS(1023), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1001), + [sym_word] = ACTIONS(1023), + }, + [197] = { + [sym_heredoc_start] = ACTIONS(1025), + [sym_comment] = ACTIONS(53), }, [198] = { - [aux_sym_concatenation_repeat1] = STATE(126), - [sym__simple_heredoc_body] = ACTIONS(1003), - [sym__heredoc_body_beginning] = ACTIONS(1003), - [sym_file_descriptor] = ACTIONS(1003), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_SEMI_SEMI] = ACTIONS(1005), - [anon_sym_PIPE_AMP] = ACTIONS(1005), - [anon_sym_AMP_AMP] = ACTIONS(1005), - [anon_sym_PIPE_PIPE] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_GT_GT] = ACTIONS(1005), - [anon_sym_AMP_GT] = ACTIONS(1005), - [anon_sym_AMP_GT_GT] = ACTIONS(1005), - [anon_sym_LT_AMP] = ACTIONS(1005), - [anon_sym_GT_AMP] = ACTIONS(1005), - [anon_sym_LT_LT] = ACTIONS(1005), - [anon_sym_LT_LT_DASH] = ACTIONS(1005), - [anon_sym_LT_LT_LT] = ACTIONS(1005), - [sym__special_characters] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [sym_raw_string] = ACTIONS(1005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1005), - [anon_sym_BQUOTE] = ACTIONS(1005), - [anon_sym_LT_LPAREN] = ACTIONS(1005), - [anon_sym_GT_LPAREN] = ACTIONS(1005), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1005), + [sym_concatenation] = STATE(572), + [sym_string] = STATE(571), + [sym_simple_expansion] = STATE(571), + [sym_string_expansion] = STATE(571), + [sym_expansion] = STATE(571), + [sym_command_substitution] = STATE(571), + [sym_process_substitution] = STATE(571), + [sym__special_characters] = ACTIONS(1027), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1029), }, [199] = { - [aux_sym_concatenation_repeat1] = STATE(126), - [sym__simple_heredoc_body] = ACTIONS(1007), - [sym__heredoc_body_beginning] = ACTIONS(1007), - [sym_file_descriptor] = ACTIONS(1007), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = 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_EQ_TILDE] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1009), - [anon_sym_GT_GT] = ACTIONS(1009), - [anon_sym_AMP_GT] = ACTIONS(1009), - [anon_sym_AMP_GT_GT] = ACTIONS(1009), - [anon_sym_LT_AMP] = ACTIONS(1009), - [anon_sym_GT_AMP] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1009), - [anon_sym_LT_LT_DASH] = ACTIONS(1009), - [anon_sym_LT_LT_LT] = ACTIONS(1009), - [sym__special_characters] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [anon_sym_DOLLAR] = ACTIONS(1009), - [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(177), - [sym_word] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1009), + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(1031), + [sym__heredoc_body_beginning] = ACTIONS(1031), + [sym_file_descriptor] = ACTIONS(1031), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [sym__special_characters] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1033), }, [200] = { - [anon_sym_esac] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_SEMI_SEMI] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_LF] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1011), + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(1035), + [sym__heredoc_body_beginning] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [sym__special_characters] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1037), }, [201] = { - [sym_file_redirect] = STATE(557), - [sym_heredoc_redirect] = STATE(557), - [sym_heredoc_body] = STATE(556), - [sym_herestring_redirect] = STATE(557), - [aux_sym_while_statement_repeat1] = STATE(557), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_SEMI_SEMI] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(351), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_LF] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_esac] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1039), }, [202] = { - [sym_file_redirect] = STATE(558), - [sym_heredoc_redirect] = STATE(558), - [sym_heredoc_body] = STATE(556), - [sym_herestring_redirect] = STATE(558), - [sym_concatenation] = STATE(559), - [sym_string] = STATE(199), - [sym_simple_expansion] = STATE(199), - [sym_string_expansion] = STATE(199), - [sym_expansion] = STATE(199), - [sym_command_substitution] = STATE(199), - [sym_process_substitution] = STATE(199), - [aux_sym_while_statement_repeat1] = STATE(558), - [aux_sym_command_repeat2] = STATE(559), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_SEMI_SEMI] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [anon_sym_EQ_TILDE] = ACTIONS(345), - [anon_sym_EQ_EQ] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(351), - [sym__special_characters] = ACTIONS(353), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(357), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_LF] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1011), + [sym__simple_heredoc_body] = ACTIONS(1035), + [sym__heredoc_body_beginning] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_esac] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [sym__special_characters] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1037), }, [203] = { - [sym__terminated_statement] = STATE(203), + [sym_file_redirect] = STATE(574), + [sym_heredoc_redirect] = STATE(574), + [sym_heredoc_body] = STATE(573), + [sym_herestring_redirect] = STATE(574), + [aux_sym_while_statement_repeat1] = STATE(574), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(349), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1039), + }, + [204] = { + [sym_file_redirect] = STATE(575), + [sym_heredoc_redirect] = STATE(575), + [sym_heredoc_body] = STATE(573), + [sym_herestring_redirect] = STATE(575), + [sym_concatenation] = STATE(202), + [sym_string] = STATE(200), + [sym_simple_expansion] = STATE(200), + [sym_string_expansion] = STATE(200), + [sym_expansion] = STATE(200), + [sym_command_substitution] = STATE(200), + [sym_process_substitution] = STATE(200), + [aux_sym_while_statement_repeat1] = STATE(575), + [aux_sym_command_repeat2] = STATE(576), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_EQ_TILDE] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(349), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1039), + }, + [205] = { + [sym__terminated_statement] = STATE(205), [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), [sym_case_statement] = STATE(26), @@ -14181,546 +14994,421 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(203), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1015), - [sym_variable_name] = ACTIONS(1018), - [ts_builtin_sym_end] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_function] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), - [anon_sym_declare] = ACTIONS(1050), - [anon_sym_typeset] = ACTIONS(1050), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_readonly] = ACTIONS(1050), - [anon_sym_local] = ACTIONS(1050), - [anon_sym_unset] = ACTIONS(1053), - [anon_sym_unsetenv] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1056), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1056), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1083), - [anon_sym_GT_LPAREN] = ACTIONS(1083), + [aux_sym_program_repeat1] = STATE(205), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(1043), + [sym_variable_name] = ACTIONS(1046), + [ts_builtin_sym_end] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_function] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_typeset] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_readonly] = ACTIONS(1078), + [anon_sym_local] = ACTIONS(1078), + [anon_sym_unset] = ACTIONS(1081), + [anon_sym_unsetenv] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1084), + [anon_sym_GT_GT] = ACTIONS(1087), + [anon_sym_AMP_GT] = ACTIONS(1084), + [anon_sym_AMP_GT_GT] = ACTIONS(1087), + [anon_sym_LT_AMP] = ACTIONS(1087), + [anon_sym_GT_AMP] = ACTIONS(1087), + [sym__special_characters] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1096), + [sym_raw_string] = ACTIONS(1099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1111), + [anon_sym_GT_LPAREN] = ACTIONS(1111), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1086), - }, - [204] = { - [sym_file_redirect] = STATE(558), - [sym_heredoc_redirect] = STATE(558), - [sym_heredoc_body] = STATE(556), - [sym_herestring_redirect] = STATE(558), - [sym_concatenation] = STATE(560), - [sym_string] = STATE(199), - [sym_simple_expansion] = STATE(199), - [sym_string_expansion] = STATE(199), - [sym_expansion] = STATE(199), - [sym_command_substitution] = STATE(199), - [sym_process_substitution] = STATE(199), - [aux_sym_while_statement_repeat1] = STATE(558), - [aux_sym_command_repeat2] = STATE(560), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_SEMI_SEMI] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [anon_sym_EQ_TILDE] = ACTIONS(345), - [anon_sym_EQ_EQ] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(351), - [sym__special_characters] = ACTIONS(353), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(357), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_LF] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1011), - }, - [205] = { - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(30), - [aux_sym_command_repeat1] = STATE(205), - [sym_file_descriptor] = ACTIONS(1089), - [sym_variable_name] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1098), - [anon_sym_LT_AMP] = ACTIONS(1098), - [anon_sym_GT_AMP] = ACTIONS(1098), - [sym__special_characters] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1103), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1101), + [sym_word] = ACTIONS(1114), }, [206] = { - [aux_sym_concatenation_repeat1] = STATE(378), - [sym_file_descriptor] = ACTIONS(1105), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1105), - [anon_sym_AMP_GT] = ACTIONS(1107), - [anon_sym_AMP_GT_GT] = ACTIONS(1105), - [anon_sym_LT_AMP] = ACTIONS(1105), - [anon_sym_GT_AMP] = ACTIONS(1105), - [sym__special_characters] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(1107), - [sym_raw_string] = ACTIONS(1105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1105), - [anon_sym_LT_LPAREN] = ACTIONS(1105), - [anon_sym_GT_LPAREN] = ACTIONS(1105), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1105), + [sym_file_redirect] = STATE(575), + [sym_heredoc_redirect] = STATE(575), + [sym_heredoc_body] = STATE(573), + [sym_herestring_redirect] = STATE(575), + [sym_concatenation] = STATE(202), + [sym_string] = STATE(200), + [sym_simple_expansion] = STATE(200), + [sym_string_expansion] = STATE(200), + [sym_expansion] = STATE(200), + [sym_command_substitution] = STATE(200), + [sym_process_substitution] = STATE(200), + [aux_sym_while_statement_repeat1] = STATE(575), + [aux_sym_command_repeat2] = STATE(577), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_EQ_TILDE] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(349), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1039), }, [207] = { - [aux_sym_concatenation_repeat1] = STATE(378), - [sym_file_descriptor] = ACTIONS(1109), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1109), - [anon_sym_LT_AMP] = ACTIONS(1109), - [anon_sym_GT_AMP] = ACTIONS(1109), - [sym__special_characters] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1111), - [sym_raw_string] = ACTIONS(1109), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1109), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), + [sym_variable_assignment] = STATE(207), + [sym_subscript] = STATE(71), + [sym_file_redirect] = STATE(207), + [aux_sym_command_repeat1] = STATE(207), + [sym_file_descriptor] = ACTIONS(1117), + [sym_variable_name] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1123), + [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1123), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), + [sym__special_characters] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1131), + [sym_raw_string] = ACTIONS(1129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(1129), + [anon_sym_LT_LPAREN] = ACTIONS(1129), + [anon_sym_GT_LPAREN] = ACTIONS(1129), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1109), + [sym_word] = ACTIONS(1129), }, [208] = { - [sym_file_descriptor] = ACTIONS(1109), - [sym_variable_name] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1109), - [anon_sym_LT_AMP] = ACTIONS(1109), - [anon_sym_GT_AMP] = ACTIONS(1109), - [sym__special_characters] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1111), - [sym_raw_string] = ACTIONS(1109), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1109), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), + [aux_sym_concatenation_repeat1] = STATE(392), + [sym_file_descriptor] = ACTIONS(1133), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1133), + [anon_sym_AMP_GT] = ACTIONS(1135), + [anon_sym_AMP_GT_GT] = ACTIONS(1133), + [anon_sym_LT_AMP] = ACTIONS(1133), + [anon_sym_GT_AMP] = ACTIONS(1133), + [sym__special_characters] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1135), + [sym_raw_string] = ACTIONS(1133), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1133), + [anon_sym_BQUOTE] = ACTIONS(1133), + [anon_sym_LT_LPAREN] = ACTIONS(1133), + [anon_sym_GT_LPAREN] = ACTIONS(1133), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1109), + [sym_word] = ACTIONS(1133), }, [209] = { - [aux_sym_concatenation_repeat1] = STATE(563), - [sym__concat] = ACTIONS(1113), - [anon_sym_RBRACK] = ACTIONS(1115), + [aux_sym_concatenation_repeat1] = STATE(392), + [sym_file_descriptor] = ACTIONS(1137), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1137), + [anon_sym_LT_AMP] = ACTIONS(1137), + [anon_sym_GT_AMP] = ACTIONS(1137), + [sym__special_characters] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1139), + [sym_raw_string] = ACTIONS(1137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1137), + [anon_sym_LT_LPAREN] = ACTIONS(1137), + [anon_sym_GT_LPAREN] = ACTIONS(1137), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1137), }, [210] = { - [aux_sym_concatenation_repeat1] = STATE(563), - [sym__concat] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1119), + [sym_file_descriptor] = ACTIONS(1137), + [sym_variable_name] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1137), + [anon_sym_LT_AMP] = ACTIONS(1137), + [anon_sym_GT_AMP] = ACTIONS(1137), + [sym__special_characters] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1139), + [sym_raw_string] = ACTIONS(1137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1137), + [anon_sym_LT_LPAREN] = ACTIONS(1137), + [anon_sym_GT_LPAREN] = ACTIONS(1137), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1137), }, [211] = { - [sym__concat] = ACTIONS(1121), - [anon_sym_RBRACK] = ACTIONS(1119), + [aux_sym_concatenation_repeat1] = STATE(580), + [sym__concat] = ACTIONS(1141), + [anon_sym_RBRACK] = ACTIONS(1143), [sym_comment] = ACTIONS(53), }, [212] = { - [sym_file_descriptor] = ACTIONS(1123), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_esac] = ACTIONS(1125), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1125), - [anon_sym_SEMI_SEMI] = ACTIONS(1125), - [anon_sym_PIPE_AMP] = ACTIONS(1125), - [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1125), - [anon_sym_AMP_GT] = ACTIONS(1125), - [anon_sym_AMP_GT_GT] = ACTIONS(1125), - [anon_sym_LT_AMP] = ACTIONS(1125), - [anon_sym_GT_AMP] = ACTIONS(1125), - [sym__special_characters] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), - [anon_sym_BQUOTE] = ACTIONS(1125), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LF] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), + [aux_sym_concatenation_repeat1] = STATE(580), + [sym__concat] = ACTIONS(1145), + [anon_sym_RBRACK] = ACTIONS(1147), + [sym_comment] = ACTIONS(53), }, [213] = { - [sym_concatenation] = STATE(576), - [sym_string] = STATE(571), - [sym_simple_expansion] = STATE(571), - [sym_string_expansion] = STATE(571), - [sym_expansion] = STATE(571), - [sym_command_substitution] = STATE(571), - [sym_process_substitution] = STATE(571), - [aux_sym_for_statement_repeat1] = STATE(576), - [anon_sym_RPAREN] = ACTIONS(1127), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), + [sym__concat] = ACTIONS(1149), + [anon_sym_RBRACK] = ACTIONS(1147), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1135), }, [214] = { - [aux_sym_concatenation_repeat1] = STATE(578), - [sym_file_descriptor] = ACTIONS(1145), - [sym__concat] = ACTIONS(1147), - [sym_variable_name] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_SEMI_SEMI] = ACTIONS(1149), - [anon_sym_PIPE_AMP] = ACTIONS(1149), - [anon_sym_AMP_AMP] = ACTIONS(1149), - [anon_sym_PIPE_PIPE] = ACTIONS(1149), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_GT] = ACTIONS(1149), - [anon_sym_GT_GT] = ACTIONS(1149), - [anon_sym_AMP_GT] = ACTIONS(1149), - [anon_sym_AMP_GT_GT] = ACTIONS(1149), - [anon_sym_LT_AMP] = ACTIONS(1149), - [anon_sym_GT_AMP] = ACTIONS(1149), - [sym__special_characters] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [anon_sym_DOLLAR] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1149), - [anon_sym_BQUOTE] = ACTIONS(1149), - [anon_sym_LT_LPAREN] = ACTIONS(1149), - [anon_sym_GT_LPAREN] = ACTIONS(1149), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym_LF] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1149), + [sym_file_descriptor] = ACTIONS(1151), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_esac] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_SEMI_SEMI] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1153), + [anon_sym_PIPE_PIPE] = ACTIONS(1153), + [anon_sym_LT] = ACTIONS(1153), + [anon_sym_GT] = ACTIONS(1153), + [anon_sym_GT_GT] = ACTIONS(1153), + [anon_sym_AMP_GT] = ACTIONS(1153), + [anon_sym_AMP_GT_GT] = ACTIONS(1153), + [anon_sym_LT_AMP] = ACTIONS(1153), + [anon_sym_GT_AMP] = ACTIONS(1153), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_LT_LPAREN] = ACTIONS(1153), + [anon_sym_GT_LPAREN] = ACTIONS(1153), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_LF] = ACTIONS(1151), + [anon_sym_AMP] = ACTIONS(1153), }, [215] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(581), - [anon_sym_DQUOTE] = ACTIONS(1151), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [sym_concatenation] = STATE(593), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_RPAREN] = ACTIONS(1155), + [sym__special_characters] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym_raw_string] = ACTIONS(1163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1163), }, [216] = { - [sym_string] = STATE(583), - [anon_sym_DQUOTE] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(1155), - [sym_raw_string] = ACTIONS(1157), - [anon_sym_POUND] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1155), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_0] = ACTIONS(1161), - [anon_sym__] = ACTIONS(1161), + [aux_sym_concatenation_repeat1] = STATE(595), + [sym_file_descriptor] = ACTIONS(1173), + [sym__concat] = ACTIONS(1175), + [sym_variable_name] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_SEMI_SEMI] = ACTIONS(1177), + [anon_sym_PIPE_AMP] = ACTIONS(1177), + [anon_sym_AMP_AMP] = ACTIONS(1177), + [anon_sym_PIPE_PIPE] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_GT_GT] = ACTIONS(1177), + [anon_sym_AMP_GT] = ACTIONS(1177), + [anon_sym_AMP_GT_GT] = ACTIONS(1177), + [anon_sym_LT_AMP] = ACTIONS(1177), + [anon_sym_GT_AMP] = ACTIONS(1177), + [sym__special_characters] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1177), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(1177), + [anon_sym_LT_LPAREN] = ACTIONS(1177), + [anon_sym_GT_LPAREN] = ACTIONS(1177), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1177), }, [217] = { - [aux_sym_concatenation_repeat1] = STATE(578), - [sym_file_descriptor] = ACTIONS(1123), - [sym__concat] = ACTIONS(1147), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_SEMI_SEMI] = ACTIONS(1125), - [anon_sym_PIPE_AMP] = ACTIONS(1125), - [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1125), - [anon_sym_AMP_GT] = ACTIONS(1125), - [anon_sym_AMP_GT_GT] = ACTIONS(1125), - [anon_sym_LT_AMP] = ACTIONS(1125), - [anon_sym_GT_AMP] = ACTIONS(1125), - [sym__special_characters] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), - [anon_sym_BQUOTE] = ACTIONS(1125), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LF] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(598), + [anon_sym_DQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1181), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [218] = { - [sym_subscript] = STATE(589), - [sym_variable_name] = ACTIONS(1163), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_POUND] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_AT] = ACTIONS(1165), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_0] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), + [sym_string] = STATE(600), + [anon_sym_DQUOTE] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(1183), + [sym_raw_string] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_AT] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_0] = ACTIONS(1189), + [anon_sym__] = ACTIONS(1189), }, [219] = { - [sym_for_statement] = STATE(590), - [sym_while_statement] = STATE(590), - [sym_if_statement] = STATE(590), - [sym_case_statement] = STATE(590), - [sym_function_definition] = STATE(590), - [sym_subshell] = STATE(590), - [sym_pipeline] = STATE(590), - [sym_list] = STATE(590), - [sym_negated_command] = STATE(590), - [sym_test_command] = STATE(590), - [sym_declaration_command] = STATE(590), - [sym_unset_command] = STATE(590), - [sym_command] = STATE(590), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(591), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [aux_sym_concatenation_repeat1] = STATE(595), + [sym_file_descriptor] = ACTIONS(1151), + [sym__concat] = ACTIONS(1175), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_SEMI_SEMI] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1153), + [anon_sym_PIPE_PIPE] = ACTIONS(1153), + [anon_sym_LT] = ACTIONS(1153), + [anon_sym_GT] = ACTIONS(1153), + [anon_sym_GT_GT] = ACTIONS(1153), + [anon_sym_AMP_GT] = ACTIONS(1153), + [anon_sym_AMP_GT_GT] = ACTIONS(1153), + [anon_sym_LT_AMP] = ACTIONS(1153), + [anon_sym_GT_AMP] = ACTIONS(1153), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_LT_LPAREN] = ACTIONS(1153), + [anon_sym_GT_LPAREN] = ACTIONS(1153), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_LF] = ACTIONS(1151), + [anon_sym_AMP] = ACTIONS(1153), }, [220] = { - [sym_for_statement] = STATE(592), - [sym_while_statement] = STATE(592), - [sym_if_statement] = STATE(592), - [sym_case_statement] = STATE(592), - [sym_function_definition] = STATE(592), - [sym_subshell] = STATE(592), - [sym_pipeline] = STATE(592), - [sym_list] = STATE(592), - [sym_negated_command] = STATE(592), - [sym_test_command] = STATE(592), - [sym_declaration_command] = STATE(592), - [sym_unset_command] = STATE(592), - [sym_command] = STATE(592), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(593), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [sym_subscript] = STATE(606), + [sym_variable_name] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1193), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1193), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AT] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_0] = ACTIONS(1199), + [anon_sym__] = ACTIONS(1199), }, [221] = { - [sym_for_statement] = STATE(594), - [sym_while_statement] = STATE(594), - [sym_if_statement] = STATE(594), - [sym_case_statement] = STATE(594), - [sym_function_definition] = STATE(594), - [sym_subshell] = STATE(594), - [sym_pipeline] = STATE(594), - [sym_list] = STATE(594), - [sym_negated_command] = STATE(594), - [sym_test_command] = STATE(594), - [sym_declaration_command] = STATE(594), - [sym_unset_command] = STATE(594), - [sym_command] = STATE(594), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(595), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [sym_for_statement] = STATE(607), + [sym_c_style_for_statement] = STATE(607), + [sym_while_statement] = STATE(607), + [sym_if_statement] = STATE(607), + [sym_case_statement] = STATE(607), + [sym_function_definition] = STATE(607), + [sym_subshell] = STATE(607), + [sym_pipeline] = STATE(607), + [sym_list] = STATE(607), + [sym_negated_command] = STATE(607), + [sym_test_command] = STATE(607), + [sym_declaration_command] = STATE(607), + [sym_unset_command] = STATE(607), + [sym_command] = STATE(607), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(608), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -14728,151 +15416,549 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(303), }, [222] = { - [sym_concatenation] = STATE(598), - [sym_string] = STATE(597), - [sym_simple_expansion] = STATE(597), - [sym_string_expansion] = STATE(597), - [sym_expansion] = STATE(597), - [sym_command_substitution] = STATE(597), - [sym_process_substitution] = STATE(597), - [aux_sym_for_statement_repeat1] = STATE(598), - [sym__special_characters] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(71), - [sym_raw_string] = ACTIONS(1175), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(75), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(77), - [anon_sym_BQUOTE] = ACTIONS(79), - [anon_sym_LT_LPAREN] = ACTIONS(81), - [anon_sym_GT_LPAREN] = ACTIONS(81), + [sym_for_statement] = STATE(609), + [sym_c_style_for_statement] = STATE(609), + [sym_while_statement] = STATE(609), + [sym_if_statement] = STATE(609), + [sym_case_statement] = STATE(609), + [sym_function_definition] = STATE(609), + [sym_subshell] = STATE(609), + [sym_pipeline] = STATE(609), + [sym_list] = STATE(609), + [sym_negated_command] = STATE(609), + [sym_test_command] = STATE(609), + [sym_declaration_command] = STATE(609), + [sym_unset_command] = STATE(609), + [sym_command] = STATE(609), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(610), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1175), + [sym_word] = ACTIONS(325), }, [223] = { - [sym_do_group] = STATE(600), - [anon_sym_do] = ACTIONS(1177), + [sym_for_statement] = STATE(611), + [sym_c_style_for_statement] = STATE(611), + [sym_while_statement] = STATE(611), + [sym_if_statement] = STATE(611), + [sym_case_statement] = STATE(611), + [sym_function_definition] = STATE(611), + [sym_subshell] = STATE(611), + [sym_pipeline] = STATE(611), + [sym_list] = STATE(611), + [sym_negated_command] = STATE(611), + [sym_test_command] = STATE(611), + [sym_declaration_command] = STATE(611), + [sym_unset_command] = STATE(611), + [sym_command] = STATE(611), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(612), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), }, [224] = { - [sym__terminated_statement] = STATE(602), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(602), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym__expression] = STATE(614), + [sym_binary_expression] = STATE(614), + [sym_unary_expression] = STATE(614), + [sym_parenthesized_expression] = STATE(614), + [sym_concatenation] = STATE(614), + [sym_string] = STATE(230), + [sym_simple_expansion] = STATE(230), + [sym_string_expansion] = STATE(230), + [sym_expansion] = STATE(230), + [sym_command_substitution] = STATE(230), + [sym_process_substitution] = STATE(230), + [anon_sym_SEMI_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [sym__special_characters] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(417), + [sym_raw_string] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(419), + [sym_test_operator] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LF] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1201), }, [225] = { - [sym_file_redirect] = STATE(604), - [sym_heredoc_redirect] = STATE(604), - [sym_heredoc_body] = STATE(603), - [sym_herestring_redirect] = STATE(604), - [aux_sym_while_statement_repeat1] = STATE(604), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_SEMI_SEMI] = ACTIONS(1181), - [anon_sym_PIPE_AMP] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(351), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_LF] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1181), + [sym__expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_unary_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(615), + [sym_concatenation] = STATE(615), + [sym_string] = STATE(302), + [sym_simple_expansion] = STATE(302), + [sym_string_expansion] = STATE(302), + [sym_expansion] = STATE(302), + [sym_command_substitution] = STATE(302), + [sym_process_substitution] = STATE(302), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(531), + [sym__special_characters] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(537), + [sym_test_operator] = ACTIONS(539), }, [226] = { - [anon_sym_do] = ACTIONS(967), - [anon_sym_then] = ACTIONS(967), + [sym__expression] = STATE(616), + [sym_binary_expression] = STATE(616), + [sym_unary_expression] = STATE(616), + [sym_parenthesized_expression] = STATE(616), + [sym_concatenation] = STATE(616), + [sym_string] = STATE(230), + [sym_simple_expansion] = STATE(230), + [sym_string_expansion] = STATE(230), + [sym_expansion] = STATE(230), + [sym_command_substitution] = STATE(230), + [sym_process_substitution] = STATE(230), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(411), + [sym__special_characters] = ACTIONS(1207), + [anon_sym_DQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(417), + [sym_raw_string] = ACTIONS(1211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), + [anon_sym_BQUOTE] = ACTIONS(1217), + [anon_sym_LT_LPAREN] = ACTIONS(1219), + [anon_sym_GT_LPAREN] = ACTIONS(1219), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(419), + [sym_test_operator] = ACTIONS(1221), }, [227] = { - [sym__terminated_statement] = STATE(610), + [aux_sym_concatenation_repeat1] = STATE(618), + [sym__concat] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(545), + [anon_sym_AMP_AMP] = ACTIONS(545), + [anon_sym_PIPE_PIPE] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_BANG_EQ] = ACTIONS(545), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_LF] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), + }, + [228] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(621), + [anon_sym_DQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1227), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [229] = { + [sym_string] = STATE(623), + [anon_sym_DQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1229), + [sym_raw_string] = ACTIONS(1231), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AT] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1229), + [anon_sym_0] = ACTIONS(1235), + [anon_sym__] = ACTIONS(1235), + }, + [230] = { + [aux_sym_concatenation_repeat1] = STATE(618), + [sym__concat] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_EQ_TILDE] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(561), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_BANG_EQ] = ACTIONS(561), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(561), + }, + [231] = { + [sym_subscript] = STATE(629), + [sym_variable_name] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_0] = ACTIONS(1245), + [anon_sym__] = ACTIONS(1245), + }, + [232] = { + [sym_for_statement] = STATE(630), + [sym_c_style_for_statement] = STATE(630), + [sym_while_statement] = STATE(630), + [sym_if_statement] = STATE(630), + [sym_case_statement] = STATE(630), + [sym_function_definition] = STATE(630), + [sym_subshell] = STATE(630), + [sym_pipeline] = STATE(630), + [sym_list] = STATE(630), + [sym_negated_command] = STATE(630), + [sym_test_command] = STATE(630), + [sym_declaration_command] = STATE(630), + [sym_unset_command] = STATE(630), + [sym_command] = STATE(630), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(631), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [233] = { + [sym_for_statement] = STATE(632), + [sym_c_style_for_statement] = STATE(632), + [sym_while_statement] = STATE(632), + [sym_if_statement] = STATE(632), + [sym_case_statement] = STATE(632), + [sym_function_definition] = STATE(632), + [sym_subshell] = STATE(632), + [sym_pipeline] = STATE(632), + [sym_list] = STATE(632), + [sym_negated_command] = STATE(632), + [sym_test_command] = STATE(632), + [sym_declaration_command] = STATE(632), + [sym_unset_command] = STATE(632), + [sym_command] = STATE(632), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(633), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [234] = { + [sym_for_statement] = STATE(634), + [sym_c_style_for_statement] = STATE(634), + [sym_while_statement] = STATE(634), + [sym_if_statement] = STATE(634), + [sym_case_statement] = STATE(634), + [sym_function_definition] = STATE(634), + [sym_subshell] = STATE(634), + [sym_pipeline] = STATE(634), + [sym_list] = STATE(634), + [sym_negated_command] = STATE(634), + [sym_test_command] = STATE(634), + [sym_declaration_command] = STATE(634), + [sym_unset_command] = STATE(634), + [sym_command] = STATE(634), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(635), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [235] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1247), + }, + [236] = { + [sym_concatenation] = STATE(641), + [sym_string] = STATE(640), + [sym_simple_expansion] = STATE(640), + [sym_string_expansion] = STATE(640), + [sym_expansion] = STATE(640), + [sym_command_substitution] = STATE(640), + [sym_process_substitution] = STATE(640), + [aux_sym_for_statement_repeat1] = STATE(641), + [sym__special_characters] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(73), + [sym_raw_string] = ACTIONS(1257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(81), + [anon_sym_LT_LPAREN] = ACTIONS(83), + [anon_sym_GT_LPAREN] = ACTIONS(83), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1257), + }, + [237] = { + [sym_do_group] = STATE(643), + [anon_sym_do] = ACTIONS(1259), + [sym_comment] = ACTIONS(53), + }, + [238] = { + [sym__terminated_statement] = STATE(645), [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(609), [sym_case_statement] = STATE(26), [sym_function_definition] = STATE(26), [sym_subshell] = STATE(26), @@ -14886,25 +15972,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(610), - [aux_sym_if_statement_repeat1] = STATE(611), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_program_repeat1] = STATE(645), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(1261), [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(1185), - [anon_sym_elif] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1189), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -14937,413 +16020,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [228] = { - [sym_string] = STATE(612), - [sym_simple_expansion] = STATE(612), - [sym_string_expansion] = STATE(612), - [sym_expansion] = STATE(612), - [sym_command_substitution] = STATE(612), - [sym_process_substitution] = STATE(612), - [sym__special_characters] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(71), - [sym_raw_string] = ACTIONS(1191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(75), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(77), - [anon_sym_BQUOTE] = ACTIONS(79), - [anon_sym_LT_LPAREN] = ACTIONS(81), - [anon_sym_GT_LPAREN] = ACTIONS(81), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1191), - }, - [229] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1193), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1193), - }, - [230] = { - [anon_sym_in] = ACTIONS(1197), - [sym_comment] = ACTIONS(53), - }, - [231] = { - [aux_sym_concatenation_repeat1] = STATE(615), - [sym__concat] = ACTIONS(419), - [anon_sym_in] = ACTIONS(707), - [anon_sym_SEMI_SEMI] = ACTIONS(707), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [232] = { - [sym__concat] = ACTIONS(709), - [anon_sym_in] = ACTIONS(711), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [sym__special_characters] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(711), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), - [anon_sym_BQUOTE] = ACTIONS(711), - [anon_sym_LT_LPAREN] = ACTIONS(711), - [anon_sym_GT_LPAREN] = ACTIONS(711), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_LF] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(711), - }, - [233] = { - [anon_sym_DQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [234] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1201), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [235] = { - [sym__concat] = ACTIONS(741), - [anon_sym_in] = ACTIONS(743), - [anon_sym_SEMI_SEMI] = ACTIONS(743), - [sym__special_characters] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LT_LPAREN] = ACTIONS(743), - [anon_sym_GT_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LF] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), - }, - [236] = { - [sym__concat] = ACTIONS(745), - [anon_sym_in] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(747), - [anon_sym_DOLLAR] = ACTIONS(747), - [sym_raw_string] = ACTIONS(747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), - [anon_sym_BQUOTE] = ACTIONS(747), - [anon_sym_LT_LPAREN] = ACTIONS(747), - [anon_sym_GT_LPAREN] = ACTIONS(747), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - }, - [237] = { - [sym__concat] = ACTIONS(749), - [anon_sym_in] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [sym__special_characters] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [anon_sym_LT_LPAREN] = ACTIONS(751), - [anon_sym_GT_LPAREN] = ACTIONS(751), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [238] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1203), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1203), - }, [239] = { - [anon_sym_in] = ACTIONS(1207), - [sym_comment] = ACTIONS(53), + [sym_file_redirect] = STATE(647), + [sym_heredoc_redirect] = STATE(647), + [sym_heredoc_body] = STATE(646), + [sym_herestring_redirect] = STATE(647), + [aux_sym_while_statement_repeat1] = STATE(647), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(349), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LF] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1263), }, [240] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(995), + [anon_sym_then] = ACTIONS(995), [sym_comment] = ACTIONS(53), }, [241] = { - [sym_concatenation] = STATE(623), - [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), - [aux_sym_expansion_repeat1] = STATE(623), - [anon_sym_RBRACE] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1213), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1217), - [anon_sym_COLON] = ACTIONS(1213), - [anon_sym_COLON_QMARK] = ACTIONS(1213), - [anon_sym_COLON_DASH] = ACTIONS(1213), - [anon_sym_PERCENT] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [242] = { - [sym_subscript] = STATE(627), - [sym_variable_name] = ACTIONS(1219), - [anon_sym_DOLLAR] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1221), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_AT] = ACTIONS(1221), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_0] = ACTIONS(1225), - [anon_sym__] = ACTIONS(1225), - }, - [243] = { - [sym_concatenation] = STATE(630), - [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), - [aux_sym_expansion_repeat1] = STATE(630), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_EQ] = ACTIONS(1229), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1233), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_COLON_QMARK] = ACTIONS(1229), - [anon_sym_COLON_DASH] = ACTIONS(1229), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [244] = { - [sym_concatenation] = STATE(633), - [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), - [aux_sym_expansion_repeat1] = STATE(633), - [anon_sym_RBRACE] = ACTIONS(1235), - [anon_sym_EQ] = ACTIONS(1237), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_COLON_QMARK] = ACTIONS(1237), - [anon_sym_COLON_DASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [245] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [246] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [247] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_comment] = ACTIONS(53), - }, - [248] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1243), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [249] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [250] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [251] = { - [anon_sym_RPAREN] = ACTIONS(1247), - [sym_comment] = ACTIONS(53), - }, - [252] = { - [sym__terminated_statement] = STATE(640), - [sym_for_statement] = STATE(638), - [sym_while_statement] = STATE(638), - [sym_if_statement] = STATE(638), - [sym_case_statement] = STATE(638), - [sym_function_definition] = STATE(638), - [sym_subshell] = STATE(638), - [sym_pipeline] = STATE(638), - [sym_list] = STATE(638), - [sym_negated_command] = STATE(638), - [sym_test_command] = STATE(638), - [sym_declaration_command] = STATE(638), - [sym_unset_command] = STATE(638), - [sym_command] = STATE(638), + [sym__terminated_statement] = STATE(652), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(653), + [sym_else_clause] = STATE(651), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(639), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(640), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_program_repeat1] = STATE(652), + [aux_sym_if_statement_repeat1] = STATE(653), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(1267), + [anon_sym_elif] = ACTIONS(1269), + [anon_sym_else] = ACTIONS(1271), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(1249), [anon_sym_BANG] = ACTIONS(23), [anon_sym_LBRACK] = ACTIONS(25), [anon_sym_LBRACK_LBRACK] = ACTIONS(27), @@ -15373,11012 +16126,10025 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, + [242] = { + [sym_string] = STATE(654), + [sym_simple_expansion] = STATE(654), + [sym_string_expansion] = STATE(654), + [sym_expansion] = STATE(654), + [sym_command_substitution] = STATE(654), + [sym_process_substitution] = STATE(654), + [sym__special_characters] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(73), + [sym_raw_string] = ACTIONS(1273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(81), + [anon_sym_LT_LPAREN] = ACTIONS(83), + [anon_sym_GT_LPAREN] = ACTIONS(83), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1273), + }, + [243] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1275), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1275), + }, + [244] = { + [anon_sym_in] = ACTIONS(1279), + [sym_comment] = ACTIONS(53), + }, + [245] = { + [aux_sym_concatenation_repeat1] = STATE(657), + [sym__concat] = ACTIONS(445), + [anon_sym_in] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [246] = { + [sym__concat] = ACTIONS(735), + [anon_sym_in] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + }, + [247] = { + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [248] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1283), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [249] = { + [sym__concat] = ACTIONS(767), + [anon_sym_in] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(769), + [sym__special_characters] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym_raw_string] = ACTIONS(769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), + [anon_sym_BQUOTE] = ACTIONS(769), + [anon_sym_LT_LPAREN] = ACTIONS(769), + [anon_sym_GT_LPAREN] = ACTIONS(769), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), + }, + [250] = { + [sym__concat] = ACTIONS(771), + [anon_sym_in] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [sym__special_characters] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_LT_LPAREN] = ACTIONS(773), + [anon_sym_GT_LPAREN] = ACTIONS(773), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(773), + }, + [251] = { + [sym__concat] = ACTIONS(775), + [anon_sym_in] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(777), + [sym__special_characters] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(777), + }, + [252] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1285), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_LF] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1285), + }, [253] = { - [sym_file_redirect] = STATE(643), - [sym_file_descriptor] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1253), - [anon_sym_PIPE_AMP] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_AMP_GT] = ACTIONS(1255), - [anon_sym_AMP_GT_GT] = ACTIONS(1255), - [anon_sym_LT_AMP] = ACTIONS(1255), - [anon_sym_GT_AMP] = ACTIONS(1255), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_in] = ACTIONS(1289), + [sym_comment] = ACTIONS(53), }, [254] = { - [sym_concatenation] = STATE(212), - [sym_string] = STATE(645), - [sym_array] = STATE(212), - [sym_simple_expansion] = STATE(645), - [sym_string_expansion] = STATE(645), - [sym_expansion] = STATE(645), - [sym_command_substitution] = STATE(645), - [sym_process_substitution] = STATE(645), - [sym__empty_value] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [sym__special_characters] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [sym_raw_string] = ACTIONS(1261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(399), - [anon_sym_BQUOTE] = ACTIONS(401), - [anon_sym_LT_LPAREN] = ACTIONS(403), - [anon_sym_GT_LPAREN] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(1291), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1261), }, [255] = { - [sym_do_group] = STATE(646), - [anon_sym_do] = ACTIONS(411), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(665), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(665), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_EQ] = ACTIONS(1295), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1299), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym_COLON_QMARK] = ACTIONS(1295), + [anon_sym_COLON_DASH] = ACTIONS(1295), + [anon_sym_PERCENT] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [256] = { - [sym_compound_statement] = STATE(648), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(457), + [sym_subscript] = STATE(669), + [sym_variable_name] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1303), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_0] = ACTIONS(1307), + [anon_sym__] = ACTIONS(1307), }, [257] = { - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_RBRACK] = ACTIONS(1265), - [anon_sym_EQ_TILDE] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(553), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(547), + [sym_concatenation] = STATE(672), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(672), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1311), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_COLON] = ACTIONS(1311), + [anon_sym_COLON_QMARK] = ACTIONS(1311), + [anon_sym_COLON_DASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [258] = { - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1265), - [anon_sym_EQ_TILDE] = ACTIONS(581), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_EQ] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(579), + [sym_concatenation] = STATE(675), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(675), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(1319), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1321), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1323), + [anon_sym_COLON] = ACTIONS(1319), + [anon_sym_COLON_QMARK] = ACTIONS(1319), + [anon_sym_COLON_DASH] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [259] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1267), - [anon_sym_PLUS_EQ] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1325), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), [sym_comment] = ACTIONS(53), }, [260] = { - [aux_sym_concatenation_repeat1] = STATE(651), - [sym__concat] = ACTIONS(587), - [sym_variable_name] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(591), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_SEMI_SEMI] = ACTIONS(591), - [anon_sym_PIPE_AMP] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [sym__special_characters] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [anon_sym_DOLLAR] = ACTIONS(591), - [sym_raw_string] = ACTIONS(591), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(591), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(591), - [anon_sym_BQUOTE] = ACTIONS(591), - [anon_sym_LT_LPAREN] = ACTIONS(591), - [anon_sym_GT_LPAREN] = ACTIONS(591), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(591), - [sym_word] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(591), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1325), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [261] = { - [aux_sym_concatenation_repeat1] = STATE(651), - [sym__concat] = ACTIONS(587), - [sym_variable_name] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_RPAREN] = ACTIONS(609), - [anon_sym_SEMI_SEMI] = ACTIONS(609), - [anon_sym_PIPE_AMP] = ACTIONS(609), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [sym__special_characters] = ACTIONS(609), - [anon_sym_DQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(609), - [sym_raw_string] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_LT_LPAREN] = ACTIONS(609), - [anon_sym_GT_LPAREN] = ACTIONS(609), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), - [sym_word] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(1325), + [sym_comment] = ACTIONS(53), }, [262] = { - [anon_sym_EQ] = ACTIONS(1267), - [anon_sym_PLUS_EQ] = ACTIONS(1267), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(1325), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [263] = { - [sym_variable_assignment] = STATE(652), - [sym_subscript] = STATE(262), - [sym_concatenation] = STATE(652), - [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), - [aux_sym_declaration_command_repeat1] = STATE(652), - [sym_variable_name] = ACTIONS(463), - [anon_sym_PIPE] = ACTIONS(625), - [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), - [sym__special_characters] = ACTIONS(465), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(179), - [sym_word] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1327), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), }, [264] = { - [aux_sym_concatenation_repeat1] = STATE(653), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_SEMI_SEMI] = ACTIONS(631), - [anon_sym_PIPE_AMP] = ACTIONS(631), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym__special_characters] = ACTIONS(631), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [sym_raw_string] = ACTIONS(631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(631), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(631), - [sym_word] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_LF] = ACTIONS(633), - [anon_sym_AMP] = ACTIONS(631), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1327), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [265] = { - [aux_sym_concatenation_repeat1] = STATE(653), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_SEMI_SEMI] = ACTIONS(649), - [anon_sym_PIPE_AMP] = ACTIONS(649), - [anon_sym_AMP_AMP] = ACTIONS(649), - [anon_sym_PIPE_PIPE] = ACTIONS(649), - [sym__special_characters] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(649), - [anon_sym_DOLLAR] = ACTIONS(649), - [sym_raw_string] = ACTIONS(649), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(649), - [anon_sym_BQUOTE] = ACTIONS(649), - [anon_sym_LT_LPAREN] = ACTIONS(649), - [anon_sym_GT_LPAREN] = ACTIONS(649), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), - [sym_word] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_LF] = ACTIONS(651), - [anon_sym_AMP] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(1329), + [sym_comment] = ACTIONS(53), }, [266] = { - [sym_concatenation] = STATE(654), - [sym_string] = STATE(265), - [sym_simple_expansion] = STATE(265), - [sym_string_expansion] = STATE(265), - [sym_expansion] = STATE(265), - [sym_command_substitution] = STATE(265), - [sym_process_substitution] = STATE(265), - [aux_sym_unset_command_repeat1] = STATE(654), - [anon_sym_PIPE] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_SEMI_SEMI] = ACTIONS(667), - [anon_sym_PIPE_AMP] = ACTIONS(667), - [anon_sym_AMP_AMP] = ACTIONS(667), - [anon_sym_PIPE_PIPE] = ACTIONS(667), - [sym__special_characters] = ACTIONS(469), - [anon_sym_DQUOTE] = ACTIONS(187), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(197), - [anon_sym_LT_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(199), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(201), - [sym_word] = ACTIONS(471), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_LF] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(667), + [sym__terminated_statement] = STATE(682), + [sym_for_statement] = STATE(680), + [sym_c_style_for_statement] = STATE(680), + [sym_while_statement] = STATE(680), + [sym_if_statement] = STATE(680), + [sym_case_statement] = STATE(680), + [sym_function_definition] = STATE(680), + [sym_subshell] = STATE(680), + [sym_pipeline] = STATE(680), + [sym_list] = STATE(680), + [sym_negated_command] = STATE(680), + [sym_test_command] = STATE(680), + [sym_declaration_command] = STATE(680), + [sym_unset_command] = STATE(680), + [sym_command] = STATE(680), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(681), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(682), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [267] = { - [aux_sym_concatenation_repeat1] = STATE(655), - [sym__simple_heredoc_body] = ACTIONS(705), - [sym__heredoc_body_beginning] = ACTIONS(705), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(707), - [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_EQ_TILDE] = ACTIONS(707), - [anon_sym_EQ_EQ] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(707), - [anon_sym_LT_AMP] = ACTIONS(707), - [anon_sym_GT_AMP] = ACTIONS(707), - [anon_sym_LT_LT] = ACTIONS(707), - [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(707), - [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(177), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), + [sym_file_redirect] = STATE(685), + [sym_file_descriptor] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_SEMI_SEMI] = ACTIONS(1335), + [anon_sym_PIPE_AMP] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_GT_GT] = ACTIONS(1337), + [anon_sym_AMP_GT] = ACTIONS(1337), + [anon_sym_AMP_GT_GT] = ACTIONS(1337), + [anon_sym_LT_AMP] = ACTIONS(1337), + [anon_sym_GT_AMP] = ACTIONS(1337), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_LF] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1335), }, [268] = { - [anon_sym_RPAREN] = ACTIONS(1269), + [sym_concatenation] = STATE(214), + [sym_string] = STATE(687), + [sym_array] = STATE(214), + [sym_simple_expansion] = STATE(687), + [sym_string_expansion] = STATE(687), + [sym_expansion] = STATE(687), + [sym_command_substitution] = STATE(687), + [sym_process_substitution] = STATE(687), + [sym__empty_value] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(389), + [sym__special_characters] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [sym_raw_string] = ACTIONS(1343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), + [anon_sym_BQUOTE] = ACTIONS(403), + [anon_sym_LT_LPAREN] = ACTIONS(405), + [anon_sym_GT_LPAREN] = ACTIONS(405), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1343), }, [269] = { - [sym_for_statement] = STATE(537), - [sym_while_statement] = STATE(537), - [sym_if_statement] = STATE(537), - [sym_case_statement] = STATE(537), - [sym_function_definition] = STATE(537), - [sym_subshell] = STATE(537), - [sym_pipeline] = STATE(537), - [sym_list] = STATE(537), - [sym_negated_command] = STATE(537), - [sym_test_command] = STATE(537), - [sym_declaration_command] = STATE(537), - [sym_unset_command] = STATE(537), - [sym_command] = STATE(537), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(538), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_command_repeat1] = STATE(68), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(85), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(87), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_typeset] = ACTIONS(97), - [anon_sym_export] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_local] = ACTIONS(97), - [anon_sym_unset] = ACTIONS(99), - [anon_sym_unsetenv] = ACTIONS(99), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_do_group] = STATE(688), + [anon_sym_do] = ACTIONS(437), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(105), }, [270] = { - [anon_sym_esac] = ACTIONS(1271), - [anon_sym_PIPE] = ACTIONS(1271), - [anon_sym_RPAREN] = ACTIONS(1271), - [anon_sym_SEMI_SEMI] = ACTIONS(1271), - [anon_sym_PIPE_AMP] = ACTIONS(1271), - [anon_sym_AMP_AMP] = ACTIONS(1271), - [anon_sym_PIPE_PIPE] = ACTIONS(1271), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_LF] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1271), + [sym_compound_statement] = STATE(690), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(483), + [sym_comment] = ACTIONS(53), }, [271] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(969), - [sym_raw_string] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(573), + [anon_sym_PIPE_PIPE] = ACTIONS(573), + [anon_sym_RBRACK] = ACTIONS(1347), + [anon_sym_EQ_TILDE] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_BANG_EQ] = ACTIONS(573), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(969), + [sym_test_operator] = ACTIONS(573), }, [272] = { - [sym_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_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(64), - [sym_variable_assignment] = STATE(659), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_command_repeat1] = STATE(68), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(85), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(87), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_typeset] = ACTIONS(97), - [anon_sym_export] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_local] = ACTIONS(97), - [anon_sym_unset] = ACTIONS(99), - [anon_sym_unsetenv] = ACTIONS(99), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1347), + [anon_sym_EQ_TILDE] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_EQ] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(105), + [sym_test_operator] = ACTIONS(605), }, [273] = { - [anon_sym_LT] = ACTIONS(1277), - [anon_sym_GT] = ACTIONS(1277), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(1277), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(1349), + [anon_sym_PLUS_EQ] = ACTIONS(1349), [sym_comment] = ACTIONS(53), }, [274] = { - [sym_concatenation] = STATE(548), - [sym_string] = STATE(662), - [sym_simple_expansion] = STATE(662), - [sym_string_expansion] = STATE(662), - [sym_expansion] = STATE(662), - [sym_command_substitution] = STATE(662), - [sym_process_substitution] = STATE(662), - [sym__special_characters] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1283), - [sym_regex] = ACTIONS(991), + [aux_sym_concatenation_repeat1] = STATE(693), + [sym__concat] = ACTIONS(613), + [sym_variable_name] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_SEMI_SEMI] = ACTIONS(617), + [anon_sym_PIPE_AMP] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [sym__special_characters] = ACTIONS(617), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(617), + [sym_raw_string] = ACTIONS(617), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_LT_LPAREN] = ACTIONS(617), + [anon_sym_GT_LPAREN] = ACTIONS(617), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(617), + [sym_word] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(617), }, [275] = { - [sym_concatenation] = STATE(551), - [sym_string] = STATE(664), - [sym_simple_expansion] = STATE(664), - [sym_string_expansion] = STATE(664), - [sym_expansion] = STATE(664), - [sym_command_substitution] = STATE(664), - [sym_process_substitution] = STATE(664), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1287), + [aux_sym_concatenation_repeat1] = STATE(693), + [sym__concat] = ACTIONS(613), + [sym_variable_name] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_SEMI_SEMI] = ACTIONS(635), + [anon_sym_PIPE_AMP] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [sym__special_characters] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(635), + [sym_raw_string] = ACTIONS(635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), + [anon_sym_BQUOTE] = ACTIONS(635), + [anon_sym_LT_LPAREN] = ACTIONS(635), + [anon_sym_GT_LPAREN] = ACTIONS(635), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), + [sym_word] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_LF] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(635), }, [276] = { - [sym_concatenation] = STATE(555), - [sym_string] = STATE(666), - [sym_simple_expansion] = STATE(666), - [sym_string_expansion] = STATE(666), - [sym_expansion] = STATE(666), - [sym_command_substitution] = STATE(666), - [sym_process_substitution] = STATE(666), - [sym__special_characters] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [anon_sym_EQ] = ACTIONS(1349), + [anon_sym_PLUS_EQ] = ACTIONS(1349), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1291), }, [277] = { - [aux_sym_concatenation_repeat1] = STATE(267), - [sym__simple_heredoc_body] = ACTIONS(1003), - [sym__heredoc_body_beginning] = ACTIONS(1003), - [sym_file_descriptor] = ACTIONS(1003), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_SEMI_SEMI] = ACTIONS(1005), - [anon_sym_PIPE_AMP] = ACTIONS(1005), - [anon_sym_AMP_AMP] = ACTIONS(1005), - [anon_sym_PIPE_PIPE] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_GT_GT] = ACTIONS(1005), - [anon_sym_AMP_GT] = ACTIONS(1005), - [anon_sym_AMP_GT_GT] = ACTIONS(1005), - [anon_sym_LT_AMP] = ACTIONS(1005), - [anon_sym_GT_AMP] = ACTIONS(1005), - [anon_sym_LT_LT] = ACTIONS(1005), - [anon_sym_LT_LT_DASH] = ACTIONS(1005), - [anon_sym_LT_LT_LT] = ACTIONS(1005), - [sym__special_characters] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [sym_raw_string] = ACTIONS(1005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1005), - [anon_sym_BQUOTE] = ACTIONS(1005), - [anon_sym_LT_LPAREN] = ACTIONS(1005), - [anon_sym_GT_LPAREN] = ACTIONS(1005), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1005), + [sym_variable_assignment] = STATE(104), + [sym_subscript] = STATE(276), + [sym_concatenation] = STATE(104), + [sym_string] = STATE(275), + [sym_simple_expansion] = STATE(275), + [sym_string_expansion] = STATE(275), + [sym_expansion] = STATE(275), + [sym_command_substitution] = STATE(275), + [sym_process_substitution] = STATE(275), + [aux_sym_declaration_command_repeat1] = STATE(694), + [sym_variable_name] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(651), + [anon_sym_SEMI_SEMI] = ACTIONS(651), + [anon_sym_PIPE_AMP] = ACTIONS(651), + [anon_sym_AMP_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(651), + [sym__special_characters] = ACTIONS(491), + [anon_sym_DQUOTE] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(493), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(173), + [anon_sym_BQUOTE] = ACTIONS(175), + [anon_sym_LT_LPAREN] = ACTIONS(177), + [anon_sym_GT_LPAREN] = ACTIONS(177), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), + [sym_word] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_LF] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), }, [278] = { - [aux_sym_concatenation_repeat1] = STATE(267), - [sym__simple_heredoc_body] = ACTIONS(1007), - [sym__heredoc_body_beginning] = ACTIONS(1007), - [sym_file_descriptor] = ACTIONS(1007), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(1009), - [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_EQ_TILDE] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1009), - [anon_sym_GT_GT] = ACTIONS(1009), - [anon_sym_AMP_GT] = ACTIONS(1009), - [anon_sym_AMP_GT_GT] = ACTIONS(1009), - [anon_sym_LT_AMP] = ACTIONS(1009), - [anon_sym_GT_AMP] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1009), - [anon_sym_LT_LT_DASH] = ACTIONS(1009), - [anon_sym_LT_LT_LT] = ACTIONS(1009), - [sym__special_characters] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [anon_sym_DOLLAR] = ACTIONS(1009), - [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(177), - [sym_word] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1009), + [aux_sym_concatenation_repeat1] = STATE(695), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(657), + [anon_sym_SEMI_SEMI] = ACTIONS(657), + [anon_sym_PIPE_AMP] = ACTIONS(657), + [anon_sym_AMP_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [sym__special_characters] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(657), + [sym_raw_string] = ACTIONS(657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(657), + [anon_sym_BQUOTE] = ACTIONS(657), + [anon_sym_LT_LPAREN] = ACTIONS(657), + [anon_sym_GT_LPAREN] = ACTIONS(657), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(657), + [sym_word] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(657), + [anon_sym_LF] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(657), }, [279] = { - [sym_file_redirect] = STATE(667), - [sym_heredoc_redirect] = STATE(667), - [sym_heredoc_body] = STATE(556), - [sym_herestring_redirect] = STATE(667), - [aux_sym_while_statement_repeat1] = STATE(667), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_SEMI_SEMI] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(491), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_LF] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1011), - }, - [280] = { - [sym_file_redirect] = STATE(668), - [sym_heredoc_redirect] = STATE(668), - [sym_heredoc_body] = STATE(556), - [sym_herestring_redirect] = STATE(668), - [sym_concatenation] = STATE(669), - [sym_string] = STATE(278), - [sym_simple_expansion] = STATE(278), - [sym_string_expansion] = STATE(278), - [sym_expansion] = STATE(278), - [sym_command_substitution] = STATE(278), - [sym_process_substitution] = STATE(278), - [aux_sym_while_statement_repeat1] = STATE(668), - [aux_sym_command_repeat2] = STATE(669), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_SEMI_SEMI] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [anon_sym_EQ_TILDE] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(491), - [sym__special_characters] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_LF] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1011), - }, - [281] = { - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(1293), - [anon_sym_SEMI_SEMI] = ACTIONS(1295), - [anon_sym_PIPE_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_LF] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1295), - }, - [282] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(1293), - [anon_sym_SEMI_SEMI] = ACTIONS(1295), - [anon_sym_PIPE_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_LF] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1295), - }, - [283] = { - [sym__terminated_statement] = STATE(283), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(283), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1015), - [sym_variable_name] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_function] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), - [anon_sym_declare] = ACTIONS(1050), - [anon_sym_typeset] = ACTIONS(1050), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_readonly] = ACTIONS(1050), - [anon_sym_local] = ACTIONS(1050), - [anon_sym_unset] = ACTIONS(1053), - [anon_sym_unsetenv] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1056), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1056), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1083), - [anon_sym_GT_LPAREN] = ACTIONS(1083), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1086), - }, - [284] = { - [sym_file_redirect] = STATE(668), - [sym_heredoc_redirect] = STATE(668), - [sym_heredoc_body] = STATE(556), - [sym_herestring_redirect] = STATE(668), - [sym_concatenation] = STATE(671), - [sym_string] = STATE(278), - [sym_simple_expansion] = STATE(278), - [sym_string_expansion] = STATE(278), - [sym_expansion] = STATE(278), - [sym_command_substitution] = STATE(278), - [sym_process_substitution] = STATE(278), - [aux_sym_while_statement_repeat1] = STATE(668), - [aux_sym_command_repeat2] = STATE(671), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_SEMI_SEMI] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [anon_sym_EQ_TILDE] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(491), - [sym__special_characters] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_LF] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1011), - }, - [285] = { - [sym_concatenation] = STATE(672), - [sym_string] = STATE(675), - [sym_array] = STATE(672), - [sym_simple_expansion] = STATE(675), - [sym_string_expansion] = STATE(675), - [sym_expansion] = STATE(675), - [sym_command_substitution] = STATE(675), - [sym_process_substitution] = STATE(675), - [sym__empty_value] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1301), - [sym__special_characters] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(1305), - [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(53), - [sym_word] = ACTIONS(1305), - }, - [286] = { - [sym__expression] = STATE(676), - [sym_binary_expression] = STATE(676), - [sym_unary_expression] = STATE(676), - [sym_parenthesized_expression] = STATE(676), - [sym_concatenation] = STATE(676), - [sym_string] = STATE(288), - [sym_simple_expansion] = STATE(288), - [sym_string_expansion] = STATE(288), - [sym_expansion] = STATE(288), - [sym_command_substitution] = STATE(288), - [sym_process_substitution] = STATE(288), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(505), - [sym__special_characters] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(511), - [sym_test_operator] = ACTIONS(513), - }, - [287] = { - [aux_sym_concatenation_repeat1] = STATE(677), - [sym__concat] = ACTIONS(555), - [anon_sym_RPAREN] = ACTIONS(517), - [anon_sym_AMP_AMP] = ACTIONS(517), - [anon_sym_PIPE_PIPE] = ACTIONS(517), - [anon_sym_EQ_TILDE] = ACTIONS(517), - [anon_sym_EQ_EQ] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(517), - [anon_sym_BANG_EQ] = ACTIONS(517), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(517), - }, - [288] = { - [aux_sym_concatenation_repeat1] = STATE(677), - [sym__concat] = ACTIONS(555), - [anon_sym_RPAREN] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(533), - [anon_sym_PIPE_PIPE] = ACTIONS(533), - [anon_sym_EQ_TILDE] = ACTIONS(533), - [anon_sym_EQ_EQ] = ACTIONS(533), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(533), - [anon_sym_GT] = ACTIONS(533), - [anon_sym_BANG_EQ] = ACTIONS(533), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(533), - }, - [289] = { - [anon_sym_RPAREN] = ACTIONS(1307), - [anon_sym_AMP_AMP] = ACTIONS(1309), - [anon_sym_PIPE_PIPE] = ACTIONS(1309), - [anon_sym_EQ_TILDE] = ACTIONS(1311), - [anon_sym_EQ_EQ] = ACTIONS(1311), - [anon_sym_EQ] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1309), - [anon_sym_GT] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1309), - }, - [290] = { - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_RBRACK] = ACTIONS(1315), - [anon_sym_EQ_TILDE] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(553), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(547), - }, - [291] = { - [sym_string] = STATE(681), - [sym_simple_expansion] = STATE(681), - [sym_string_expansion] = STATE(681), - [sym_expansion] = STATE(681), - [sym_command_substitution] = STATE(681), - [sym_process_substitution] = STATE(681), - [sym__special_characters] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1317), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1317), - }, - [292] = { - [aux_sym_concatenation_repeat1] = STATE(682), - [sym__concat] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_RBRACK] = ACTIONS(705), - [anon_sym_EQ_TILDE] = ACTIONS(705), - [anon_sym_EQ_EQ] = ACTIONS(705), - [anon_sym_EQ] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(705), - [anon_sym_BANG_EQ] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(705), - }, - [293] = { - [sym__concat] = ACTIONS(709), - [anon_sym_AMP_AMP] = ACTIONS(709), - [anon_sym_PIPE_PIPE] = ACTIONS(709), - [anon_sym_RBRACK] = ACTIONS(709), - [anon_sym_EQ_TILDE] = ACTIONS(709), - [anon_sym_EQ_EQ] = ACTIONS(709), - [anon_sym_EQ] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(709), - [anon_sym_GT] = ACTIONS(709), - [anon_sym_BANG_EQ] = ACTIONS(709), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(709), - }, - [294] = { - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [295] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1321), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [296] = { - [sym__concat] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(741), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(741), - }, - [297] = { - [sym__concat] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(745), - [anon_sym_RBRACK] = ACTIONS(745), - [anon_sym_EQ_TILDE] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_BANG_EQ] = ACTIONS(745), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(745), - }, - [298] = { - [sym__concat] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_RBRACK] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(749), - }, - [299] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(1323), - [sym_comment] = ACTIONS(53), - }, - [300] = { - [sym_concatenation] = STATE(688), - [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), - [aux_sym_expansion_repeat1] = STATE(688), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_EQ] = ACTIONS(1327), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1329), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1331), - [anon_sym_COLON] = ACTIONS(1327), - [anon_sym_COLON_QMARK] = ACTIONS(1327), - [anon_sym_COLON_DASH] = ACTIONS(1327), - [anon_sym_PERCENT] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [301] = { - [sym_subscript] = STATE(692), - [sym_variable_name] = ACTIONS(1333), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_0] = ACTIONS(1339), - [anon_sym__] = ACTIONS(1339), - }, - [302] = { - [sym_concatenation] = STATE(695), - [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), - [aux_sym_expansion_repeat1] = STATE(695), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_EQ] = ACTIONS(1343), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1347), - [anon_sym_COLON] = ACTIONS(1343), - [anon_sym_COLON_QMARK] = ACTIONS(1343), - [anon_sym_COLON_DASH] = ACTIONS(1343), - [anon_sym_PERCENT] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [303] = { - [sym_concatenation] = STATE(698), - [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), - [aux_sym_expansion_repeat1] = STATE(698), - [anon_sym_RBRACE] = ACTIONS(1349), - [anon_sym_EQ] = ACTIONS(1351), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1353), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1355), - [anon_sym_COLON] = ACTIONS(1351), - [anon_sym_COLON_QMARK] = ACTIONS(1351), - [anon_sym_COLON_DASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [304] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [305] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [306] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(1357), - [sym_comment] = ACTIONS(53), - }, - [307] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1357), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [308] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [309] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [310] = { - [sym__expression] = STATE(701), - [sym_binary_expression] = STATE(701), - [sym_unary_expression] = STATE(701), - [sym_parenthesized_expression] = STATE(701), - [sym_concatenation] = STATE(701), - [sym_string] = STATE(77), - [sym_simple_expansion] = STATE(77), - [sym_string_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(111), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - [sym_test_operator] = ACTIONS(131), - }, - [311] = { - [sym_file_redirect] = STATE(706), - [sym_heredoc_redirect] = STATE(706), - [sym_herestring_redirect] = STATE(706), - [aux_sym_while_statement_repeat1] = STATE(706), - [sym_file_descriptor] = ACTIONS(1361), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_SEMI_SEMI] = ACTIONS(1363), - [anon_sym_PIPE_AMP] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1363), - [anon_sym_PIPE_PIPE] = ACTIONS(1363), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1367), - [anon_sym_LT_LT_DASH] = ACTIONS(1367), - [anon_sym_LT_LT_LT] = ACTIONS(1369), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1363), - }, - [312] = { - [sym__expression] = STATE(701), - [sym_binary_expression] = STATE(701), - [sym_unary_expression] = STATE(701), - [sym_parenthesized_expression] = STATE(701), - [sym_concatenation] = STATE(701), - [sym_string] = STATE(77), - [sym_simple_expansion] = STATE(77), - [sym_string_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(111), - [sym__special_characters] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1377), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1381), - [anon_sym_BQUOTE] = ACTIONS(1383), - [anon_sym_LT_LPAREN] = ACTIONS(1385), - [anon_sym_GT_LPAREN] = ACTIONS(1385), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(129), - [sym_test_operator] = ACTIONS(111), - [sym_regex] = ACTIONS(1387), - }, - [313] = { - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1309), - [anon_sym_PIPE_PIPE] = ACTIONS(1309), - [anon_sym_EQ_TILDE] = ACTIONS(1311), - [anon_sym_EQ_EQ] = ACTIONS(1311), - [anon_sym_EQ] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1309), - [anon_sym_GT] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1309), - }, - [314] = { - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1315), - [anon_sym_EQ_TILDE] = ACTIONS(581), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_EQ] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(579), - }, - [315] = { - [sym_string] = STATE(709), - [sym_simple_expansion] = STATE(709), - [sym_string_expansion] = STATE(709), - [sym_expansion] = STATE(709), - [sym_command_substitution] = STATE(709), - [sym_process_substitution] = STATE(709), - [sym__special_characters] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(1391), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1391), - }, - [316] = { - [aux_sym_concatenation_repeat1] = STATE(710), - [sym__concat] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_RBRACK_RBRACK] = ACTIONS(705), - [anon_sym_EQ_TILDE] = ACTIONS(705), - [anon_sym_EQ_EQ] = ACTIONS(705), - [anon_sym_EQ] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(705), - [anon_sym_BANG_EQ] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(705), - }, - [317] = { - [sym__concat] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_AMP_AMP] = ACTIONS(709), - [anon_sym_PIPE_PIPE] = ACTIONS(709), - [anon_sym_RBRACK_RBRACK] = ACTIONS(709), - [anon_sym_EQ_TILDE] = ACTIONS(709), - [anon_sym_EQ_EQ] = ACTIONS(709), - [anon_sym_EQ] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(709), - [anon_sym_GT] = ACTIONS(709), - [anon_sym_BANG_EQ] = ACTIONS(709), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(709), - }, - [318] = { - [anon_sym_DQUOTE] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [319] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(1395), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [320] = { - [sym__concat] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(741), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [anon_sym_RBRACK_RBRACK] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(741), - }, - [321] = { - [sym__concat] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(745), - [anon_sym_RBRACK_RBRACK] = ACTIONS(745), - [anon_sym_EQ_TILDE] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_BANG_EQ] = ACTIONS(745), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(745), - }, - [322] = { - [sym__concat] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_RBRACK_RBRACK] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(749), - }, - [323] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(1397), - [sym_comment] = ACTIONS(53), - }, - [324] = { - [sym_concatenation] = STATE(716), - [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), - [aux_sym_expansion_repeat1] = STATE(716), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_EQ] = ACTIONS(1401), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_COLON] = ACTIONS(1401), - [anon_sym_COLON_QMARK] = ACTIONS(1401), - [anon_sym_COLON_DASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [325] = { - [sym_subscript] = STATE(720), - [sym_variable_name] = ACTIONS(1407), - [anon_sym_DOLLAR] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AT] = ACTIONS(1409), - [anon_sym_QMARK] = ACTIONS(1409), - [anon_sym_0] = ACTIONS(1413), - [anon_sym__] = ACTIONS(1413), - }, - [326] = { - [sym_concatenation] = STATE(723), - [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), - [aux_sym_expansion_repeat1] = STATE(723), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_EQ] = ACTIONS(1417), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_COLON] = ACTIONS(1417), - [anon_sym_COLON_QMARK] = ACTIONS(1417), - [anon_sym_COLON_DASH] = ACTIONS(1417), - [anon_sym_PERCENT] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [327] = { - [sym_concatenation] = STATE(726), - [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), - [aux_sym_expansion_repeat1] = STATE(726), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_EQ] = ACTIONS(1425), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_COLON] = ACTIONS(1425), - [anon_sym_COLON_QMARK] = ACTIONS(1425), - [anon_sym_COLON_DASH] = ACTIONS(1425), - [anon_sym_PERCENT] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [328] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1431), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [329] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1431), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [330] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(1431), - [sym_comment] = ACTIONS(53), - }, - [331] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1431), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [332] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1433), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [333] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1433), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [334] = { - [sym__expression] = STATE(729), - [sym_binary_expression] = STATE(729), - [sym_unary_expression] = STATE(729), - [sym_parenthesized_expression] = STATE(729), - [sym_concatenation] = STATE(729), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_string_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), - }, - [335] = { - [sym__expression] = STATE(729), - [sym_binary_expression] = STATE(729), - [sym_unary_expression] = STATE(729), - [sym_parenthesized_expression] = STATE(729), - [sym_concatenation] = STATE(729), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_string_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1439), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1443), - [anon_sym_BQUOTE] = ACTIONS(1445), - [anon_sym_LT_LPAREN] = ACTIONS(1447), - [anon_sym_GT_LPAREN] = ACTIONS(1447), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(135), - [sym_regex] = ACTIONS(1449), - }, - [336] = { - [sym_concatenation] = STATE(731), - [sym_string] = STATE(734), - [sym_array] = STATE(731), - [sym_simple_expansion] = STATE(734), - [sym_string_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [sym__empty_value] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1453), - [sym__special_characters] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(1457), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1459), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1461), - [anon_sym_BQUOTE] = ACTIONS(1463), - [anon_sym_LT_LPAREN] = ACTIONS(1465), - [anon_sym_GT_LPAREN] = ACTIONS(1465), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1457), - }, - [337] = { - [sym_string] = STATE(735), - [sym_simple_expansion] = STATE(735), - [sym_string_expansion] = STATE(735), - [sym_expansion] = STATE(735), - [sym_command_substitution] = STATE(735), - [sym_process_substitution] = STATE(735), - [sym__special_characters] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(1467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1459), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1461), - [anon_sym_BQUOTE] = ACTIONS(1463), - [anon_sym_LT_LPAREN] = ACTIONS(1465), - [anon_sym_GT_LPAREN] = ACTIONS(1465), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1467), - }, - [338] = { - [aux_sym_concatenation_repeat1] = STATE(736), - [sym__concat] = ACTIONS(587), - [sym_variable_name] = ACTIONS(705), - [anon_sym_PIPE] = 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), - [sym__special_characters] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(707), - [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [339] = { - [sym__concat] = ACTIONS(709), - [sym_variable_name] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_PIPE_AMP] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [sym__special_characters] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(711), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), - [anon_sym_BQUOTE] = ACTIONS(711), - [anon_sym_LT_LPAREN] = ACTIONS(711), - [anon_sym_GT_LPAREN] = ACTIONS(711), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), - [sym_word] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_LF] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(711), - }, - [340] = { - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [341] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_DOLLAR] = ACTIONS(1471), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [342] = { - [sym__concat] = ACTIONS(741), - [sym_variable_name] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_PIPE_AMP] = ACTIONS(743), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [sym__special_characters] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LT_LPAREN] = ACTIONS(743), - [anon_sym_GT_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), - [sym_word] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LF] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), - }, - [343] = { - [sym__concat] = ACTIONS(745), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(747), - [anon_sym_DOLLAR] = ACTIONS(747), - [sym_raw_string] = ACTIONS(747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), - [anon_sym_BQUOTE] = ACTIONS(747), - [anon_sym_LT_LPAREN] = ACTIONS(747), - [anon_sym_GT_LPAREN] = ACTIONS(747), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [sym_word] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - }, - [344] = { - [sym__concat] = ACTIONS(749), - [sym_variable_name] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_PIPE_AMP] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [sym__special_characters] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [anon_sym_LT_LPAREN] = ACTIONS(751), - [anon_sym_GT_LPAREN] = ACTIONS(751), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), - [sym_word] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [345] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(1473), - [sym_comment] = ACTIONS(53), - }, - [346] = { - [sym_concatenation] = STATE(742), - [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), - [aux_sym_expansion_repeat1] = STATE(742), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1477), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1481), - [anon_sym_COLON] = ACTIONS(1477), - [anon_sym_COLON_QMARK] = ACTIONS(1477), - [anon_sym_COLON_DASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [347] = { - [sym_subscript] = STATE(746), - [sym_variable_name] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_0] = ACTIONS(1489), - [anon_sym__] = ACTIONS(1489), - }, - [348] = { - [sym_concatenation] = STATE(749), - [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), - [aux_sym_expansion_repeat1] = STATE(749), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_COLON] = ACTIONS(1493), - [anon_sym_COLON_QMARK] = ACTIONS(1493), - [anon_sym_COLON_DASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [349] = { - [sym_concatenation] = STATE(752), - [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), - [aux_sym_expansion_repeat1] = STATE(752), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1501), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1505), - [anon_sym_COLON] = ACTIONS(1501), - [anon_sym_COLON_QMARK] = ACTIONS(1501), - [anon_sym_COLON_DASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [350] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [351] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [352] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(1507), - [sym_comment] = ACTIONS(53), - }, - [353] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1507), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [354] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [355] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [356] = { - [sym_variable_assignment] = STATE(356), - [sym_subscript] = STATE(104), - [sym_concatenation] = STATE(356), - [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_declaration_command_repeat1] = STATE(356), - [sym_variable_name] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_SEMI_SEMI] = ACTIONS(1514), - [anon_sym_PIPE_AMP] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1514), - [sym__special_characters] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1522), - [sym_raw_string] = ACTIONS(1525), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1531), - [anon_sym_BQUOTE] = ACTIONS(1534), - [anon_sym_LT_LPAREN] = ACTIONS(1537), - [anon_sym_GT_LPAREN] = ACTIONS(1537), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1540), - [sym_word] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_LF] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1514), - }, - [357] = { - [sym_string] = STATE(755), - [sym_simple_expansion] = STATE(755), - [sym_string_expansion] = STATE(755), - [sym_expansion] = STATE(755), - [sym_command_substitution] = STATE(755), - [sym_process_substitution] = STATE(755), - [sym__special_characters] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(1545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1549), - [anon_sym_BQUOTE] = ACTIONS(1551), - [anon_sym_LT_LPAREN] = ACTIONS(1553), - [anon_sym_GT_LPAREN] = ACTIONS(1553), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1545), - }, - [358] = { - [aux_sym_concatenation_repeat1] = STATE(756), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = 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), - [sym__special_characters] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(707), - [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [359] = { - [sym__concat] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_PIPE_AMP] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [sym__special_characters] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(711), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), - [anon_sym_BQUOTE] = ACTIONS(711), - [anon_sym_LT_LPAREN] = ACTIONS(711), - [anon_sym_GT_LPAREN] = ACTIONS(711), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), - [sym_word] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_LF] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(711), - }, - [360] = { - [anon_sym_DQUOTE] = ACTIONS(1555), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [361] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(1555), - [anon_sym_DOLLAR] = ACTIONS(1557), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [362] = { - [sym__concat] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_PIPE_AMP] = ACTIONS(743), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [sym__special_characters] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LT_LPAREN] = ACTIONS(743), - [anon_sym_GT_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), - [sym_word] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LF] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), - }, - [363] = { - [sym__concat] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(747), - [anon_sym_DOLLAR] = ACTIONS(747), - [sym_raw_string] = ACTIONS(747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), - [anon_sym_BQUOTE] = ACTIONS(747), - [anon_sym_LT_LPAREN] = ACTIONS(747), - [anon_sym_GT_LPAREN] = ACTIONS(747), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [sym_word] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - }, - [364] = { - [sym__concat] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_PIPE_AMP] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [sym__special_characters] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [anon_sym_LT_LPAREN] = ACTIONS(751), - [anon_sym_GT_LPAREN] = ACTIONS(751), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), - [sym_word] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [365] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(1559), - [sym_comment] = ACTIONS(53), - }, - [366] = { - [sym_concatenation] = STATE(762), - [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), - [aux_sym_expansion_repeat1] = STATE(762), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_EQ] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1563), - [anon_sym_COLON_QMARK] = ACTIONS(1563), - [anon_sym_COLON_DASH] = ACTIONS(1563), - [anon_sym_PERCENT] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [367] = { - [sym_subscript] = STATE(766), - [sym_variable_name] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AT] = ACTIONS(1571), - [anon_sym_QMARK] = ACTIONS(1571), - [anon_sym_0] = ACTIONS(1575), - [anon_sym__] = ACTIONS(1575), - }, - [368] = { - [sym_concatenation] = STATE(769), - [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), - [aux_sym_expansion_repeat1] = STATE(769), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1583), - [anon_sym_COLON] = ACTIONS(1579), - [anon_sym_COLON_QMARK] = ACTIONS(1579), - [anon_sym_COLON_DASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [369] = { - [sym_concatenation] = STATE(772), - [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), - [aux_sym_expansion_repeat1] = STATE(772), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_EQ] = ACTIONS(1587), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_COLON] = ACTIONS(1587), - [anon_sym_COLON_QMARK] = ACTIONS(1587), - [anon_sym_COLON_DASH] = ACTIONS(1587), - [anon_sym_PERCENT] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [370] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1593), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [371] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1593), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [372] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(1593), - [sym_comment] = ACTIONS(53), - }, - [373] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1593), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [374] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [375] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [376] = { - [sym_concatenation] = STATE(376), - [sym_string] = STATE(109), - [sym_simple_expansion] = STATE(109), - [sym_string_expansion] = STATE(109), - [sym_expansion] = STATE(109), - [sym_command_substitution] = STATE(109), - [sym_process_substitution] = STATE(109), - [aux_sym_unset_command_repeat1] = STATE(376), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_SEMI_SEMI] = ACTIONS(1597), - [anon_sym_PIPE_AMP] = ACTIONS(1597), - [anon_sym_AMP_AMP] = ACTIONS(1597), - [anon_sym_PIPE_PIPE] = ACTIONS(1597), - [sym__special_characters] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1605), - [sym_raw_string] = ACTIONS(1608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1617), - [anon_sym_LT_LPAREN] = ACTIONS(1620), - [anon_sym_GT_LPAREN] = ACTIONS(1620), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1623), - [sym_word] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_LF] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1597), - }, - [377] = { - [sym_string] = STATE(775), - [sym_simple_expansion] = STATE(775), - [sym_string_expansion] = STATE(775), - [sym_expansion] = STATE(775), - [sym_command_substitution] = STATE(775), - [sym_process_substitution] = STATE(775), - [sym__special_characters] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(1628), - [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(53), - [sym_word] = ACTIONS(1628), - }, - [378] = { - [aux_sym_concatenation_repeat1] = STATE(776), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(705), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(705), - [anon_sym_LT_AMP] = ACTIONS(705), - [anon_sym_GT_AMP] = ACTIONS(705), - [sym__special_characters] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LT_LPAREN] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(705), - }, - [379] = { - [sym_file_descriptor] = ACTIONS(709), - [sym__concat] = ACTIONS(709), - [sym_variable_name] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_PIPE_AMP] = ACTIONS(709), - [anon_sym_AMP_AMP] = ACTIONS(709), - [anon_sym_PIPE_PIPE] = ACTIONS(709), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_GT] = ACTIONS(711), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_AMP_GT] = ACTIONS(711), - [anon_sym_AMP_GT_GT] = ACTIONS(709), - [anon_sym_LT_AMP] = ACTIONS(709), - [anon_sym_GT_AMP] = ACTIONS(709), - [sym__special_characters] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(709), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(709), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(709), - [anon_sym_BQUOTE] = ACTIONS(709), - [anon_sym_LT_LPAREN] = ACTIONS(709), - [anon_sym_GT_LPAREN] = ACTIONS(709), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(709), - }, - [380] = { - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [381] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_DOLLAR] = ACTIONS(1632), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [382] = { - [sym_file_descriptor] = ACTIONS(741), - [sym__concat] = ACTIONS(741), - [sym_variable_name] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_PIPE_AMP] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(741), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_AMP_GT] = ACTIONS(743), - [anon_sym_AMP_GT_GT] = ACTIONS(741), - [anon_sym_LT_AMP] = ACTIONS(741), - [anon_sym_GT_AMP] = ACTIONS(741), - [sym__special_characters] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), - [anon_sym_BQUOTE] = ACTIONS(741), - [anon_sym_LT_LPAREN] = ACTIONS(741), - [anon_sym_GT_LPAREN] = ACTIONS(741), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(741), - }, - [383] = { - [sym_file_descriptor] = ACTIONS(745), - [sym__concat] = ACTIONS(745), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE_AMP] = ACTIONS(745), - [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(745), - [anon_sym_AMP_GT] = ACTIONS(747), - [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(747), - [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(53), - [sym_word] = ACTIONS(745), - }, - [384] = { - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(749), - [sym_variable_name] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [sym__special_characters] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [anon_sym_LT_LPAREN] = ACTIONS(749), - [anon_sym_GT_LPAREN] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(749), - }, - [385] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(1634), - [sym_comment] = ACTIONS(53), - }, - [386] = { - [sym_concatenation] = STATE(782), - [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), - [aux_sym_expansion_repeat1] = STATE(782), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_EQ] = ACTIONS(1638), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1640), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1642), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_COLON_QMARK] = ACTIONS(1638), - [anon_sym_COLON_DASH] = ACTIONS(1638), - [anon_sym_PERCENT] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [387] = { - [sym_subscript] = STATE(786), - [sym_variable_name] = ACTIONS(1644), - [anon_sym_DOLLAR] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_AT] = ACTIONS(1646), - [anon_sym_QMARK] = ACTIONS(1646), - [anon_sym_0] = ACTIONS(1650), - [anon_sym__] = ACTIONS(1650), - }, - [388] = { - [sym_concatenation] = STATE(789), - [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), - [aux_sym_expansion_repeat1] = STATE(789), - [anon_sym_RBRACE] = ACTIONS(1652), - [anon_sym_EQ] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_COLON] = ACTIONS(1654), - [anon_sym_COLON_QMARK] = ACTIONS(1654), - [anon_sym_COLON_DASH] = ACTIONS(1654), - [anon_sym_PERCENT] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [389] = { - [sym_concatenation] = STATE(792), - [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), - [aux_sym_expansion_repeat1] = STATE(792), - [anon_sym_RBRACE] = ACTIONS(1660), - [anon_sym_EQ] = ACTIONS(1662), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1664), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1666), - [anon_sym_COLON] = ACTIONS(1662), - [anon_sym_COLON_QMARK] = ACTIONS(1662), - [anon_sym_COLON_DASH] = ACTIONS(1662), - [anon_sym_PERCENT] = ACTIONS(1662), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [390] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [391] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [392] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(1668), - [sym_comment] = ACTIONS(53), - }, - [393] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1668), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [394] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1670), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [395] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1670), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [396] = { - [sym__simple_heredoc_body] = ACTIONS(1672), - [sym__heredoc_body_beginning] = ACTIONS(1672), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(1672), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_EQ_TILDE] = ACTIONS(1674), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_LT_LT_LT] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [397] = { - [aux_sym_concatenation_repeat1] = STATE(397), - [sym__simple_heredoc_body] = ACTIONS(1672), - [sym__heredoc_body_beginning] = ACTIONS(1672), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_EQ_TILDE] = ACTIONS(1674), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_LT_LT_LT] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [398] = { - [sym__simple_heredoc_body] = ACTIONS(1679), - [sym__heredoc_body_beginning] = ACTIONS(1679), - [sym_file_descriptor] = ACTIONS(1679), - [sym__concat] = ACTIONS(1679), - [anon_sym_esac] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [anon_sym_EQ_TILDE] = ACTIONS(1681), - [anon_sym_EQ_EQ] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [sym__special_characters] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - }, - [399] = { - [sym__concat] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym__string_content] = ACTIONS(741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [sym_comment] = ACTIONS(177), - }, - [400] = { - [sym__concat] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [sym__string_content] = ACTIONS(1687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_comment] = ACTIONS(177), - }, - [401] = { - [sym__concat] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym__string_content] = ACTIONS(749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [sym_comment] = ACTIONS(177), - }, - [402] = { - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [sym__string_content] = ACTIONS(1687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_comment] = ACTIONS(177), - }, - [403] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(1689), - [sym_comment] = ACTIONS(53), - }, - [404] = { - [sym_concatenation] = STATE(799), - [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), - [aux_sym_expansion_repeat1] = STATE(799), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_EQ] = ACTIONS(1693), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [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_DASH] = ACTIONS(1693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [405] = { - [sym_subscript] = STATE(803), - [sym_variable_name] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_AT] = ACTIONS(1701), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_0] = ACTIONS(1705), - [anon_sym__] = ACTIONS(1705), - }, - [406] = { - [sym_concatenation] = STATE(806), - [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), - [aux_sym_expansion_repeat1] = STATE(806), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_EQ] = ACTIONS(1709), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1713), - [anon_sym_COLON] = ACTIONS(1709), - [anon_sym_COLON_QMARK] = ACTIONS(1709), - [anon_sym_COLON_DASH] = ACTIONS(1709), - [anon_sym_PERCENT] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [407] = { - [sym_concatenation] = STATE(809), - [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), - [aux_sym_expansion_repeat1] = STATE(809), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(1717), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1719), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_COLON] = ACTIONS(1717), - [anon_sym_COLON_QMARK] = ACTIONS(1717), - [anon_sym_COLON_DASH] = ACTIONS(1717), - [anon_sym_PERCENT] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [408] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [409] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [410] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(1723), - [sym_comment] = ACTIONS(53), - }, - [411] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1723), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [412] = { - [anon_sym_DQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [413] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1727), - [sym__string_content] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1736), - [anon_sym_BQUOTE] = ACTIONS(1739), - [sym_comment] = ACTIONS(177), - }, - [414] = { - [sym_concatenation] = STATE(815), - [sym_string] = STATE(814), - [sym_simple_expansion] = STATE(814), - [sym_string_expansion] = STATE(814), - [sym_expansion] = STATE(814), - [sym_command_substitution] = STATE(814), - [sym_process_substitution] = STATE(814), - [sym__special_characters] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1744), - }, - [415] = { - [sym_concatenation] = STATE(825), - [sym_string] = STATE(820), - [sym_simple_expansion] = STATE(820), - [sym_string_expansion] = STATE(820), - [sym_expansion] = STATE(820), - [sym_command_substitution] = STATE(820), - [sym_process_substitution] = STATE(820), - [anon_sym_RBRACE] = ACTIONS(1746), - [sym__special_characters] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1754), - }, - [416] = { - [sym__simple_heredoc_body] = ACTIONS(1764), - [sym__heredoc_body_beginning] = ACTIONS(1764), - [sym_file_descriptor] = ACTIONS(1764), - [sym__concat] = ACTIONS(1764), - [anon_sym_esac] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_SEMI_SEMI] = ACTIONS(1766), - [anon_sym_PIPE_AMP] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_EQ_TILDE] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_GT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_AMP_GT] = ACTIONS(1766), - [anon_sym_AMP_GT_GT] = ACTIONS(1766), - [anon_sym_LT_AMP] = ACTIONS(1766), - [anon_sym_GT_AMP] = ACTIONS(1766), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_LT_LT_DASH] = ACTIONS(1766), - [anon_sym_LT_LT_LT] = ACTIONS(1766), - [sym__special_characters] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1766), - }, - [417] = { - [aux_sym_concatenation_repeat1] = STATE(827), - [sym__concat] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1772), - [sym__special_characters] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1772), - [anon_sym_COLON_QMARK] = ACTIONS(1772), - [anon_sym_COLON_DASH] = ACTIONS(1772), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1772), - }, - [418] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(830), - [anon_sym_DQUOTE] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [419] = { - [sym_string] = STATE(832), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(1778), - [sym_raw_string] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(1778), - [anon_sym_QMARK] = ACTIONS(1778), - [anon_sym_0] = ACTIONS(1784), - [anon_sym__] = ACTIONS(1784), - }, - [420] = { - [aux_sym_concatenation_repeat1] = STATE(827), - [sym__concat] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1788), - [sym_raw_string] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1786), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1786), - [anon_sym_BQUOTE] = ACTIONS(1786), - [anon_sym_LT_LPAREN] = ACTIONS(1786), - [anon_sym_GT_LPAREN] = ACTIONS(1786), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1788), - }, - [421] = { - [sym_subscript] = STATE(838), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1792), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1792), - [anon_sym_0] = ACTIONS(1798), - [anon_sym__] = ACTIONS(1798), - }, - [422] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(1800), - }, - [423] = { - [sym_for_statement] = STATE(840), - [sym_while_statement] = STATE(840), - [sym_if_statement] = STATE(840), - [sym_case_statement] = STATE(840), - [sym_function_definition] = STATE(840), - [sym_subshell] = STATE(840), - [sym_pipeline] = STATE(840), - [sym_list] = STATE(840), - [sym_negated_command] = STATE(840), - [sym_test_command] = STATE(840), - [sym_declaration_command] = STATE(840), - [sym_unset_command] = STATE(840), - [sym_command] = STATE(840), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(841), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [424] = { - [sym_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_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(181), - [sym_variable_assignment] = STATE(843), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [425] = { - [sym_for_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_case_statement] = STATE(844), - [sym_function_definition] = STATE(844), - [sym_subshell] = STATE(844), - [sym_pipeline] = STATE(844), - [sym_list] = STATE(844), - [sym_negated_command] = STATE(844), - [sym_test_command] = STATE(844), - [sym_declaration_command] = STATE(844), - [sym_unset_command] = STATE(844), - [sym_command] = STATE(844), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(845), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [426] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [427] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(1808), - [sym_comment] = ACTIONS(53), - }, - [428] = { - [sym_concatenation] = STATE(851), - [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), - [aux_sym_expansion_repeat1] = STATE(851), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [429] = { - [sym_concatenation] = STATE(854), - [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), - [aux_sym_expansion_repeat1] = STATE(854), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_EQ] = ACTIONS(1820), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1824), - [anon_sym_COLON] = ACTIONS(1820), - [anon_sym_COLON_QMARK] = ACTIONS(1820), - [anon_sym_COLON_DASH] = ACTIONS(1820), - [anon_sym_PERCENT] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [430] = { - [sym_concatenation] = STATE(856), - [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), - [aux_sym_expansion_repeat1] = STATE(856), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_EQ] = ACTIONS(1826), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [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_DASH] = ACTIONS(1826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [431] = { - [sym__simple_heredoc_body] = ACTIONS(1832), - [sym__heredoc_body_beginning] = ACTIONS(1832), - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [anon_sym_EQ_TILDE] = ACTIONS(1834), - [anon_sym_EQ_EQ] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [sym__special_characters] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [432] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(1836), - }, - [433] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [434] = { - [sym__simple_heredoc_body] = ACTIONS(1840), - [sym__heredoc_body_beginning] = ACTIONS(1840), - [sym_file_descriptor] = ACTIONS(1840), - [sym__concat] = ACTIONS(1840), - [anon_sym_esac] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_SEMI_SEMI] = ACTIONS(1842), - [anon_sym_PIPE_AMP] = ACTIONS(1842), - [anon_sym_AMP_AMP] = ACTIONS(1842), - [anon_sym_PIPE_PIPE] = ACTIONS(1842), - [anon_sym_EQ_TILDE] = ACTIONS(1842), - [anon_sym_EQ_EQ] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_GT] = ACTIONS(1842), - [anon_sym_GT_GT] = ACTIONS(1842), - [anon_sym_AMP_GT] = ACTIONS(1842), - [anon_sym_AMP_GT_GT] = ACTIONS(1842), - [anon_sym_LT_AMP] = ACTIONS(1842), - [anon_sym_GT_AMP] = ACTIONS(1842), - [anon_sym_LT_LT] = ACTIONS(1842), - [anon_sym_LT_LT_DASH] = ACTIONS(1842), - [anon_sym_LT_LT_LT] = ACTIONS(1842), - [sym__special_characters] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1842), - [anon_sym_GT_LPAREN] = ACTIONS(1842), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LF] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1842), - }, - [435] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(1844), - }, - [436] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [437] = { - [sym_concatenation] = STATE(672), - [sym_string] = STATE(861), - [sym_array] = STATE(672), - [sym_simple_expansion] = STATE(861), - [sym_string_expansion] = STATE(861), - [sym_expansion] = STATE(861), - [sym_command_substitution] = STATE(861), - [sym_process_substitution] = STATE(861), - [sym__empty_value] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1301), - [sym__special_characters] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(1848), - [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(53), - [sym_word] = ACTIONS(1848), - }, - [438] = { - [anon_sym_in] = ACTIONS(1850), - [anon_sym_SEMI_SEMI] = ACTIONS(1852), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_LF] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1852), - }, - [439] = { - [sym_do_group] = STATE(865), - [anon_sym_do] = ACTIONS(1856), - [sym_comment] = ACTIONS(53), - }, - [440] = { - [anon_sym_then] = ACTIONS(1858), - [sym_comment] = ACTIONS(53), - }, - [441] = { - [aux_sym_concatenation_repeat1] = STATE(231), - [sym__concat] = ACTIONS(419), - [anon_sym_in] = ACTIONS(1860), - [anon_sym_SEMI_SEMI] = ACTIONS(1862), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_LF] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1862), - }, - [442] = { - [aux_sym_concatenation_repeat1] = STATE(231), - [sym__concat] = ACTIONS(419), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1868), - }, - [443] = { - [anon_sym_in] = ACTIONS(1866), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1868), - }, - [444] = { - [sym_compound_statement] = STATE(873), - [anon_sym_LPAREN] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1874), - [sym_comment] = ACTIONS(53), - }, - [445] = { - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1878), - }, - [446] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1878), - }, - [447] = { - [sym__terminated_statement] = STATE(283), - [sym_for_statement] = STATE(876), - [sym_while_statement] = STATE(876), - [sym_if_statement] = STATE(876), - [sym_case_statement] = STATE(876), - [sym_function_definition] = STATE(876), - [sym_subshell] = STATE(876), - [sym_pipeline] = STATE(876), - [sym_list] = STATE(876), - [sym_negated_command] = STATE(876), - [sym_test_command] = STATE(876), - [sym_declaration_command] = STATE(876), - [sym_unset_command] = STATE(876), - [sym_command] = STATE(876), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(877), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_program_repeat1] = STATE(283), - [aux_sym_command_repeat1] = STATE(68), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(85), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(87), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_typeset] = ACTIONS(97), - [anon_sym_export] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_local] = ACTIONS(97), - [anon_sym_unset] = ACTIONS(99), - [anon_sym_unsetenv] = ACTIONS(99), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(105), - }, - [448] = { - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(503), - [anon_sym_PIPE_AMP] = ACTIONS(503), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(503), - [anon_sym_BQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(53), - }, - [449] = { - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_RBRACK] = ACTIONS(1882), - [anon_sym_EQ_TILDE] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(553), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(547), - }, - [450] = { - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1882), - [anon_sym_EQ_TILDE] = ACTIONS(581), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_EQ] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(579), - }, - [451] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_PLUS_EQ] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - }, - [452] = { - [aux_sym_concatenation_repeat1] = STATE(881), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(591), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_PIPE_AMP] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [sym__special_characters] = ACTIONS(589), - [anon_sym_DQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR] = ACTIONS(591), - [sym_raw_string] = ACTIONS(589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), - [anon_sym_BQUOTE] = ACTIONS(589), - [anon_sym_LT_LPAREN] = ACTIONS(589), - [anon_sym_GT_LPAREN] = ACTIONS(589), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(591), - [sym_word] = ACTIONS(591), - }, - [453] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(884), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1890), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [454] = { - [sym_string] = STATE(886), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_QMARK] = ACTIONS(1892), - [anon_sym_0] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - }, - [455] = { - [aux_sym_concatenation_repeat1] = STATE(881), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_PIPE_AMP] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym__special_characters] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(609), - [sym_raw_string] = ACTIONS(607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(607), - [anon_sym_LT_LPAREN] = ACTIONS(607), - [anon_sym_GT_LPAREN] = ACTIONS(607), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), - [sym_word] = ACTIONS(609), - }, - [456] = { - [sym_subscript] = STATE(892), - [sym_variable_name] = ACTIONS(1900), - [anon_sym_DOLLAR] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_AT] = ACTIONS(1902), - [anon_sym_QMARK] = ACTIONS(1902), - [anon_sym_0] = ACTIONS(1908), - [anon_sym__] = ACTIONS(1908), - }, - [457] = { - [sym_for_statement] = STATE(893), - [sym_while_statement] = STATE(893), - [sym_if_statement] = STATE(893), - [sym_case_statement] = STATE(893), - [sym_function_definition] = STATE(893), - [sym_subshell] = STATE(893), - [sym_pipeline] = STATE(893), - [sym_list] = STATE(893), - [sym_negated_command] = STATE(893), - [sym_test_command] = STATE(893), - [sym_declaration_command] = STATE(893), - [sym_unset_command] = STATE(893), - [sym_command] = STATE(893), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(894), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [458] = { - [sym_for_statement] = STATE(895), - [sym_while_statement] = STATE(895), - [sym_if_statement] = STATE(895), - [sym_case_statement] = STATE(895), - [sym_function_definition] = STATE(895), - [sym_subshell] = STATE(895), - [sym_pipeline] = STATE(895), - [sym_list] = STATE(895), - [sym_negated_command] = STATE(895), - [sym_test_command] = STATE(895), - [sym_declaration_command] = STATE(895), - [sym_unset_command] = STATE(895), - [sym_command] = STATE(895), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(896), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [459] = { - [sym_for_statement] = STATE(897), - [sym_while_statement] = STATE(897), - [sym_if_statement] = STATE(897), - [sym_case_statement] = STATE(897), - [sym_function_definition] = STATE(897), - [sym_subshell] = STATE(897), - [sym_pipeline] = STATE(897), - [sym_list] = STATE(897), - [sym_negated_command] = STATE(897), - [sym_test_command] = STATE(897), - [sym_declaration_command] = STATE(897), - [sym_unset_command] = STATE(897), - [sym_command] = STATE(897), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(898), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [460] = { - [sym_variable_name] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_PIPE_AMP] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [sym__special_characters] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(621), - [anon_sym_DOLLAR] = ACTIONS(623), - [sym_raw_string] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(621), - [anon_sym_BQUOTE] = ACTIONS(621), - [anon_sym_LT_LPAREN] = ACTIONS(621), - [anon_sym_GT_LPAREN] = ACTIONS(621), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), - [sym_word] = ACTIONS(623), - }, - [461] = { - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_PLUS_EQ] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - }, - [462] = { - [sym_variable_assignment] = STATE(899), - [sym_subscript] = STATE(461), - [sym_concatenation] = STATE(899), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_declaration_command_repeat1] = STATE(899), - [sym_variable_name] = ACTIONS(817), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_RPAREN] = ACTIONS(627), - [anon_sym_PIPE_AMP] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [sym__special_characters] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(823), - [sym_raw_string] = ACTIONS(825), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_LT_LPAREN] = ACTIONS(833), - [anon_sym_GT_LPAREN] = ACTIONS(833), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(835), - [sym_word] = ACTIONS(837), - }, - [463] = { - [aux_sym_concatenation_repeat1] = STATE(901), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_PIPE_AMP] = ACTIONS(633), - [anon_sym_AMP_AMP] = ACTIONS(633), - [anon_sym_PIPE_PIPE] = ACTIONS(633), - [sym__special_characters] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(631), - [sym_raw_string] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(633), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(633), - [anon_sym_BQUOTE] = ACTIONS(633), - [anon_sym_LT_LPAREN] = ACTIONS(633), - [anon_sym_GT_LPAREN] = ACTIONS(633), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(631), - [sym_word] = ACTIONS(631), - }, - [464] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(904), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1914), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [465] = { - [sym_string] = STATE(906), - [anon_sym_DQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1916), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1920), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_AT] = ACTIONS(1916), - [anon_sym_QMARK] = ACTIONS(1916), - [anon_sym_0] = ACTIONS(1922), - [anon_sym__] = ACTIONS(1922), - }, - [466] = { - [aux_sym_concatenation_repeat1] = STATE(901), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_PIPE_AMP] = ACTIONS(651), - [anon_sym_AMP_AMP] = ACTIONS(651), - [anon_sym_PIPE_PIPE] = ACTIONS(651), - [sym__special_characters] = ACTIONS(651), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_DOLLAR] = ACTIONS(649), - [sym_raw_string] = ACTIONS(651), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(651), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(651), - [anon_sym_BQUOTE] = ACTIONS(651), - [anon_sym_LT_LPAREN] = ACTIONS(651), - [anon_sym_GT_LPAREN] = ACTIONS(651), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), - [sym_word] = ACTIONS(649), - }, - [467] = { - [sym_subscript] = STATE(912), - [sym_variable_name] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [anon_sym_POUND] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1926), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_AT] = ACTIONS(1926), - [anon_sym_QMARK] = ACTIONS(1926), - [anon_sym_0] = ACTIONS(1932), - [anon_sym__] = ACTIONS(1932), - }, - [468] = { - [sym_for_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_case_statement] = STATE(913), - [sym_function_definition] = STATE(913), - [sym_subshell] = STATE(913), - [sym_pipeline] = STATE(913), - [sym_list] = STATE(913), - [sym_negated_command] = STATE(913), - [sym_test_command] = STATE(913), - [sym_declaration_command] = STATE(913), - [sym_unset_command] = STATE(913), - [sym_command] = STATE(913), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(914), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [469] = { - [sym_for_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_case_statement] = STATE(915), - [sym_function_definition] = STATE(915), - [sym_subshell] = STATE(915), - [sym_pipeline] = STATE(915), - [sym_list] = STATE(915), - [sym_negated_command] = STATE(915), - [sym_test_command] = STATE(915), - [sym_declaration_command] = STATE(915), - [sym_unset_command] = STATE(915), - [sym_command] = STATE(915), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(916), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [470] = { - [sym_for_statement] = STATE(917), - [sym_while_statement] = STATE(917), - [sym_if_statement] = STATE(917), - [sym_case_statement] = STATE(917), - [sym_function_definition] = STATE(917), - [sym_subshell] = STATE(917), - [sym_pipeline] = STATE(917), - [sym_list] = STATE(917), - [sym_negated_command] = STATE(917), - [sym_test_command] = STATE(917), - [sym_declaration_command] = STATE(917), - [sym_unset_command] = STATE(917), - [sym_command] = STATE(917), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(918), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [471] = { - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(665), - [anon_sym_PIPE_AMP] = ACTIONS(665), - [anon_sym_AMP_AMP] = ACTIONS(665), - [anon_sym_PIPE_PIPE] = ACTIONS(665), - [sym__special_characters] = ACTIONS(665), - [anon_sym_DQUOTE] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(663), - [sym_raw_string] = ACTIONS(665), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(665), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), - [anon_sym_BQUOTE] = ACTIONS(665), - [anon_sym_LT_LPAREN] = ACTIONS(665), - [anon_sym_GT_LPAREN] = ACTIONS(665), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(663), - [sym_word] = ACTIONS(663), - }, - [472] = { - [sym_concatenation] = STATE(919), - [sym_string] = STATE(466), - [sym_simple_expansion] = STATE(466), - [sym_string_expansion] = STATE(466), - [sym_expansion] = STATE(466), - [sym_command_substitution] = STATE(466), - [sym_process_substitution] = STATE(466), - [aux_sym_unset_command_repeat1] = STATE(919), - [anon_sym_PIPE] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(669), - [anon_sym_PIPE_AMP] = ACTIONS(669), - [anon_sym_AMP_AMP] = ACTIONS(669), - [anon_sym_PIPE_PIPE] = ACTIONS(669), - [sym__special_characters] = ACTIONS(839), - [anon_sym_DQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(843), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(851), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), - [sym_word] = ACTIONS(857), - }, - [473] = { - [sym_string] = STATE(920), - [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__special_characters] = ACTIONS(1934), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(1934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1934), - }, - [474] = { - [aux_sym_concatenation_repeat1] = STATE(921), - [sym__simple_heredoc_body] = ACTIONS(705), - [sym__heredoc_body_beginning] = ACTIONS(705), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_EQ_TILDE] = ACTIONS(707), - [anon_sym_EQ_EQ] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(705), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(705), - [anon_sym_LT_AMP] = ACTIONS(705), - [anon_sym_GT_AMP] = ACTIONS(705), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_LT_LT_DASH] = ACTIONS(705), - [anon_sym_LT_LT_LT] = ACTIONS(705), - [sym__special_characters] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LT_LPAREN] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(707), - }, - [475] = { - [sym__simple_heredoc_body] = ACTIONS(709), - [sym__heredoc_body_beginning] = ACTIONS(709), - [sym_file_descriptor] = ACTIONS(709), - [sym__concat] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_PIPE_AMP] = ACTIONS(709), - [anon_sym_AMP_AMP] = ACTIONS(709), - [anon_sym_PIPE_PIPE] = ACTIONS(709), - [anon_sym_EQ_TILDE] = ACTIONS(711), - [anon_sym_EQ_EQ] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_GT] = ACTIONS(711), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_AMP_GT] = ACTIONS(711), - [anon_sym_AMP_GT_GT] = ACTIONS(709), - [anon_sym_LT_AMP] = ACTIONS(709), - [anon_sym_GT_AMP] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(711), - [anon_sym_LT_LT_DASH] = ACTIONS(709), - [anon_sym_LT_LT_LT] = ACTIONS(709), - [sym__special_characters] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(709), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(709), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(709), - [anon_sym_BQUOTE] = ACTIONS(709), - [anon_sym_LT_LPAREN] = ACTIONS(709), - [anon_sym_GT_LPAREN] = ACTIONS(709), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(711), - }, - [476] = { - [anon_sym_DQUOTE] = ACTIONS(1936), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [477] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(1936), - [anon_sym_DOLLAR] = ACTIONS(1938), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [478] = { - [sym__simple_heredoc_body] = ACTIONS(741), - [sym__heredoc_body_beginning] = ACTIONS(741), - [sym_file_descriptor] = ACTIONS(741), - [sym__concat] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_PIPE_AMP] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(741), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(743), - [anon_sym_EQ_EQ] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_AMP_GT] = ACTIONS(743), - [anon_sym_AMP_GT_GT] = ACTIONS(741), - [anon_sym_LT_AMP] = ACTIONS(741), - [anon_sym_GT_AMP] = ACTIONS(741), - [anon_sym_LT_LT] = ACTIONS(743), - [anon_sym_LT_LT_DASH] = ACTIONS(741), - [anon_sym_LT_LT_LT] = ACTIONS(741), - [sym__special_characters] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), - [anon_sym_BQUOTE] = ACTIONS(741), - [anon_sym_LT_LPAREN] = ACTIONS(741), - [anon_sym_GT_LPAREN] = ACTIONS(741), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(743), - }, - [479] = { - [sym__simple_heredoc_body] = ACTIONS(745), - [sym__heredoc_body_beginning] = ACTIONS(745), - [sym_file_descriptor] = ACTIONS(745), - [sym__concat] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE_AMP] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(745), - [anon_sym_EQ_TILDE] = ACTIONS(747), - [anon_sym_EQ_EQ] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_GT] = ACTIONS(745), - [anon_sym_AMP_GT] = ACTIONS(747), - [anon_sym_AMP_GT_GT] = ACTIONS(745), - [anon_sym_LT_AMP] = ACTIONS(745), - [anon_sym_GT_AMP] = ACTIONS(745), - [anon_sym_LT_LT] = ACTIONS(747), - [anon_sym_LT_LT_DASH] = ACTIONS(745), - [anon_sym_LT_LT_LT] = ACTIONS(745), - [sym__special_characters] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(747), - [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(53), - [sym_word] = ACTIONS(747), - }, - [480] = { - [sym__simple_heredoc_body] = ACTIONS(749), - [sym__heredoc_body_beginning] = ACTIONS(749), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(751), - [anon_sym_EQ_EQ] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [sym__special_characters] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [anon_sym_LT_LPAREN] = ACTIONS(749), - [anon_sym_GT_LPAREN] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(751), - }, - [481] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(1940), - [sym_comment] = ACTIONS(53), - }, - [482] = { - [sym_concatenation] = STATE(927), - [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), - [aux_sym_expansion_repeat1] = STATE(927), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1944), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1948), - [anon_sym_COLON] = ACTIONS(1944), - [anon_sym_COLON_QMARK] = ACTIONS(1944), - [anon_sym_COLON_DASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [483] = { - [sym_subscript] = STATE(931), - [sym_variable_name] = ACTIONS(1950), - [anon_sym_DOLLAR] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1952), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1952), - [anon_sym_AT] = ACTIONS(1952), - [anon_sym_QMARK] = ACTIONS(1952), - [anon_sym_0] = ACTIONS(1956), - [anon_sym__] = ACTIONS(1956), - }, - [484] = { - [sym_concatenation] = STATE(934), - [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), - [aux_sym_expansion_repeat1] = STATE(934), - [anon_sym_RBRACE] = ACTIONS(1958), - [anon_sym_EQ] = ACTIONS(1960), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(1960), - [anon_sym_COLON_QMARK] = ACTIONS(1960), - [anon_sym_COLON_DASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [485] = { - [sym_concatenation] = STATE(937), - [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), - [aux_sym_expansion_repeat1] = STATE(937), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(1968), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_COLON] = ACTIONS(1968), - [anon_sym_COLON_QMARK] = ACTIONS(1968), - [anon_sym_COLON_DASH] = ACTIONS(1968), - [anon_sym_PERCENT] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [486] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [487] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [488] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(1974), - [sym_comment] = ACTIONS(53), - }, - [489] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [490] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [491] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [492] = { - [anon_sym_RPAREN] = ACTIONS(1978), - [sym_comment] = ACTIONS(53), - }, - [493] = { - [sym_for_statement] = STATE(941), - [sym_while_statement] = STATE(941), - [sym_if_statement] = STATE(941), - [sym_case_statement] = STATE(941), - [sym_function_definition] = STATE(941), - [sym_subshell] = STATE(941), - [sym_pipeline] = STATE(941), - [sym_list] = STATE(941), - [sym_negated_command] = STATE(941), - [sym_test_command] = STATE(941), - [sym_declaration_command] = STATE(941), - [sym_unset_command] = STATE(941), - [sym_command] = STATE(941), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(942), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [494] = { - [sym__simple_heredoc_body] = ACTIONS(1980), - [sym__heredoc_body_beginning] = ACTIONS(1980), - [sym_file_descriptor] = ACTIONS(1980), - [sym__concat] = ACTIONS(1980), - [anon_sym_esac] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1982), - [anon_sym_PIPE_AMP] = ACTIONS(1982), - [anon_sym_AMP_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [anon_sym_EQ_TILDE] = ACTIONS(1982), - [anon_sym_EQ_EQ] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_GT] = ACTIONS(1982), - [anon_sym_GT_GT] = ACTIONS(1982), - [anon_sym_AMP_GT] = ACTIONS(1982), - [anon_sym_AMP_GT_GT] = ACTIONS(1982), - [anon_sym_LT_AMP] = ACTIONS(1982), - [anon_sym_GT_AMP] = ACTIONS(1982), - [anon_sym_LT_LT] = ACTIONS(1982), - [anon_sym_LT_LT_DASH] = ACTIONS(1982), - [anon_sym_LT_LT_LT] = ACTIONS(1982), - [sym__special_characters] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), - [anon_sym_BQUOTE] = ACTIONS(1982), - [anon_sym_LT_LPAREN] = ACTIONS(1982), - [anon_sym_GT_LPAREN] = ACTIONS(1982), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [495] = { - [sym_for_statement] = STATE(943), - [sym_while_statement] = STATE(943), - [sym_if_statement] = STATE(943), - [sym_case_statement] = STATE(943), - [sym_function_definition] = STATE(943), - [sym_subshell] = STATE(943), - [sym_pipeline] = STATE(943), - [sym_list] = STATE(943), - [sym_negated_command] = STATE(943), - [sym_test_command] = STATE(943), - [sym_declaration_command] = STATE(943), - [sym_unset_command] = STATE(943), - [sym_command] = STATE(943), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(944), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [496] = { - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_PIPE_AMP] = ACTIONS(973), - [anon_sym_AMP_AMP] = ACTIONS(973), - [anon_sym_PIPE_PIPE] = ACTIONS(973), - [anon_sym_BQUOTE] = ACTIONS(973), - [sym_comment] = ACTIONS(53), - }, - [497] = { - [sym_simple_expansion] = STATE(946), - [sym_expansion] = STATE(946), - [aux_sym_heredoc_body_repeat1] = STATE(946), - [sym__heredoc_body_middle] = ACTIONS(1984), - [sym__heredoc_body_end] = ACTIONS(1986), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), - [sym_comment] = ACTIONS(53), - }, - [498] = { - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_GT] = ACTIONS(1988), - [anon_sym_GT_GT] = ACTIONS(1990), - [anon_sym_AMP_GT] = ACTIONS(1988), - [anon_sym_AMP_GT_GT] = ACTIONS(1990), - [anon_sym_LT_AMP] = ACTIONS(1990), - [anon_sym_GT_AMP] = ACTIONS(1990), - [sym_comment] = ACTIONS(53), - }, - [499] = { - [sym_concatenation] = STATE(950), - [sym_string] = STATE(949), - [sym_simple_expansion] = STATE(949), - [sym_string_expansion] = STATE(949), - [sym_expansion] = STATE(949), - [sym_command_substitution] = STATE(949), - [sym_process_substitution] = STATE(949), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(1996), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), - [anon_sym_BQUOTE] = ACTIONS(2002), - [anon_sym_LT_LPAREN] = ACTIONS(2004), - [anon_sym_GT_LPAREN] = ACTIONS(2004), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1996), - [sym_regex] = ACTIONS(2006), - }, - [500] = { - [sym_concatenation] = STATE(953), - [sym_string] = STATE(952), - [sym_simple_expansion] = STATE(952), - [sym_string_expansion] = STATE(952), - [sym_expansion] = STATE(952), - [sym_command_substitution] = STATE(952), - [sym_process_substitution] = STATE(952), - [sym__special_characters] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(2010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2010), - }, - [501] = { - [sym_heredoc_start] = ACTIONS(2012), - [sym_comment] = ACTIONS(53), - }, - [502] = { - [sym_concatenation] = STATE(957), - [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(2014), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(2016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2016), - }, - [503] = { - [aux_sym_concatenation_repeat1] = STATE(474), - [sym__simple_heredoc_body] = ACTIONS(1003), - [sym__heredoc_body_beginning] = ACTIONS(1003), - [sym_file_descriptor] = ACTIONS(1003), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1003), - [anon_sym_PIPE_AMP] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [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(1003), - [anon_sym_DQUOTE] = ACTIONS(1003), - [anon_sym_DOLLAR] = ACTIONS(1005), - [sym_raw_string] = ACTIONS(1003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1003), - [anon_sym_BQUOTE] = ACTIONS(1003), - [anon_sym_LT_LPAREN] = ACTIONS(1003), - [anon_sym_GT_LPAREN] = ACTIONS(1003), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1005), - }, - [504] = { - [aux_sym_concatenation_repeat1] = STATE(474), - [sym__simple_heredoc_body] = ACTIONS(1007), - [sym__heredoc_body_beginning] = ACTIONS(1007), - [sym_file_descriptor] = ACTIONS(1007), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_PIPE_AMP] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1007), - [anon_sym_PIPE_PIPE] = ACTIONS(1007), - [anon_sym_EQ_TILDE] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1009), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_AMP_GT] = ACTIONS(1009), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [anon_sym_LT_LT] = ACTIONS(1009), - [anon_sym_LT_LT_DASH] = ACTIONS(1007), - [anon_sym_LT_LT_LT] = ACTIONS(1007), - [sym__special_characters] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1009), - [sym_raw_string] = ACTIONS(1007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1007), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1007), - [anon_sym_BQUOTE] = ACTIONS(1007), - [anon_sym_LT_LPAREN] = ACTIONS(1007), - [anon_sym_GT_LPAREN] = ACTIONS(1007), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1009), - }, - [505] = { - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_PIPE_AMP] = ACTIONS(1013), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_BQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(53), - }, - [506] = { - [sym_file_redirect] = STATE(959), - [sym_heredoc_redirect] = STATE(959), - [sym_heredoc_body] = STATE(958), - [sym_herestring_redirect] = STATE(959), - [aux_sym_while_statement_repeat1] = STATE(959), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_PIPE_AMP] = ACTIONS(1013), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(901), - [anon_sym_AMP_GT_GT] = ACTIONS(903), - [anon_sym_LT_AMP] = ACTIONS(903), - [anon_sym_GT_AMP] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(909), - [sym_comment] = ACTIONS(53), - }, - [507] = { - [sym_file_redirect] = STATE(960), - [sym_heredoc_redirect] = STATE(960), - [sym_heredoc_body] = STATE(958), - [sym_herestring_redirect] = STATE(960), - [sym_concatenation] = STATE(961), - [sym_string] = STATE(504), - [sym_simple_expansion] = STATE(504), - [sym_string_expansion] = STATE(504), - [sym_expansion] = STATE(504), - [sym_command_substitution] = STATE(504), - [sym_process_substitution] = STATE(504), - [aux_sym_while_statement_repeat1] = STATE(960), - [aux_sym_command_repeat2] = STATE(961), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_PIPE_AMP] = ACTIONS(1013), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_EQ_TILDE] = ACTIONS(899), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(901), - [anon_sym_AMP_GT_GT] = ACTIONS(903), - [anon_sym_LT_AMP] = ACTIONS(903), - [anon_sym_GT_AMP] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(909), - [sym__special_characters] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(915), - }, - [508] = { - [sym_file_redirect] = STATE(960), - [sym_heredoc_redirect] = STATE(960), - [sym_heredoc_body] = STATE(958), - [sym_herestring_redirect] = STATE(960), - [sym_concatenation] = STATE(962), - [sym_string] = STATE(504), - [sym_simple_expansion] = STATE(504), - [sym_string_expansion] = STATE(504), - [sym_expansion] = STATE(504), - [sym_command_substitution] = STATE(504), - [sym_process_substitution] = STATE(504), - [aux_sym_while_statement_repeat1] = STATE(960), - [aux_sym_command_repeat2] = STATE(962), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_PIPE_AMP] = ACTIONS(1013), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_EQ_TILDE] = ACTIONS(899), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(901), - [anon_sym_AMP_GT_GT] = ACTIONS(903), - [anon_sym_LT_AMP] = ACTIONS(903), - [anon_sym_GT_AMP] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(909), - [sym__special_characters] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(915), - }, - [509] = { - [sym_concatenation] = STATE(672), - [sym_string] = STATE(964), - [sym_array] = STATE(672), - [sym_simple_expansion] = STATE(964), - [sym_string_expansion] = STATE(964), - [sym_expansion] = STATE(964), - [sym_command_substitution] = STATE(964), - [sym_process_substitution] = STATE(964), - [sym__empty_value] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1301), - [sym__special_characters] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(2020), - [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(53), - [sym_word] = ACTIONS(2020), - }, - [510] = { - [sym_do_group] = STATE(965), - [anon_sym_do] = ACTIONS(1856), - [sym_comment] = ACTIONS(53), - }, - [511] = { - [sym_compound_statement] = STATE(967), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(1874), - [sym_comment] = ACTIONS(53), - }, - [512] = { - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_RBRACK] = ACTIONS(2024), - [anon_sym_EQ_TILDE] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(553), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(547), - }, - [513] = { - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2024), - [anon_sym_EQ_TILDE] = ACTIONS(581), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_EQ] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(579), - }, - [514] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(2026), - [anon_sym_PLUS_EQ] = ACTIONS(2026), - [sym_comment] = ACTIONS(53), - }, - [515] = { - [aux_sym_concatenation_repeat1] = STATE(970), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(591), - [anon_sym_PIPE_AMP] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [sym__special_characters] = ACTIONS(589), - [anon_sym_DQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR] = ACTIONS(591), - [sym_raw_string] = ACTIONS(589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), - [anon_sym_BQUOTE] = ACTIONS(589), - [anon_sym_LT_LPAREN] = ACTIONS(589), - [anon_sym_GT_LPAREN] = ACTIONS(589), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(591), - [sym_word] = ACTIONS(591), - }, - [516] = { - [aux_sym_concatenation_repeat1] = STATE(970), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_PIPE_AMP] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym__special_characters] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(609), - [sym_raw_string] = ACTIONS(607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(607), - [anon_sym_LT_LPAREN] = ACTIONS(607), - [anon_sym_GT_LPAREN] = ACTIONS(607), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), - [sym_word] = ACTIONS(609), - }, - [517] = { - [anon_sym_EQ] = ACTIONS(2026), - [anon_sym_PLUS_EQ] = ACTIONS(2026), - [sym_comment] = ACTIONS(53), - }, - [518] = { - [sym_variable_assignment] = STATE(971), - [sym_subscript] = STATE(517), - [sym_concatenation] = STATE(971), - [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), - [aux_sym_declaration_command_repeat1] = STATE(971), - [sym_variable_name] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_PIPE_AMP] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [sym__special_characters] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(823), - [sym_raw_string] = ACTIONS(927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_LT_LPAREN] = ACTIONS(833), - [anon_sym_GT_LPAREN] = ACTIONS(833), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(835), - [sym_word] = ACTIONS(929), - }, - [519] = { - [aux_sym_concatenation_repeat1] = STATE(972), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_PIPE_AMP] = ACTIONS(633), - [anon_sym_AMP_AMP] = ACTIONS(633), - [anon_sym_PIPE_PIPE] = ACTIONS(633), - [sym__special_characters] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(631), - [sym_raw_string] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(633), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(633), - [anon_sym_BQUOTE] = ACTIONS(633), - [anon_sym_LT_LPAREN] = ACTIONS(633), - [anon_sym_GT_LPAREN] = ACTIONS(633), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(631), - [sym_word] = ACTIONS(631), - }, - [520] = { - [aux_sym_concatenation_repeat1] = STATE(972), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(649), - [anon_sym_PIPE_AMP] = ACTIONS(651), - [anon_sym_AMP_AMP] = ACTIONS(651), - [anon_sym_PIPE_PIPE] = ACTIONS(651), - [sym__special_characters] = ACTIONS(651), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_DOLLAR] = ACTIONS(649), - [sym_raw_string] = ACTIONS(651), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(651), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(651), - [anon_sym_BQUOTE] = ACTIONS(651), - [anon_sym_LT_LPAREN] = ACTIONS(651), - [anon_sym_GT_LPAREN] = ACTIONS(651), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), - [sym_word] = ACTIONS(649), - }, - [521] = { - [sym_concatenation] = STATE(973), - [sym_string] = STATE(520), - [sym_simple_expansion] = STATE(520), - [sym_string_expansion] = STATE(520), - [sym_expansion] = STATE(520), - [sym_command_substitution] = STATE(520), - [sym_process_substitution] = STATE(520), - [aux_sym_unset_command_repeat1] = STATE(973), - [anon_sym_PIPE] = ACTIONS(667), - [anon_sym_PIPE_AMP] = ACTIONS(669), - [anon_sym_AMP_AMP] = ACTIONS(669), - [anon_sym_PIPE_PIPE] = ACTIONS(669), - [sym__special_characters] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(843), - [sym_raw_string] = ACTIONS(933), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(669), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), - [sym_word] = ACTIONS(935), - }, - [522] = { - [aux_sym_concatenation_repeat1] = STATE(974), - [sym__simple_heredoc_body] = ACTIONS(705), - [sym__heredoc_body_beginning] = ACTIONS(705), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_EQ_TILDE] = ACTIONS(707), - [anon_sym_EQ_EQ] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(705), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(705), - [anon_sym_LT_AMP] = ACTIONS(705), - [anon_sym_GT_AMP] = ACTIONS(705), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_LT_LT_DASH] = ACTIONS(705), - [anon_sym_LT_LT_LT] = ACTIONS(705), - [sym__special_characters] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LT_LPAREN] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(707), - }, - [523] = { - [anon_sym_RPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(53), - }, - [524] = { - [sym_for_statement] = STATE(941), - [sym_while_statement] = STATE(941), - [sym_if_statement] = STATE(941), - [sym_case_statement] = STATE(941), - [sym_function_definition] = STATE(941), - [sym_subshell] = STATE(941), - [sym_pipeline] = STATE(941), - [sym_list] = STATE(941), - [sym_negated_command] = STATE(941), - [sym_test_command] = STATE(941), - [sym_declaration_command] = STATE(941), - [sym_unset_command] = STATE(941), - [sym_command] = STATE(941), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(976), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [525] = { - [sym_for_statement] = STATE(977), - [sym_while_statement] = STATE(977), - [sym_if_statement] = STATE(977), - [sym_case_statement] = STATE(977), - [sym_function_definition] = STATE(977), - [sym_subshell] = STATE(977), - [sym_pipeline] = STATE(977), - [sym_list] = STATE(977), - [sym_negated_command] = STATE(977), - [sym_test_command] = STATE(977), - [sym_declaration_command] = STATE(977), - [sym_unset_command] = STATE(977), - [sym_command] = STATE(977), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(978), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [526] = { - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_GT] = ACTIONS(2030), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_AMP_GT] = ACTIONS(2030), - [anon_sym_AMP_GT_GT] = ACTIONS(2032), - [anon_sym_LT_AMP] = ACTIONS(2032), - [anon_sym_GT_AMP] = ACTIONS(2032), - [sym_comment] = ACTIONS(53), - }, - [527] = { - [sym_concatenation] = STATE(950), - [sym_string] = STATE(981), - [sym_simple_expansion] = STATE(981), - [sym_string_expansion] = STATE(981), - [sym_expansion] = STATE(981), - [sym_command_substitution] = STATE(981), - [sym_process_substitution] = STATE(981), - [sym__special_characters] = ACTIONS(2034), - [anon_sym_DQUOTE] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(2036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), - [anon_sym_BQUOTE] = ACTIONS(2002), - [anon_sym_LT_LPAREN] = ACTIONS(2004), - [anon_sym_GT_LPAREN] = ACTIONS(2004), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2036), - [sym_regex] = ACTIONS(2006), - }, - [528] = { - [sym_concatenation] = STATE(953), - [sym_string] = STATE(983), - [sym_simple_expansion] = STATE(983), - [sym_string_expansion] = STATE(983), - [sym_expansion] = STATE(983), - [sym_command_substitution] = STATE(983), - [sym_process_substitution] = STATE(983), - [sym__special_characters] = ACTIONS(2038), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(2040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2040), - }, - [529] = { - [sym_concatenation] = STATE(957), - [sym_string] = STATE(985), - [sym_simple_expansion] = STATE(985), - [sym_string_expansion] = STATE(985), - [sym_expansion] = STATE(985), - [sym_command_substitution] = STATE(985), - [sym_process_substitution] = STATE(985), - [sym__special_characters] = ACTIONS(2042), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(2044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2044), - }, - [530] = { - [aux_sym_concatenation_repeat1] = STATE(522), - [sym__simple_heredoc_body] = ACTIONS(1003), - [sym__heredoc_body_beginning] = ACTIONS(1003), - [sym_file_descriptor] = ACTIONS(1003), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_PIPE_AMP] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [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(1003), - [anon_sym_DQUOTE] = ACTIONS(1003), - [anon_sym_DOLLAR] = ACTIONS(1005), - [sym_raw_string] = ACTIONS(1003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1003), - [anon_sym_BQUOTE] = ACTIONS(1003), - [anon_sym_LT_LPAREN] = ACTIONS(1003), - [anon_sym_GT_LPAREN] = ACTIONS(1003), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1005), - }, - [531] = { - [aux_sym_concatenation_repeat1] = STATE(522), - [sym__simple_heredoc_body] = ACTIONS(1007), - [sym__heredoc_body_beginning] = ACTIONS(1007), - [sym_file_descriptor] = ACTIONS(1007), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(1009), - [anon_sym_PIPE_AMP] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1007), - [anon_sym_PIPE_PIPE] = ACTIONS(1007), - [anon_sym_EQ_TILDE] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1009), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_AMP_GT] = ACTIONS(1009), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [anon_sym_LT_LT] = ACTIONS(1009), - [anon_sym_LT_LT_DASH] = ACTIONS(1007), - [anon_sym_LT_LT_LT] = ACTIONS(1007), - [sym__special_characters] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1009), - [sym_raw_string] = ACTIONS(1007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1007), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1007), - [anon_sym_BQUOTE] = ACTIONS(1007), - [anon_sym_LT_LPAREN] = ACTIONS(1007), - [anon_sym_GT_LPAREN] = ACTIONS(1007), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1009), - }, - [532] = { - [sym_file_redirect] = STATE(986), - [sym_heredoc_redirect] = STATE(986), - [sym_heredoc_body] = STATE(958), - [sym_herestring_redirect] = STATE(986), - [aux_sym_while_statement_repeat1] = STATE(986), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1013), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(949), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(53), - }, - [533] = { - [sym_file_redirect] = STATE(987), - [sym_heredoc_redirect] = STATE(987), - [sym_heredoc_body] = STATE(958), - [sym_herestring_redirect] = STATE(987), - [sym_concatenation] = STATE(988), - [sym_string] = STATE(531), - [sym_simple_expansion] = STATE(531), - [sym_string_expansion] = STATE(531), - [sym_expansion] = STATE(531), - [sym_command_substitution] = STATE(531), - [sym_process_substitution] = STATE(531), - [aux_sym_while_statement_repeat1] = STATE(987), - [aux_sym_command_repeat2] = STATE(988), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1013), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(949), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [sym__special_characters] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(1013), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(959), - }, - [534] = { - [sym_file_redirect] = STATE(987), - [sym_heredoc_redirect] = STATE(987), - [sym_heredoc_body] = STATE(958), - [sym_herestring_redirect] = STATE(987), - [sym_concatenation] = STATE(989), - [sym_string] = STATE(531), - [sym_simple_expansion] = STATE(531), - [sym_string_expansion] = STATE(531), - [sym_expansion] = STATE(531), - [sym_command_substitution] = STATE(531), - [sym_process_substitution] = STATE(531), - [aux_sym_while_statement_repeat1] = STATE(987), - [aux_sym_command_repeat2] = STATE(989), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1013), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(949), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [sym__special_characters] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(1013), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(959), - }, - [535] = { - [sym__simple_heredoc_body] = ACTIONS(2046), - [sym__heredoc_body_beginning] = ACTIONS(2046), - [sym_file_descriptor] = ACTIONS(2046), - [sym__concat] = ACTIONS(2046), - [anon_sym_esac] = ACTIONS(2048), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2048), - [anon_sym_SEMI_SEMI] = ACTIONS(2048), - [anon_sym_PIPE_AMP] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2048), - [anon_sym_LT] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_AMP_GT] = ACTIONS(2048), - [anon_sym_AMP_GT_GT] = ACTIONS(2048), - [anon_sym_LT_AMP] = ACTIONS(2048), - [anon_sym_GT_AMP] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_LT_LT_DASH] = ACTIONS(2048), - [anon_sym_LT_LT_LT] = ACTIONS(2048), - [sym__special_characters] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2048), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2048), - [anon_sym_BQUOTE] = ACTIONS(2048), - [anon_sym_LT_LPAREN] = ACTIONS(2048), - [anon_sym_GT_LPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LF] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2048), - }, - [536] = { - [sym_compound_statement] = STATE(990), - [anon_sym_LBRACE] = ACTIONS(457), - [sym_comment] = ACTIONS(53), - }, - [537] = { - [anon_sym_esac] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_RPAREN] = ACTIONS(2050), - [anon_sym_SEMI_SEMI] = ACTIONS(2050), - [anon_sym_PIPE_AMP] = ACTIONS(2050), - [anon_sym_AMP_AMP] = ACTIONS(2050), - [anon_sym_PIPE_PIPE] = ACTIONS(2050), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_LF] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2050), - }, - [538] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_RPAREN] = ACTIONS(2050), - [anon_sym_SEMI_SEMI] = ACTIONS(2050), - [anon_sym_PIPE_AMP] = ACTIONS(2050), - [anon_sym_AMP_AMP] = ACTIONS(2050), - [anon_sym_PIPE_PIPE] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_LF] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2050), - }, - [539] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2054), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(2054), - [anon_sym_PIPE_PIPE] = ACTIONS(2054), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_LF] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2054), - }, - [540] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2054), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(2054), - [anon_sym_PIPE_PIPE] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_LF] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2054), - }, - [541] = { - [anon_sym_esac] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_RPAREN] = ACTIONS(2058), - [anon_sym_SEMI_SEMI] = ACTIONS(2058), - [anon_sym_PIPE_AMP] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LF] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2058), - }, - [542] = { - [anon_sym_DOLLAR] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2064), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_AT] = ACTIONS(2062), - [anon_sym_QMARK] = ACTIONS(2062), - [anon_sym_0] = ACTIONS(2066), - [anon_sym__] = ACTIONS(2066), - }, - [543] = { - [sym_subscript] = STATE(997), - [sym_variable_name] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_AT] = ACTIONS(2070), - [anon_sym_QMARK] = ACTIONS(2070), - [anon_sym_0] = ACTIONS(2076), - [anon_sym__] = ACTIONS(2076), - }, - [544] = { - [sym_simple_expansion] = STATE(999), - [sym_expansion] = STATE(999), - [aux_sym_heredoc_body_repeat1] = STATE(999), - [sym__heredoc_body_middle] = ACTIONS(2078), - [sym__heredoc_body_end] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), - [sym_comment] = ACTIONS(53), - }, - [545] = { - [sym_concatenation] = STATE(1002), - [sym_string] = STATE(1001), - [sym_simple_expansion] = STATE(1001), - [sym_string_expansion] = STATE(1001), - [sym_expansion] = STATE(1001), - [sym_command_substitution] = STATE(1001), - [sym_process_substitution] = STATE(1001), - [sym__special_characters] = ACTIONS(2082), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2084), - }, - [546] = { - [aux_sym_concatenation_repeat1] = STATE(126), - [sym__simple_heredoc_body] = ACTIONS(2086), - [sym__heredoc_body_beginning] = ACTIONS(2086), - [sym_file_descriptor] = ACTIONS(2086), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_SEMI_SEMI] = ACTIONS(2088), - [anon_sym_PIPE_AMP] = ACTIONS(2088), - [anon_sym_AMP_AMP] = ACTIONS(2088), - [anon_sym_PIPE_PIPE] = ACTIONS(2088), - [anon_sym_EQ_TILDE] = ACTIONS(2088), - [anon_sym_EQ_EQ] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_GT] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(2088), - [anon_sym_AMP_GT] = ACTIONS(2088), - [anon_sym_AMP_GT_GT] = ACTIONS(2088), - [anon_sym_LT_AMP] = ACTIONS(2088), - [anon_sym_GT_AMP] = ACTIONS(2088), - [anon_sym_LT_LT] = ACTIONS(2088), - [anon_sym_LT_LT_DASH] = ACTIONS(2088), - [anon_sym_LT_LT_LT] = ACTIONS(2088), - [sym__special_characters] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2088), - [sym_raw_string] = ACTIONS(2088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2088), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2088), - [anon_sym_BQUOTE] = ACTIONS(2088), - [anon_sym_LT_LPAREN] = ACTIONS(2088), - [anon_sym_GT_LPAREN] = ACTIONS(2088), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LF] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2088), - }, - [547] = { - [aux_sym_concatenation_repeat1] = STATE(126), - [sym__simple_heredoc_body] = ACTIONS(2090), - [sym__heredoc_body_beginning] = ACTIONS(2090), - [sym_file_descriptor] = ACTIONS(2090), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_SEMI_SEMI] = ACTIONS(2092), - [anon_sym_PIPE_AMP] = ACTIONS(2092), - [anon_sym_AMP_AMP] = ACTIONS(2092), - [anon_sym_PIPE_PIPE] = ACTIONS(2092), - [anon_sym_EQ_TILDE] = ACTIONS(2092), - [anon_sym_EQ_EQ] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2092), - [anon_sym_AMP_GT] = ACTIONS(2092), - [anon_sym_AMP_GT_GT] = ACTIONS(2092), - [anon_sym_LT_AMP] = ACTIONS(2092), - [anon_sym_GT_AMP] = ACTIONS(2092), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2092), - [anon_sym_LT_LT_LT] = ACTIONS(2092), - [sym__special_characters] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [anon_sym_DOLLAR] = ACTIONS(2092), - [sym_raw_string] = ACTIONS(2092), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2092), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2092), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LT_LPAREN] = ACTIONS(2092), - [anon_sym_GT_LPAREN] = ACTIONS(2092), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_LF] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2092), - }, - [548] = { - [sym__simple_heredoc_body] = ACTIONS(2090), - [sym__heredoc_body_beginning] = ACTIONS(2090), - [sym_file_descriptor] = ACTIONS(2090), - [anon_sym_esac] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2092), - [anon_sym_SEMI_SEMI] = ACTIONS(2092), - [anon_sym_PIPE_AMP] = ACTIONS(2092), - [anon_sym_AMP_AMP] = ACTIONS(2092), - [anon_sym_PIPE_PIPE] = ACTIONS(2092), - [anon_sym_EQ_TILDE] = ACTIONS(2092), - [anon_sym_EQ_EQ] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2092), - [anon_sym_AMP_GT] = ACTIONS(2092), - [anon_sym_AMP_GT_GT] = ACTIONS(2092), - [anon_sym_LT_AMP] = ACTIONS(2092), - [anon_sym_GT_AMP] = ACTIONS(2092), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2092), - [anon_sym_LT_LT_LT] = ACTIONS(2092), - [sym__special_characters] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [anon_sym_DOLLAR] = ACTIONS(2092), - [sym_raw_string] = ACTIONS(2092), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2092), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2092), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LT_LPAREN] = ACTIONS(2092), - [anon_sym_GT_LPAREN] = ACTIONS(2092), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_LF] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2092), - }, - [549] = { - [aux_sym_concatenation_repeat1] = STATE(1003), - [sym__simple_heredoc_body] = ACTIONS(671), - [sym__heredoc_body_beginning] = ACTIONS(671), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_LT_LT_LT] = ACTIONS(675), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(675), - }, - [550] = { - [aux_sym_concatenation_repeat1] = STATE(1003), - [sym__simple_heredoc_body] = ACTIONS(689), - [sym__heredoc_body_beginning] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_SEMI_SEMI] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(691), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(691), - [anon_sym_LT_AMP] = ACTIONS(691), - [anon_sym_GT_AMP] = ACTIONS(691), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(691), - [anon_sym_LT_LT_LT] = ACTIONS(691), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LF] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), - }, - [551] = { - [sym__simple_heredoc_body] = ACTIONS(689), - [sym__heredoc_body_beginning] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [anon_sym_esac] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(691), - [anon_sym_SEMI_SEMI] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(691), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(691), - [anon_sym_LT_AMP] = ACTIONS(691), - [anon_sym_GT_AMP] = ACTIONS(691), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(691), - [anon_sym_LT_LT_LT] = ACTIONS(691), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LF] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), - }, - [552] = { - [sym__simple_heredoc_body] = ACTIONS(2094), - [sym__heredoc_body_beginning] = ACTIONS(2094), - [sym_file_descriptor] = ACTIONS(2094), - [anon_sym_esac] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2096), - [anon_sym_SEMI_SEMI] = ACTIONS(2096), - [anon_sym_PIPE_AMP] = ACTIONS(2096), - [anon_sym_AMP_AMP] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_AMP_GT] = ACTIONS(2096), - [anon_sym_AMP_GT_GT] = ACTIONS(2096), - [anon_sym_LT_AMP] = ACTIONS(2096), - [anon_sym_GT_AMP] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_LT_LT_DASH] = ACTIONS(2096), - [anon_sym_LT_LT_LT] = ACTIONS(2096), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LF] = ACTIONS(2094), - [anon_sym_AMP] = ACTIONS(2096), - }, - [553] = { - [aux_sym_concatenation_repeat1] = STATE(1003), - [sym__simple_heredoc_body] = ACTIONS(2098), - [sym__heredoc_body_beginning] = ACTIONS(2098), - [sym_file_descriptor] = ACTIONS(2098), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SEMI_SEMI] = ACTIONS(2100), - [anon_sym_PIPE_AMP] = ACTIONS(2100), - [anon_sym_AMP_AMP] = ACTIONS(2100), - [anon_sym_PIPE_PIPE] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2100), - [anon_sym_AMP_GT] = ACTIONS(2100), - [anon_sym_AMP_GT_GT] = ACTIONS(2100), - [anon_sym_LT_AMP] = ACTIONS(2100), - [anon_sym_GT_AMP] = ACTIONS(2100), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_LT_LT_DASH] = ACTIONS(2100), - [anon_sym_LT_LT_LT] = ACTIONS(2100), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_LF] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2100), - }, - [554] = { - [aux_sym_concatenation_repeat1] = STATE(1003), - [sym__simple_heredoc_body] = ACTIONS(2102), - [sym__heredoc_body_beginning] = ACTIONS(2102), - [sym_file_descriptor] = ACTIONS(2102), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_SEMI_SEMI] = ACTIONS(2104), - [anon_sym_PIPE_AMP] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2104), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2104), - [anon_sym_LT_AMP] = ACTIONS(2104), - [anon_sym_GT_AMP] = ACTIONS(2104), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2104), - [anon_sym_LT_LT_LT] = ACTIONS(2104), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_LF] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2104), - }, - [555] = { - [sym__simple_heredoc_body] = ACTIONS(2102), - [sym__heredoc_body_beginning] = ACTIONS(2102), - [sym_file_descriptor] = ACTIONS(2102), - [anon_sym_esac] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_SEMI_SEMI] = ACTIONS(2104), - [anon_sym_PIPE_AMP] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2104), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2104), - [anon_sym_LT_AMP] = ACTIONS(2104), - [anon_sym_GT_AMP] = ACTIONS(2104), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2104), - [anon_sym_LT_LT_LT] = ACTIONS(2104), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_LF] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2104), - }, - [556] = { - [anon_sym_esac] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_RPAREN] = ACTIONS(2106), - [anon_sym_SEMI_SEMI] = ACTIONS(2106), - [anon_sym_PIPE_AMP] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_PIPE_PIPE] = ACTIONS(2106), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2106), - }, - [557] = { - [sym_file_redirect] = STATE(557), - [sym_heredoc_redirect] = STATE(557), - [sym_herestring_redirect] = STATE(557), - [aux_sym_while_statement_repeat1] = STATE(557), - [sym__simple_heredoc_body] = ACTIONS(2110), - [sym__heredoc_body_beginning] = ACTIONS(2110), - [sym_file_descriptor] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_SEMI_SEMI] = ACTIONS(2115), - [anon_sym_PIPE_AMP] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2117), - [anon_sym_GT_GT] = ACTIONS(2117), - [anon_sym_AMP_GT] = ACTIONS(2117), - [anon_sym_AMP_GT_GT] = ACTIONS(2117), - [anon_sym_LT_AMP] = ACTIONS(2117), - [anon_sym_GT_AMP] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(2120), - [anon_sym_LT_LT_DASH] = ACTIONS(2120), - [anon_sym_LT_LT_LT] = ACTIONS(2123), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_LF] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2115), - }, - [558] = { - [sym_file_redirect] = STATE(557), - [sym_heredoc_redirect] = STATE(557), - [sym_heredoc_body] = STATE(1004), - [sym_herestring_redirect] = STATE(557), - [aux_sym_while_statement_repeat1] = STATE(557), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_SEMI_SEMI] = ACTIONS(2106), - [anon_sym_PIPE_AMP] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_PIPE_PIPE] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(351), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2106), - }, - [559] = { - [sym_concatenation] = STATE(559), - [sym_string] = STATE(199), - [sym_simple_expansion] = STATE(199), - [sym_string_expansion] = STATE(199), - [sym_expansion] = STATE(199), - [sym_command_substitution] = STATE(199), - [sym_process_substitution] = STATE(199), - [aux_sym_command_repeat2] = STATE(559), - [sym__simple_heredoc_body] = ACTIONS(2090), - [sym__heredoc_body_beginning] = ACTIONS(2090), - [sym_file_descriptor] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_SEMI_SEMI] = ACTIONS(2092), - [anon_sym_PIPE_AMP] = ACTIONS(2092), - [anon_sym_AMP_AMP] = ACTIONS(2092), - [anon_sym_PIPE_PIPE] = ACTIONS(2092), - [anon_sym_EQ_TILDE] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2092), - [anon_sym_AMP_GT] = ACTIONS(2092), - [anon_sym_AMP_GT_GT] = ACTIONS(2092), - [anon_sym_LT_AMP] = ACTIONS(2092), - [anon_sym_GT_AMP] = ACTIONS(2092), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2092), - [anon_sym_LT_LT_LT] = ACTIONS(2092), - [sym__special_characters] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2135), - [sym_raw_string] = ACTIONS(2138), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2141), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2144), - [anon_sym_BQUOTE] = ACTIONS(2147), - [anon_sym_LT_LPAREN] = ACTIONS(2150), - [anon_sym_GT_LPAREN] = ACTIONS(2150), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_LF] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2092), - }, - [560] = { - [sym_file_redirect] = STATE(1005), - [sym_heredoc_redirect] = STATE(1005), - [sym_heredoc_body] = STATE(1004), - [sym_herestring_redirect] = STATE(1005), - [sym_concatenation] = STATE(559), - [sym_string] = STATE(199), - [sym_simple_expansion] = STATE(199), - [sym_string_expansion] = STATE(199), - [sym_expansion] = STATE(199), - [sym_command_substitution] = STATE(199), - [sym_process_substitution] = STATE(199), - [aux_sym_while_statement_repeat1] = STATE(1005), - [aux_sym_command_repeat2] = STATE(559), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_SEMI_SEMI] = ACTIONS(2106), - [anon_sym_PIPE_AMP] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_PIPE_PIPE] = ACTIONS(2106), - [anon_sym_EQ_TILDE] = ACTIONS(345), - [anon_sym_EQ_EQ] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(351), - [sym__special_characters] = ACTIONS(353), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(357), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2106), - }, - [561] = { - [sym_string] = STATE(681), - [sym_simple_expansion] = STATE(681), - [sym_string_expansion] = STATE(681), - [sym_expansion] = STATE(681), - [sym_command_substitution] = STATE(681), - [sym_process_substitution] = STATE(681), - [anon_sym_RBRACK] = ACTIONS(2153), - [sym__special_characters] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1317), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1317), - }, - [562] = { - [sym__concat] = ACTIONS(2157), - [anon_sym_EQ] = ACTIONS(2159), - [anon_sym_PLUS_EQ] = ACTIONS(2159), - [sym_comment] = ACTIONS(53), - }, - [563] = { - [aux_sym_concatenation_repeat1] = STATE(1008), - [sym__concat] = ACTIONS(515), - [anon_sym_RBRACK] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - }, - [564] = { - [sym_string] = STATE(681), - [sym_simple_expansion] = STATE(681), - [sym_string_expansion] = STATE(681), - [sym_expansion] = STATE(681), - [sym_command_substitution] = STATE(681), - [sym_process_substitution] = STATE(681), - [anon_sym_RBRACK] = ACTIONS(2161), - [sym__special_characters] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1317), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1317), - }, - [565] = { - [sym__concat] = ACTIONS(2163), - [anon_sym_EQ] = ACTIONS(2165), - [anon_sym_PLUS_EQ] = ACTIONS(2165), - [sym_comment] = ACTIONS(53), - }, - [566] = { - [anon_sym_RBRACK] = ACTIONS(2161), - [sym_comment] = ACTIONS(53), - }, - [567] = { - [sym_file_descriptor] = ACTIONS(2167), - [sym_variable_name] = ACTIONS(2167), - [anon_sym_esac] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2169), - [anon_sym_SEMI_SEMI] = ACTIONS(2169), - [anon_sym_PIPE_AMP] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_AMP_GT] = ACTIONS(2169), - [anon_sym_AMP_GT_GT] = ACTIONS(2169), - [anon_sym_LT_AMP] = ACTIONS(2169), - [anon_sym_GT_AMP] = ACTIONS(2169), - [sym__special_characters] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2169), - [sym_raw_string] = ACTIONS(2169), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2169), - [anon_sym_BQUOTE] = ACTIONS(2169), - [anon_sym_LT_LPAREN] = ACTIONS(2169), - [anon_sym_GT_LPAREN] = ACTIONS(2169), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_LF] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2169), - }, - [568] = { - [aux_sym_concatenation_repeat1] = STATE(1012), - [sym__concat] = ACTIONS(2171), - [anon_sym_RPAREN] = ACTIONS(2173), - [sym__special_characters] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2175), - [sym_raw_string] = ACTIONS(2173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2173), - [anon_sym_BQUOTE] = ACTIONS(2173), - [anon_sym_LT_LPAREN] = ACTIONS(2173), - [anon_sym_GT_LPAREN] = ACTIONS(2173), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2173), - }, - [569] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(1015), - [anon_sym_DQUOTE] = ACTIONS(2177), - [anon_sym_DOLLAR] = ACTIONS(2179), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [570] = { - [sym_string] = STATE(1017), - [anon_sym_DQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(2181), - [sym_raw_string] = ACTIONS(2183), - [anon_sym_POUND] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2181), - [anon_sym_AT] = ACTIONS(2181), - [anon_sym_QMARK] = ACTIONS(2181), - [anon_sym_0] = ACTIONS(2187), - [anon_sym__] = ACTIONS(2187), - }, - [571] = { - [aux_sym_concatenation_repeat1] = STATE(1012), - [sym__concat] = ACTIONS(2171), - [anon_sym_RPAREN] = ACTIONS(2189), - [sym__special_characters] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_DOLLAR] = ACTIONS(2191), - [sym_raw_string] = ACTIONS(2189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2189), - [anon_sym_BQUOTE] = ACTIONS(2189), - [anon_sym_LT_LPAREN] = ACTIONS(2189), - [anon_sym_GT_LPAREN] = ACTIONS(2189), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2189), - }, - [572] = { - [sym_subscript] = STATE(1023), - [sym_variable_name] = ACTIONS(2193), - [anon_sym_DOLLAR] = ACTIONS(2195), - [anon_sym_POUND] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2195), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_QMARK] = ACTIONS(2195), - [anon_sym_0] = ACTIONS(2201), - [anon_sym__] = ACTIONS(2201), - }, - [573] = { - [sym_for_statement] = STATE(1024), - [sym_while_statement] = STATE(1024), - [sym_if_statement] = STATE(1024), - [sym_case_statement] = STATE(1024), - [sym_function_definition] = STATE(1024), - [sym_subshell] = STATE(1024), - [sym_pipeline] = STATE(1024), - [sym_list] = STATE(1024), - [sym_negated_command] = STATE(1024), - [sym_test_command] = STATE(1024), - [sym_declaration_command] = STATE(1024), - [sym_unset_command] = STATE(1024), - [sym_command] = STATE(1024), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1025), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [574] = { - [sym_for_statement] = STATE(1026), - [sym_while_statement] = STATE(1026), - [sym_if_statement] = STATE(1026), - [sym_case_statement] = STATE(1026), - [sym_function_definition] = STATE(1026), - [sym_subshell] = STATE(1026), - [sym_pipeline] = STATE(1026), - [sym_list] = STATE(1026), - [sym_negated_command] = STATE(1026), - [sym_test_command] = STATE(1026), - [sym_declaration_command] = STATE(1026), - [sym_unset_command] = STATE(1026), - [sym_command] = STATE(1026), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(1027), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [575] = { - [sym_for_statement] = STATE(1028), - [sym_while_statement] = STATE(1028), - [sym_if_statement] = STATE(1028), - [sym_case_statement] = STATE(1028), - [sym_function_definition] = STATE(1028), - [sym_subshell] = STATE(1028), - [sym_pipeline] = STATE(1028), - [sym_list] = STATE(1028), - [sym_negated_command] = STATE(1028), - [sym_test_command] = STATE(1028), - [sym_declaration_command] = STATE(1028), - [sym_unset_command] = STATE(1028), - [sym_command] = STATE(1028), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1029), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [576] = { - [sym_concatenation] = STATE(1031), - [sym_string] = STATE(571), - [sym_simple_expansion] = STATE(571), - [sym_string_expansion] = STATE(571), - [sym_expansion] = STATE(571), - [sym_command_substitution] = STATE(571), - [sym_process_substitution] = STATE(571), - [aux_sym_for_statement_repeat1] = STATE(1031), - [anon_sym_RPAREN] = ACTIONS(2203), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1135), - }, - [577] = { - [sym_string] = STATE(1032), - [sym_simple_expansion] = STATE(1032), - [sym_string_expansion] = STATE(1032), - [sym_expansion] = STATE(1032), - [sym_command_substitution] = STATE(1032), - [sym_process_substitution] = STATE(1032), - [sym__special_characters] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [sym_raw_string] = ACTIONS(2205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(399), - [anon_sym_BQUOTE] = ACTIONS(401), - [anon_sym_LT_LPAREN] = ACTIONS(403), - [anon_sym_GT_LPAREN] = ACTIONS(403), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2205), - }, - [578] = { - [aux_sym_concatenation_repeat1] = STATE(1033), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(1147), - [sym_variable_name] = ACTIONS(705), - [anon_sym_PIPE] = 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(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(707), - [anon_sym_LT_AMP] = ACTIONS(707), - [anon_sym_GT_AMP] = ACTIONS(707), - [sym__special_characters] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(707), - [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(177), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [579] = { - [sym_file_descriptor] = ACTIONS(709), - [sym__concat] = ACTIONS(709), - [sym_variable_name] = ACTIONS(709), - [anon_sym_esac] = ACTIONS(711), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_PIPE_AMP] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_GT] = ACTIONS(711), - [anon_sym_GT_GT] = ACTIONS(711), - [anon_sym_AMP_GT] = ACTIONS(711), - [anon_sym_AMP_GT_GT] = ACTIONS(711), - [anon_sym_LT_AMP] = ACTIONS(711), - [anon_sym_GT_AMP] = ACTIONS(711), - [sym__special_characters] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(711), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), - [anon_sym_BQUOTE] = ACTIONS(711), - [anon_sym_LT_LPAREN] = ACTIONS(711), - [anon_sym_GT_LPAREN] = ACTIONS(711), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_LF] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(711), - }, - [580] = { - [anon_sym_DQUOTE] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [581] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2209), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [582] = { - [sym_file_descriptor] = ACTIONS(741), - [sym__concat] = ACTIONS(741), - [sym_variable_name] = ACTIONS(741), - [anon_sym_esac] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_PIPE_AMP] = ACTIONS(743), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_GT_GT] = ACTIONS(743), - [anon_sym_AMP_GT] = ACTIONS(743), - [anon_sym_AMP_GT_GT] = ACTIONS(743), - [anon_sym_LT_AMP] = ACTIONS(743), - [anon_sym_GT_AMP] = ACTIONS(743), - [sym__special_characters] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LT_LPAREN] = ACTIONS(743), - [anon_sym_GT_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LF] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), - }, - [583] = { - [sym_file_descriptor] = ACTIONS(745), - [sym__concat] = ACTIONS(745), - [sym_variable_name] = ACTIONS(745), - [anon_sym_esac] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_GT] = ACTIONS(747), - [anon_sym_AMP_GT] = ACTIONS(747), - [anon_sym_AMP_GT_GT] = ACTIONS(747), - [anon_sym_LT_AMP] = ACTIONS(747), - [anon_sym_GT_AMP] = ACTIONS(747), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(747), - [anon_sym_DOLLAR] = ACTIONS(747), - [sym_raw_string] = ACTIONS(747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), - [anon_sym_BQUOTE] = ACTIONS(747), - [anon_sym_LT_LPAREN] = ACTIONS(747), - [anon_sym_GT_LPAREN] = ACTIONS(747), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - }, - [584] = { - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(749), - [sym_variable_name] = ACTIONS(749), - [anon_sym_esac] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_PIPE_AMP] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(751), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(751), - [anon_sym_LT_AMP] = ACTIONS(751), - [anon_sym_GT_AMP] = ACTIONS(751), - [sym__special_characters] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [anon_sym_LT_LPAREN] = ACTIONS(751), - [anon_sym_GT_LPAREN] = ACTIONS(751), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [585] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(2211), - [sym_comment] = ACTIONS(53), - }, - [586] = { - [sym_concatenation] = STATE(1039), - [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), - [aux_sym_expansion_repeat1] = STATE(1039), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_EQ] = ACTIONS(2215), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_COLON] = ACTIONS(2215), - [anon_sym_COLON_QMARK] = ACTIONS(2215), - [anon_sym_COLON_DASH] = ACTIONS(2215), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [587] = { - [sym_subscript] = STATE(1043), - [sym_variable_name] = ACTIONS(2221), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_0] = ACTIONS(2227), - [anon_sym__] = ACTIONS(2227), - }, - [588] = { - [sym_concatenation] = STATE(1046), - [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), - [aux_sym_expansion_repeat1] = STATE(1046), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_EQ] = ACTIONS(2231), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2235), - [anon_sym_COLON] = ACTIONS(2231), - [anon_sym_COLON_QMARK] = ACTIONS(2231), - [anon_sym_COLON_DASH] = ACTIONS(2231), - [anon_sym_PERCENT] = ACTIONS(2231), - [anon_sym_DASH] = ACTIONS(2231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [589] = { - [sym_concatenation] = STATE(1049), - [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), - [aux_sym_expansion_repeat1] = STATE(1049), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2239), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2243), - [anon_sym_COLON] = ACTIONS(2239), - [anon_sym_COLON_QMARK] = ACTIONS(2239), - [anon_sym_COLON_DASH] = ACTIONS(2239), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [590] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [591] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [592] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(2245), - [sym_comment] = ACTIONS(53), - }, - [593] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(2245), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [594] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [595] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [596] = { - [aux_sym_concatenation_repeat1] = STATE(1052), - [sym__concat] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(2175), - [sym__special_characters] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2175), - [sym_raw_string] = ACTIONS(2175), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2175), - [anon_sym_BQUOTE] = ACTIONS(2175), - [anon_sym_LT_LPAREN] = ACTIONS(2175), - [anon_sym_GT_LPAREN] = ACTIONS(2175), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2175), - }, - [597] = { - [aux_sym_concatenation_repeat1] = STATE(1052), - [sym__concat] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(2191), - [sym__special_characters] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2191), - [anon_sym_DOLLAR] = ACTIONS(2191), - [sym_raw_string] = ACTIONS(2191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2191), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2191), - [anon_sym_BQUOTE] = ACTIONS(2191), - [anon_sym_LT_LPAREN] = ACTIONS(2191), - [anon_sym_GT_LPAREN] = ACTIONS(2191), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_LF] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2191), - }, - [598] = { - [sym_concatenation] = STATE(1054), - [sym_string] = STATE(597), - [sym_simple_expansion] = STATE(597), - [sym_string_expansion] = STATE(597), - [sym_expansion] = STATE(597), - [sym_command_substitution] = STATE(597), - [sym_process_substitution] = STATE(597), - [aux_sym_for_statement_repeat1] = STATE(1054), - [anon_sym_SEMI_SEMI] = ACTIONS(2249), - [sym__special_characters] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(71), - [sym_raw_string] = ACTIONS(2255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2259), - [anon_sym_BQUOTE] = ACTIONS(2261), - [anon_sym_LT_LPAREN] = ACTIONS(2263), - [anon_sym_GT_LPAREN] = ACTIONS(2263), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_LF] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2249), - }, - [599] = { - [sym__terminated_statement] = STATE(1056), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1056), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [600] = { - [anon_sym_esac] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_RPAREN] = ACTIONS(2269), - [anon_sym_SEMI_SEMI] = ACTIONS(2269), - [anon_sym_PIPE_AMP] = ACTIONS(2269), - [anon_sym_AMP_AMP] = ACTIONS(2269), - [anon_sym_PIPE_PIPE] = ACTIONS(2269), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2269), - [anon_sym_LF] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2269), - }, - [601] = { - [sym__simple_heredoc_body] = ACTIONS(2273), - [sym__heredoc_body_beginning] = ACTIONS(2273), - [sym_file_descriptor] = ACTIONS(2273), - [anon_sym_esac] = ACTIONS(2275), - [anon_sym_PIPE] = ACTIONS(2275), - [anon_sym_RPAREN] = ACTIONS(2275), - [anon_sym_SEMI_SEMI] = ACTIONS(2275), - [anon_sym_PIPE_AMP] = ACTIONS(2275), - [anon_sym_AMP_AMP] = ACTIONS(2275), - [anon_sym_PIPE_PIPE] = ACTIONS(2275), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_GT] = ACTIONS(2275), - [anon_sym_GT_GT] = ACTIONS(2275), - [anon_sym_AMP_GT] = ACTIONS(2275), - [anon_sym_AMP_GT_GT] = ACTIONS(2275), - [anon_sym_LT_AMP] = ACTIONS(2275), - [anon_sym_GT_AMP] = ACTIONS(2275), - [anon_sym_LT_LT] = ACTIONS(2275), - [anon_sym_LT_LT_DASH] = ACTIONS(2275), - [anon_sym_LT_LT_LT] = ACTIONS(2275), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2275), - }, - [602] = { - [sym__terminated_statement] = STATE(1058), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1058), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [603] = { - [anon_sym_esac] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_SEMI_SEMI] = ACTIONS(2279), - [anon_sym_PIPE_AMP] = ACTIONS(2279), - [anon_sym_AMP_AMP] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2279), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_LF] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2279), - }, - [604] = { - [sym_file_redirect] = STATE(557), - [sym_heredoc_redirect] = STATE(557), - [sym_heredoc_body] = STATE(1059), - [sym_herestring_redirect] = STATE(557), - [aux_sym_while_statement_repeat1] = STATE(557), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_SEMI_SEMI] = ACTIONS(2279), - [anon_sym_PIPE_AMP] = ACTIONS(2279), - [anon_sym_AMP_AMP] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(351), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_LF] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2279), - }, - [605] = { - [anon_sym_esac] = ACTIONS(2283), - [anon_sym_PIPE] = ACTIONS(2283), - [anon_sym_RPAREN] = ACTIONS(2283), - [anon_sym_SEMI_SEMI] = ACTIONS(2283), - [anon_sym_PIPE_AMP] = ACTIONS(2283), - [anon_sym_AMP_AMP] = ACTIONS(2283), - [anon_sym_PIPE_PIPE] = ACTIONS(2283), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_LF] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2283), - }, - [606] = { - [sym__terminated_statement] = STATE(1060), - [sym_for_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_subshell] = STATE(39), - [sym_pipeline] = STATE(39), - [sym_list] = STATE(39), - [sym_negated_command] = STATE(39), - [sym_test_command] = STATE(39), - [sym_declaration_command] = STATE(39), - [sym_unset_command] = STATE(39), - [sym_command] = STATE(39), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [607] = { - [sym__terminated_statement] = STATE(1061), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1061), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [608] = { - [anon_sym_fi] = ACTIONS(2289), - [anon_sym_elif] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2289), - [sym_comment] = ACTIONS(53), - }, - [609] = { - [anon_sym_fi] = ACTIONS(2291), - [sym_comment] = ACTIONS(53), - }, - [610] = { - [sym__terminated_statement] = STATE(1064), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(1063), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1064), - [aux_sym_if_statement_repeat1] = STATE(1065), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(2293), - [anon_sym_elif] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [611] = { - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(1063), - [aux_sym_if_statement_repeat1] = STATE(1066), - [anon_sym_fi] = ACTIONS(2291), - [anon_sym_elif] = ACTIONS(2295), - [anon_sym_else] = ACTIONS(2297), - [sym_comment] = ACTIONS(53), - }, - [612] = { - [sym__concat] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [613] = { - [sym_case_item] = STATE(1072), - [sym_last_case_item] = STATE(1070), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1072), - [anon_sym_esac] = ACTIONS(2299), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2305), - }, - [614] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2307), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2307), - [anon_sym_LF] = ACTIONS(2309), - [anon_sym_AMP] = ACTIONS(2307), - }, - [615] = { - [aux_sym_concatenation_repeat1] = STATE(615), - [sym__concat] = ACTIONS(2311), - [anon_sym_in] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [616] = { - [sym__concat] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [sym__special_characters] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - }, - [617] = { - [anon_sym_DQUOTE] = ACTIONS(2314), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [618] = { - [sym_case_item] = STATE(1077), - [sym_last_case_item] = STATE(1076), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1077), - [anon_sym_esac] = ACTIONS(2316), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2305), - }, - [619] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2318), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_LF] = ACTIONS(2320), - [anon_sym_AMP] = ACTIONS(2318), - }, - [620] = { - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(1081), - [sym_simple_expansion] = STATE(1081), - [sym_string_expansion] = STATE(1081), - [sym_expansion] = STATE(1081), - [sym_command_substitution] = STATE(1081), - [sym_process_substitution] = STATE(1081), - [anon_sym_RBRACE] = ACTIONS(2322), - [sym__special_characters] = ACTIONS(2324), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(2326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2326), - }, - [621] = { - [sym__concat] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1766), - [anon_sym_SEMI_SEMI] = ACTIONS(1766), - [sym__special_characters] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1766), - }, - [622] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2328), - }, - [623] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [624] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(2332), - [sym_comment] = ACTIONS(53), - }, - [625] = { - [sym_concatenation] = STATE(1088), - [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), - [aux_sym_expansion_repeat1] = STATE(1088), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_EQ] = ACTIONS(2336), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2338), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2340), - [anon_sym_COLON] = ACTIONS(2336), - [anon_sym_COLON_QMARK] = ACTIONS(2336), - [anon_sym_COLON_DASH] = ACTIONS(2336), - [anon_sym_PERCENT] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [626] = { - [sym_concatenation] = STATE(1091), - [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), - [aux_sym_expansion_repeat1] = STATE(1091), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(2344), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2348), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_COLON_QMARK] = ACTIONS(2344), - [anon_sym_COLON_DASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [627] = { - [sym_concatenation] = STATE(1093), - [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), - [aux_sym_expansion_repeat1] = STATE(1093), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_EQ] = ACTIONS(2350), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2354), - [anon_sym_COLON] = ACTIONS(2350), - [anon_sym_COLON_QMARK] = ACTIONS(2350), - [anon_sym_COLON_DASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [628] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [sym__special_characters] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [629] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2356), - }, - [630] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2358), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [631] = { - [sym__concat] = ACTIONS(1840), - [anon_sym_in] = ACTIONS(1842), - [anon_sym_SEMI_SEMI] = ACTIONS(1842), - [sym__special_characters] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1842), - [anon_sym_GT_LPAREN] = ACTIONS(1842), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LF] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1842), - }, - [632] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2360), - }, - [633] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [634] = { - [sym__concat] = ACTIONS(1980), - [anon_sym_in] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1982), - [sym__special_characters] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), - [anon_sym_BQUOTE] = ACTIONS(1982), - [anon_sym_LT_LPAREN] = ACTIONS(1982), - [anon_sym_GT_LPAREN] = ACTIONS(1982), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [635] = { - [sym__concat] = ACTIONS(2046), - [anon_sym_in] = ACTIONS(2048), - [anon_sym_SEMI_SEMI] = ACTIONS(2048), - [sym__special_characters] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2048), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2048), - [anon_sym_BQUOTE] = ACTIONS(2048), - [anon_sym_LT_LPAREN] = ACTIONS(2048), - [anon_sym_GT_LPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LF] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2048), - }, - [636] = { - [sym_compound_statement] = STATE(1097), - [anon_sym_LBRACE] = ACTIONS(457), - [sym_comment] = ACTIONS(53), - }, - [637] = { - [sym_file_descriptor] = ACTIONS(2362), - [anon_sym_esac] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_RPAREN] = ACTIONS(2364), - [anon_sym_SEMI_SEMI] = ACTIONS(2364), - [anon_sym_PIPE_AMP] = ACTIONS(2364), - [anon_sym_AMP_AMP] = ACTIONS(2364), - [anon_sym_PIPE_PIPE] = ACTIONS(2364), - [anon_sym_LT] = ACTIONS(2364), - [anon_sym_GT] = ACTIONS(2364), - [anon_sym_GT_GT] = ACTIONS(2364), - [anon_sym_AMP_GT] = ACTIONS(2364), - [anon_sym_AMP_GT_GT] = ACTIONS(2364), - [anon_sym_LT_AMP] = ACTIONS(2364), - [anon_sym_GT_AMP] = ACTIONS(2364), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_LF] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2364), - }, - [638] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2366), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2366), - [anon_sym_LF] = ACTIONS(2368), - [anon_sym_AMP] = ACTIONS(2366), - }, - [639] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2366), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2366), - [anon_sym_LF] = ACTIONS(2368), - [anon_sym_AMP] = ACTIONS(2366), - }, - [640] = { - [sym__terminated_statement] = STATE(1100), - [sym_for_statement] = STATE(638), - [sym_while_statement] = STATE(638), - [sym_if_statement] = STATE(638), - [sym_case_statement] = STATE(638), - [sym_function_definition] = STATE(638), - [sym_subshell] = STATE(638), - [sym_pipeline] = STATE(638), - [sym_list] = STATE(638), - [sym_negated_command] = STATE(638), - [sym_test_command] = STATE(638), - [sym_declaration_command] = STATE(638), - [sym_unset_command] = STATE(638), - [sym_command] = STATE(638), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(639), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1100), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [641] = { - [anon_sym_LT] = ACTIONS(2372), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_GT_GT] = ACTIONS(2374), - [anon_sym_AMP_GT] = ACTIONS(2372), - [anon_sym_AMP_GT_GT] = ACTIONS(2374), - [anon_sym_LT_AMP] = ACTIONS(2374), - [anon_sym_GT_AMP] = ACTIONS(2374), - [sym_comment] = ACTIONS(53), - }, - [642] = { - [sym_concatenation] = STATE(1104), - [sym_string] = STATE(1103), - [sym_simple_expansion] = STATE(1103), - [sym_string_expansion] = STATE(1103), - [sym_expansion] = STATE(1103), - [sym_command_substitution] = STATE(1103), - [sym_process_substitution] = STATE(1103), - [sym__special_characters] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(2378), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1549), - [anon_sym_BQUOTE] = ACTIONS(1551), - [anon_sym_LT_LPAREN] = ACTIONS(1553), - [anon_sym_GT_LPAREN] = ACTIONS(1553), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2378), - }, - [643] = { - [anon_sym_esac] = ACTIONS(2380), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(2380), - [anon_sym_SEMI_SEMI] = ACTIONS(2380), - [anon_sym_PIPE_AMP] = ACTIONS(2380), - [anon_sym_AMP_AMP] = ACTIONS(2380), - [anon_sym_PIPE_PIPE] = ACTIONS(2380), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_LF] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2380), - }, - [644] = { - [aux_sym_concatenation_repeat1] = STATE(1105), - [sym_file_descriptor] = ACTIONS(1145), - [sym__concat] = ACTIONS(1147), - [sym_variable_name] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_RPAREN] = ACTIONS(1149), - [anon_sym_SEMI_SEMI] = ACTIONS(1149), - [anon_sym_PIPE_AMP] = ACTIONS(1149), - [anon_sym_AMP_AMP] = ACTIONS(1149), - [anon_sym_PIPE_PIPE] = ACTIONS(1149), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_GT] = ACTIONS(1149), - [anon_sym_GT_GT] = ACTIONS(1149), - [anon_sym_AMP_GT] = ACTIONS(1149), - [anon_sym_AMP_GT_GT] = ACTIONS(1149), - [anon_sym_LT_AMP] = ACTIONS(1149), - [anon_sym_GT_AMP] = ACTIONS(1149), - [sym__special_characters] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [anon_sym_DOLLAR] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1149), - [anon_sym_BQUOTE] = ACTIONS(1149), - [anon_sym_LT_LPAREN] = ACTIONS(1149), - [anon_sym_GT_LPAREN] = ACTIONS(1149), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym_LF] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1149), - }, - [645] = { - [aux_sym_concatenation_repeat1] = STATE(1105), - [sym_file_descriptor] = ACTIONS(1123), - [sym__concat] = ACTIONS(1147), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1125), - [anon_sym_SEMI_SEMI] = ACTIONS(1125), - [anon_sym_PIPE_AMP] = ACTIONS(1125), - [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1125), - [anon_sym_AMP_GT] = ACTIONS(1125), - [anon_sym_AMP_GT_GT] = ACTIONS(1125), - [anon_sym_LT_AMP] = ACTIONS(1125), - [anon_sym_GT_AMP] = ACTIONS(1125), - [sym__special_characters] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), - [anon_sym_BQUOTE] = ACTIONS(1125), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LF] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - }, - [646] = { - [sym_file_redirect] = STATE(1106), - [sym_heredoc_redirect] = STATE(1106), - [sym_heredoc_body] = STATE(603), - [sym_herestring_redirect] = STATE(1106), - [aux_sym_while_statement_repeat1] = STATE(1106), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_RPAREN] = ACTIONS(1181), - [anon_sym_SEMI_SEMI] = ACTIONS(1181), - [anon_sym_PIPE_AMP] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(491), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_LF] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1181), - }, - [647] = { - [anon_sym_RPAREN] = ACTIONS(2384), - [sym_comment] = ACTIONS(53), - }, - [648] = { - [sym_file_redirect] = STATE(643), - [sym_file_descriptor] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1253), - [anon_sym_PIPE_AMP] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(2388), - [anon_sym_GT] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2388), - [anon_sym_AMP_GT] = ACTIONS(2388), - [anon_sym_AMP_GT_GT] = ACTIONS(2388), - [anon_sym_LT_AMP] = ACTIONS(2388), - [anon_sym_GT_AMP] = ACTIONS(2388), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1253), - }, - [649] = { - [sym_file_redirect] = STATE(1113), - [sym_heredoc_redirect] = STATE(1113), - [sym_herestring_redirect] = STATE(1113), - [aux_sym_while_statement_repeat1] = STATE(1113), - [sym_file_descriptor] = ACTIONS(2390), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_SEMI_SEMI] = ACTIONS(1363), - [anon_sym_PIPE_AMP] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1363), - [anon_sym_PIPE_PIPE] = ACTIONS(1363), - [anon_sym_LT] = ACTIONS(2392), - [anon_sym_GT] = ACTIONS(2392), - [anon_sym_GT_GT] = ACTIONS(2392), - [anon_sym_AMP_GT] = ACTIONS(2392), - [anon_sym_AMP_GT_GT] = ACTIONS(2392), - [anon_sym_LT_AMP] = ACTIONS(2392), - [anon_sym_GT_AMP] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(1367), - [anon_sym_LT_LT_DASH] = ACTIONS(1367), - [anon_sym_LT_LT_LT] = ACTIONS(2394), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1363), - }, - [650] = { - [sym_concatenation] = STATE(731), - [sym_string] = STATE(1115), - [sym_array] = STATE(731), - [sym_simple_expansion] = STATE(1115), - [sym_string_expansion] = STATE(1115), - [sym_expansion] = STATE(1115), - [sym_command_substitution] = STATE(1115), - [sym_process_substitution] = STATE(1115), - [sym__empty_value] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1453), - [sym__special_characters] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1459), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1461), - [anon_sym_BQUOTE] = ACTIONS(1463), - [anon_sym_LT_LPAREN] = ACTIONS(1465), - [anon_sym_GT_LPAREN] = ACTIONS(1465), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2398), - }, - [651] = { - [aux_sym_concatenation_repeat1] = STATE(1116), - [sym__concat] = ACTIONS(587), - [sym_variable_name] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(707), - [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), - [sym__special_characters] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(707), - [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [652] = { - [sym_variable_assignment] = STATE(652), - [sym_subscript] = STATE(262), - [sym_concatenation] = STATE(652), - [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), - [aux_sym_declaration_command_repeat1] = STATE(652), - [sym_variable_name] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_SEMI_SEMI] = ACTIONS(1514), - [anon_sym_PIPE_AMP] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1514), - [sym__special_characters] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1522), - [sym_raw_string] = ACTIONS(2406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1531), - [anon_sym_BQUOTE] = ACTIONS(1534), - [anon_sym_LT_LPAREN] = ACTIONS(1537), - [anon_sym_GT_LPAREN] = ACTIONS(1537), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1540), - [sym_word] = ACTIONS(2406), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_LF] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1514), - }, - [653] = { - [aux_sym_concatenation_repeat1] = STATE(1117), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(707), - [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), - [sym__special_characters] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(707), - [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [654] = { - [sym_concatenation] = STATE(654), - [sym_string] = STATE(265), - [sym_simple_expansion] = STATE(265), - [sym_string_expansion] = STATE(265), - [sym_expansion] = STATE(265), - [sym_command_substitution] = STATE(265), - [sym_process_substitution] = STATE(265), - [aux_sym_unset_command_repeat1] = STATE(654), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_SEMI_SEMI] = ACTIONS(1597), - [anon_sym_PIPE_AMP] = ACTIONS(1597), - [anon_sym_AMP_AMP] = ACTIONS(1597), - [anon_sym_PIPE_PIPE] = ACTIONS(1597), - [sym__special_characters] = ACTIONS(2409), - [anon_sym_DQUOTE] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1605), - [sym_raw_string] = ACTIONS(2412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1617), - [anon_sym_LT_LPAREN] = ACTIONS(1620), - [anon_sym_GT_LPAREN] = ACTIONS(1620), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1623), - [sym_word] = ACTIONS(2412), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_LF] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1597), - }, - [655] = { - [aux_sym_concatenation_repeat1] = STATE(655), - [sym__simple_heredoc_body] = ACTIONS(1672), - [sym__heredoc_body_beginning] = ACTIONS(1672), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_EQ_TILDE] = ACTIONS(1674), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_LT_LT_LT] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [656] = { - [sym_compound_statement] = STATE(1118), - [anon_sym_LBRACE] = ACTIONS(457), - [sym_comment] = ACTIONS(53), - }, - [657] = { - [anon_sym_esac] = ACTIONS(2415), - [anon_sym_PIPE] = ACTIONS(2415), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_SEMI_SEMI] = ACTIONS(2415), - [anon_sym_PIPE_AMP] = ACTIONS(2415), - [anon_sym_AMP_AMP] = ACTIONS(2415), - [anon_sym_PIPE_PIPE] = ACTIONS(2415), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_LF] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2415), - }, - [658] = { - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(2054), - [anon_sym_SEMI_SEMI] = ACTIONS(2054), - [anon_sym_PIPE_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(2054), - [anon_sym_PIPE_PIPE] = ACTIONS(2054), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_LF] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2054), - }, - [659] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(2054), - [anon_sym_SEMI_SEMI] = ACTIONS(2054), - [anon_sym_PIPE_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(2054), - [anon_sym_PIPE_PIPE] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_LF] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2054), - }, - [660] = { - [sym_concatenation] = STATE(1002), - [sym_string] = STATE(1120), - [sym_simple_expansion] = STATE(1120), - [sym_string_expansion] = STATE(1120), - [sym_expansion] = STATE(1120), - [sym_command_substitution] = STATE(1120), - [sym_process_substitution] = STATE(1120), - [sym__special_characters] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2421), - }, - [661] = { - [aux_sym_concatenation_repeat1] = STATE(267), - [sym__simple_heredoc_body] = ACTIONS(2086), - [sym__heredoc_body_beginning] = ACTIONS(2086), - [sym_file_descriptor] = ACTIONS(2086), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_SEMI_SEMI] = ACTIONS(2088), - [anon_sym_PIPE_AMP] = ACTIONS(2088), - [anon_sym_AMP_AMP] = ACTIONS(2088), - [anon_sym_PIPE_PIPE] = ACTIONS(2088), - [anon_sym_EQ_TILDE] = ACTIONS(2088), - [anon_sym_EQ_EQ] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_GT] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(2088), - [anon_sym_AMP_GT] = ACTIONS(2088), - [anon_sym_AMP_GT_GT] = ACTIONS(2088), - [anon_sym_LT_AMP] = ACTIONS(2088), - [anon_sym_GT_AMP] = ACTIONS(2088), - [anon_sym_LT_LT] = ACTIONS(2088), - [anon_sym_LT_LT_DASH] = ACTIONS(2088), - [anon_sym_LT_LT_LT] = ACTIONS(2088), - [sym__special_characters] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2088), - [sym_raw_string] = ACTIONS(2088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2088), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2088), - [anon_sym_BQUOTE] = ACTIONS(2088), - [anon_sym_LT_LPAREN] = ACTIONS(2088), - [anon_sym_GT_LPAREN] = ACTIONS(2088), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LF] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2088), - }, - [662] = { - [aux_sym_concatenation_repeat1] = STATE(267), - [sym__simple_heredoc_body] = ACTIONS(2090), - [sym__heredoc_body_beginning] = ACTIONS(2090), - [sym_file_descriptor] = ACTIONS(2090), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2092), - [anon_sym_SEMI_SEMI] = ACTIONS(2092), - [anon_sym_PIPE_AMP] = ACTIONS(2092), - [anon_sym_AMP_AMP] = ACTIONS(2092), - [anon_sym_PIPE_PIPE] = ACTIONS(2092), - [anon_sym_EQ_TILDE] = ACTIONS(2092), - [anon_sym_EQ_EQ] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2092), - [anon_sym_AMP_GT] = ACTIONS(2092), - [anon_sym_AMP_GT_GT] = ACTIONS(2092), - [anon_sym_LT_AMP] = ACTIONS(2092), - [anon_sym_GT_AMP] = ACTIONS(2092), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2092), - [anon_sym_LT_LT_LT] = ACTIONS(2092), - [sym__special_characters] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [anon_sym_DOLLAR] = ACTIONS(2092), - [sym_raw_string] = ACTIONS(2092), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2092), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2092), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LT_LPAREN] = ACTIONS(2092), - [anon_sym_GT_LPAREN] = ACTIONS(2092), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_LF] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2092), - }, - [663] = { - [aux_sym_concatenation_repeat1] = STATE(1121), - [sym__simple_heredoc_body] = ACTIONS(671), - [sym__heredoc_body_beginning] = ACTIONS(671), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(223), + [aux_sym_concatenation_repeat1] = STATE(695), + [sym__concat] = ACTIONS(655), [anon_sym_PIPE] = ACTIONS(675), [anon_sym_RPAREN] = ACTIONS(675), [anon_sym_SEMI_SEMI] = ACTIONS(675), [anon_sym_PIPE_AMP] = ACTIONS(675), [anon_sym_AMP_AMP] = ACTIONS(675), [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_LT_LT_LT] = ACTIONS(675), - [sym_comment] = ACTIONS(177), + [sym__special_characters] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(675), + [anon_sym_DOLLAR] = ACTIONS(675), + [sym_raw_string] = ACTIONS(675), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_BQUOTE] = ACTIONS(675), + [anon_sym_LT_LPAREN] = ACTIONS(675), + [anon_sym_GT_LPAREN] = ACTIONS(675), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), + [sym_word] = ACTIONS(675), [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(671), + [anon_sym_LF] = ACTIONS(677), [anon_sym_AMP] = ACTIONS(675), }, - [664] = { - [aux_sym_concatenation_repeat1] = STATE(1121), - [sym__simple_heredoc_body] = ACTIONS(689), - [sym__heredoc_body_beginning] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(691), + [280] = { + [sym_concatenation] = STATE(696), + [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_unset_command_repeat1] = STATE(696), + [anon_sym_PIPE] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(693), + [anon_sym_SEMI_SEMI] = ACTIONS(693), + [anon_sym_PIPE_AMP] = ACTIONS(693), + [anon_sym_AMP_AMP] = ACTIONS(693), + [anon_sym_PIPE_PIPE] = ACTIONS(693), + [sym__special_characters] = ACTIONS(495), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(497), + [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(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), + [sym_word] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(693), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(693), + }, + [281] = { + [aux_sym_concatenation_repeat1] = STATE(697), + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_EQ_TILDE] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_LT_LT_LT] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [282] = { + [anon_sym_RPAREN] = ACTIONS(1351), + [sym_comment] = ACTIONS(53), + }, + [283] = { + [sym_for_statement] = STATE(554), + [sym_c_style_for_statement] = STATE(554), + [sym_while_statement] = STATE(554), + [sym_if_statement] = STATE(554), + [sym_case_statement] = STATE(554), + [sym_function_definition] = STATE(554), + [sym_subshell] = STATE(554), + [sym_pipeline] = STATE(554), + [sym_list] = STATE(554), + [sym_negated_command] = STATE(554), + [sym_test_command] = STATE(554), + [sym_declaration_command] = STATE(554), + [sym_unset_command] = STATE(554), + [sym_command] = STATE(554), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(555), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(68), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(61), + [sym_simple_expansion] = STATE(61), + [sym_string_expansion] = STATE(61), + [sym_expansion] = STATE(61), + [sym_command_substitution] = STATE(61), + [sym_process_substitution] = STATE(61), + [aux_sym_command_repeat1] = STATE(68), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [284] = { + [anon_sym_esac] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1353), + [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), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_LF] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1353), + }, + [285] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(997), + [sym_raw_string] = ACTIONS(995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), + [anon_sym_BQUOTE] = ACTIONS(995), + [anon_sym_LT_LPAREN] = ACTIONS(995), + [anon_sym_GT_LPAREN] = ACTIONS(995), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(997), + }, + [286] = { + [sym_for_statement] = STATE(700), + [sym_c_style_for_statement] = STATE(700), + [sym_while_statement] = STATE(700), + [sym_if_statement] = STATE(700), + [sym_case_statement] = STATE(700), + [sym_function_definition] = STATE(700), + [sym_subshell] = STATE(700), + [sym_pipeline] = STATE(700), + [sym_list] = STATE(700), + [sym_negated_command] = STATE(700), + [sym_test_command] = STATE(700), + [sym_declaration_command] = STATE(700), + [sym_unset_command] = STATE(700), + [sym_command] = STATE(700), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(701), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(68), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(61), + [sym_simple_expansion] = STATE(61), + [sym_string_expansion] = STATE(61), + [sym_expansion] = STATE(61), + [sym_command_substitution] = STATE(61), + [sym_process_substitution] = STATE(61), + [aux_sym_command_repeat1] = STATE(68), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [287] = { + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1361), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1361), + [anon_sym_LT_AMP] = ACTIONS(1361), + [anon_sym_GT_AMP] = ACTIONS(1361), + [sym_comment] = ACTIONS(53), + }, + [288] = { + [sym_concatenation] = STATE(565), + [sym_string] = STATE(704), + [sym_simple_expansion] = STATE(704), + [sym_string_expansion] = STATE(704), + [sym_expansion] = STATE(704), + [sym_command_substitution] = STATE(704), + [sym_process_substitution] = STATE(704), + [sym__special_characters] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1365), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1365), + [sym_regex] = ACTIONS(1019), + }, + [289] = { + [sym_concatenation] = STATE(568), + [sym_string] = STATE(706), + [sym_simple_expansion] = STATE(706), + [sym_string_expansion] = STATE(706), + [sym_expansion] = STATE(706), + [sym_command_substitution] = STATE(706), + [sym_process_substitution] = STATE(706), + [sym__special_characters] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1369), + }, + [290] = { + [sym_concatenation] = STATE(572), + [sym_string] = STATE(708), + [sym_simple_expansion] = STATE(708), + [sym_string_expansion] = STATE(708), + [sym_expansion] = STATE(708), + [sym_command_substitution] = STATE(708), + [sym_process_substitution] = STATE(708), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1373), + }, + [291] = { + [aux_sym_concatenation_repeat1] = STATE(281), + [sym__simple_heredoc_body] = ACTIONS(1031), + [sym__heredoc_body_beginning] = ACTIONS(1031), + [sym_file_descriptor] = ACTIONS(1031), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [sym__special_characters] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1033), + }, + [292] = { + [aux_sym_concatenation_repeat1] = STATE(281), + [sym__simple_heredoc_body] = ACTIONS(1035), + [sym__heredoc_body_beginning] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [sym__special_characters] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1037), + }, + [293] = { + [sym_file_redirect] = STATE(709), + [sym_heredoc_redirect] = STATE(709), + [sym_heredoc_body] = STATE(573), + [sym_herestring_redirect] = STATE(709), + [aux_sym_while_statement_repeat1] = STATE(709), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(515), + [anon_sym_AMP_GT_GT] = ACTIONS(515), + [anon_sym_LT_AMP] = ACTIONS(515), + [anon_sym_GT_AMP] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(517), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1039), + }, + [294] = { + [sym_file_redirect] = STATE(710), + [sym_heredoc_redirect] = STATE(710), + [sym_heredoc_body] = STATE(573), + [sym_herestring_redirect] = STATE(710), + [sym_concatenation] = STATE(202), + [sym_string] = STATE(292), + [sym_simple_expansion] = STATE(292), + [sym_string_expansion] = STATE(292), + [sym_expansion] = STATE(292), + [sym_command_substitution] = STATE(292), + [sym_process_substitution] = STATE(292), + [aux_sym_while_statement_repeat1] = STATE(710), + [aux_sym_command_repeat2] = STATE(711), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(515), + [anon_sym_AMP_GT_GT] = ACTIONS(515), + [anon_sym_LT_AMP] = ACTIONS(515), + [anon_sym_GT_AMP] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(517), + [sym__special_characters] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(521), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1039), + }, + [295] = { + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_SEMI_SEMI] = ACTIONS(1377), + [anon_sym_PIPE_AMP] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_LF] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + }, + [296] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_SEMI_SEMI] = ACTIONS(1377), + [anon_sym_PIPE_AMP] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_LF] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + }, + [297] = { + [sym__terminated_statement] = STATE(297), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(297), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(1043), + [sym_variable_name] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_function] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_typeset] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_readonly] = ACTIONS(1078), + [anon_sym_local] = ACTIONS(1078), + [anon_sym_unset] = ACTIONS(1081), + [anon_sym_unsetenv] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1084), + [anon_sym_GT_GT] = ACTIONS(1087), + [anon_sym_AMP_GT] = ACTIONS(1084), + [anon_sym_AMP_GT_GT] = ACTIONS(1087), + [anon_sym_LT_AMP] = ACTIONS(1087), + [anon_sym_GT_AMP] = ACTIONS(1087), + [sym__special_characters] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1096), + [sym_raw_string] = ACTIONS(1099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1111), + [anon_sym_GT_LPAREN] = ACTIONS(1111), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1114), + }, + [298] = { + [sym_file_redirect] = STATE(710), + [sym_heredoc_redirect] = STATE(710), + [sym_heredoc_body] = STATE(573), + [sym_herestring_redirect] = STATE(710), + [sym_concatenation] = STATE(202), + [sym_string] = STATE(292), + [sym_simple_expansion] = STATE(292), + [sym_string_expansion] = STATE(292), + [sym_expansion] = STATE(292), + [sym_command_substitution] = STATE(292), + [sym_process_substitution] = STATE(292), + [aux_sym_while_statement_repeat1] = STATE(710), + [aux_sym_command_repeat2] = STATE(713), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(515), + [anon_sym_AMP_GT_GT] = ACTIONS(515), + [anon_sym_LT_AMP] = ACTIONS(515), + [anon_sym_GT_AMP] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(517), + [sym__special_characters] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(521), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1039), + }, + [299] = { + [sym_concatenation] = STATE(714), + [sym_string] = STATE(717), + [sym_array] = STATE(714), + [sym_simple_expansion] = STATE(717), + [sym_string_expansion] = STATE(717), + [sym_expansion] = STATE(717), + [sym_command_substitution] = STATE(717), + [sym_process_substitution] = STATE(717), + [sym__empty_value] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1383), + [sym__special_characters] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [sym_raw_string] = ACTIONS(1387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [anon_sym_LT_LPAREN] = ACTIONS(221), + [anon_sym_GT_LPAREN] = ACTIONS(221), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1387), + }, + [300] = { + [sym__expression] = STATE(718), + [sym_binary_expression] = STATE(718), + [sym_unary_expression] = STATE(718), + [sym_parenthesized_expression] = STATE(718), + [sym_concatenation] = STATE(718), + [sym_string] = STATE(302), + [sym_simple_expansion] = STATE(302), + [sym_string_expansion] = STATE(302), + [sym_expansion] = STATE(302), + [sym_command_substitution] = STATE(302), + [sym_process_substitution] = STATE(302), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(531), + [sym__special_characters] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(537), + [sym_test_operator] = ACTIONS(539), + }, + [301] = { + [aux_sym_concatenation_repeat1] = STATE(719), + [sym__concat] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE_PIPE] = ACTIONS(543), + [anon_sym_EQ_TILDE] = ACTIONS(543), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(543), + }, + [302] = { + [aux_sym_concatenation_repeat1] = STATE(719), + [sym__concat] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_EQ_TILDE] = ACTIONS(559), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(559), + }, + [303] = { + [anon_sym_RPAREN] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_PIPE_PIPE] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1393), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1391), + }, + [304] = { + [anon_sym_AMP_AMP] = ACTIONS(573), + [anon_sym_PIPE_PIPE] = ACTIONS(573), + [anon_sym_RBRACK] = ACTIONS(1397), + [anon_sym_EQ_TILDE] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_BANG_EQ] = ACTIONS(573), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(573), + }, + [305] = { + [sym_string] = STATE(723), + [sym_simple_expansion] = STATE(723), + [sym_string_expansion] = STATE(723), + [sym_expansion] = STATE(723), + [sym_command_substitution] = STATE(723), + [sym_process_substitution] = STATE(723), + [sym__special_characters] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1399), + }, + [306] = { + [aux_sym_concatenation_repeat1] = STATE(724), + [sym__concat] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_RBRACK] = ACTIONS(731), + [anon_sym_EQ_TILDE] = ACTIONS(731), + [anon_sym_EQ_EQ] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_BANG_EQ] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(731), + }, + [307] = { + [sym__concat] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_RBRACK] = ACTIONS(735), + [anon_sym_EQ_TILDE] = ACTIONS(735), + [anon_sym_EQ_EQ] = ACTIONS(735), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_GT] = ACTIONS(735), + [anon_sym_BANG_EQ] = ACTIONS(735), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(735), + }, + [308] = { + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [309] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_DOLLAR] = ACTIONS(1403), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [310] = { + [sym__concat] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_RBRACK] = ACTIONS(767), + [anon_sym_EQ_TILDE] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(767), + }, + [311] = { + [sym__concat] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(771), + [anon_sym_EQ_TILDE] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(771), + }, + [312] = { + [sym__concat] = ACTIONS(775), + [anon_sym_AMP_AMP] = ACTIONS(775), + [anon_sym_PIPE_PIPE] = ACTIONS(775), + [anon_sym_RBRACK] = ACTIONS(775), + [anon_sym_EQ_TILDE] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_BANG_EQ] = ACTIONS(775), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(775), + }, + [313] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(1405), + [sym_comment] = ACTIONS(53), + }, + [314] = { + [sym_concatenation] = STATE(730), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(730), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_EQ] = ACTIONS(1409), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1413), + [anon_sym_COLON] = ACTIONS(1409), + [anon_sym_COLON_QMARK] = ACTIONS(1409), + [anon_sym_COLON_DASH] = ACTIONS(1409), + [anon_sym_PERCENT] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [315] = { + [sym_subscript] = STATE(734), + [sym_variable_name] = ACTIONS(1415), + [anon_sym_DOLLAR] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_QMARK] = ACTIONS(1417), + [anon_sym_0] = ACTIONS(1421), + [anon_sym__] = ACTIONS(1421), + }, + [316] = { + [sym_concatenation] = STATE(737), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(737), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1425), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym_COLON_QMARK] = ACTIONS(1425), + [anon_sym_COLON_DASH] = ACTIONS(1425), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [317] = { + [sym_concatenation] = STATE(740), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(740), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_EQ] = ACTIONS(1433), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_COLON] = ACTIONS(1433), + [anon_sym_COLON_QMARK] = ACTIONS(1433), + [anon_sym_COLON_DASH] = ACTIONS(1433), + [anon_sym_PERCENT] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [318] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1439), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [319] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1439), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [320] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_comment] = ACTIONS(53), + }, + [321] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(1439), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [322] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [323] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [324] = { + [sym__expression] = STATE(743), + [sym_binary_expression] = STATE(743), + [sym_unary_expression] = STATE(743), + [sym_parenthesized_expression] = STATE(743), + [sym_concatenation] = STATE(743), + [sym_string] = STATE(77), + [sym_simple_expansion] = STATE(77), + [sym_string_expansion] = STATE(77), + [sym_expansion] = STATE(77), + [sym_command_substitution] = STATE(77), + [sym_process_substitution] = STATE(77), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [sym__special_characters] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(131), + [sym_test_operator] = ACTIONS(133), + }, + [325] = { + [sym_file_redirect] = STATE(748), + [sym_heredoc_redirect] = STATE(748), + [sym_herestring_redirect] = STATE(748), + [aux_sym_while_statement_repeat1] = STATE(748), + [sym_file_descriptor] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_SEMI_SEMI] = ACTIONS(1445), + [anon_sym_PIPE_AMP] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_AMP_GT] = ACTIONS(1447), + [anon_sym_AMP_GT_GT] = ACTIONS(1447), + [anon_sym_LT_AMP] = ACTIONS(1447), + [anon_sym_GT_AMP] = ACTIONS(1447), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_LT_LT_DASH] = ACTIONS(1449), + [anon_sym_LT_LT_LT] = ACTIONS(1451), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1445), + }, + [326] = { + [sym__expression] = STATE(743), + [sym_binary_expression] = STATE(743), + [sym_unary_expression] = STATE(743), + [sym_parenthesized_expression] = STATE(743), + [sym_concatenation] = STATE(743), + [sym_string] = STATE(77), + [sym_simple_expansion] = STATE(77), + [sym_string_expansion] = STATE(77), + [sym_expansion] = STATE(77), + [sym_command_substitution] = STATE(77), + [sym_process_substitution] = STATE(77), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(113), + [sym__special_characters] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1461), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1465), + [anon_sym_LT_LPAREN] = ACTIONS(1467), + [anon_sym_GT_LPAREN] = ACTIONS(1467), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(131), + [sym_test_operator] = ACTIONS(113), + [sym_regex] = ACTIONS(1469), + }, + [327] = { + [anon_sym_RPAREN] = ACTIONS(1471), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_PIPE_PIPE] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1393), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1391), + }, + [328] = { + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1397), + [anon_sym_EQ_TILDE] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_EQ] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(605), + }, + [329] = { + [sym_string] = STATE(751), + [sym_simple_expansion] = STATE(751), + [sym_string_expansion] = STATE(751), + [sym_expansion] = STATE(751), + [sym_command_substitution] = STATE(751), + [sym_process_substitution] = STATE(751), + [sym__special_characters] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(1473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1473), + }, + [330] = { + [aux_sym_concatenation_repeat1] = STATE(752), + [sym__concat] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_RBRACK_RBRACK] = ACTIONS(731), + [anon_sym_EQ_TILDE] = ACTIONS(731), + [anon_sym_EQ_EQ] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_BANG_EQ] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(731), + }, + [331] = { + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_RBRACK_RBRACK] = ACTIONS(735), + [anon_sym_EQ_TILDE] = ACTIONS(735), + [anon_sym_EQ_EQ] = ACTIONS(735), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_GT] = ACTIONS(735), + [anon_sym_BANG_EQ] = ACTIONS(735), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(735), + }, + [332] = { + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [333] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1477), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [334] = { + [sym__concat] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_RBRACK_RBRACK] = ACTIONS(767), + [anon_sym_EQ_TILDE] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(767), + }, + [335] = { + [sym__concat] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_RBRACK_RBRACK] = ACTIONS(771), + [anon_sym_EQ_TILDE] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(771), + }, + [336] = { + [sym__concat] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_AMP_AMP] = ACTIONS(775), + [anon_sym_PIPE_PIPE] = ACTIONS(775), + [anon_sym_RBRACK_RBRACK] = ACTIONS(775), + [anon_sym_EQ_TILDE] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_BANG_EQ] = ACTIONS(775), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(775), + }, + [337] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(1479), + [sym_comment] = ACTIONS(53), + }, + [338] = { + [sym_concatenation] = STATE(758), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(758), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1483), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1485), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [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_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [339] = { + [sym_subscript] = STATE(762), + [sym_variable_name] = ACTIONS(1489), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_AT] = ACTIONS(1491), + [anon_sym_QMARK] = ACTIONS(1491), + [anon_sym_0] = ACTIONS(1495), + [anon_sym__] = ACTIONS(1495), + }, + [340] = { + [sym_concatenation] = STATE(765), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(765), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_EQ] = ACTIONS(1499), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_COLON] = ACTIONS(1499), + [anon_sym_COLON_QMARK] = ACTIONS(1499), + [anon_sym_COLON_DASH] = ACTIONS(1499), + [anon_sym_PERCENT] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [341] = { + [sym_concatenation] = STATE(768), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(768), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1511), + [anon_sym_COLON] = ACTIONS(1507), + [anon_sym_COLON_QMARK] = ACTIONS(1507), + [anon_sym_COLON_DASH] = ACTIONS(1507), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [342] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [343] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [344] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(1513), + [sym_comment] = ACTIONS(53), + }, + [345] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(1513), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [346] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [347] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [348] = { + [sym__expression] = STATE(771), + [sym_binary_expression] = STATE(771), + [sym_unary_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(771), + [sym_concatenation] = STATE(771), + [sym_string] = STATE(88), + [sym_simple_expansion] = STATE(88), + [sym_string_expansion] = STATE(88), + [sym_expansion] = STATE(88), + [sym_command_substitution] = STATE(88), + [sym_process_substitution] = STATE(88), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(139), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(157), + }, + [349] = { + [sym__expression] = STATE(771), + [sym_binary_expression] = STATE(771), + [sym_unary_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(771), + [sym_concatenation] = STATE(771), + [sym_string] = STATE(88), + [sym_simple_expansion] = STATE(88), + [sym_string_expansion] = STATE(88), + [sym_expansion] = STATE(88), + [sym_command_substitution] = STATE(88), + [sym_process_substitution] = STATE(88), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(155), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1523), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1525), + [anon_sym_BQUOTE] = ACTIONS(1527), + [anon_sym_LT_LPAREN] = ACTIONS(1529), + [anon_sym_GT_LPAREN] = ACTIONS(1529), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(137), + [sym_regex] = ACTIONS(1531), + }, + [350] = { + [sym_concatenation] = STATE(773), + [sym_string] = STATE(776), + [sym_array] = STATE(773), + [sym_simple_expansion] = STATE(776), + [sym_string_expansion] = STATE(776), + [sym_expansion] = STATE(776), + [sym_command_substitution] = STATE(776), + [sym_process_substitution] = STATE(776), + [sym__empty_value] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1535), + [sym__special_characters] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(1539), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1541), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1545), + [anon_sym_LT_LPAREN] = ACTIONS(1547), + [anon_sym_GT_LPAREN] = ACTIONS(1547), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1539), + }, + [351] = { + [sym_string] = STATE(777), + [sym_simple_expansion] = STATE(777), + [sym_string_expansion] = STATE(777), + [sym_expansion] = STATE(777), + [sym_command_substitution] = STATE(777), + [sym_process_substitution] = STATE(777), + [sym__special_characters] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(1549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1541), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1545), + [anon_sym_LT_LPAREN] = ACTIONS(1547), + [anon_sym_GT_LPAREN] = ACTIONS(1547), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1549), + }, + [352] = { + [aux_sym_concatenation_repeat1] = STATE(778), + [sym__concat] = ACTIONS(613), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [353] = { + [sym__concat] = ACTIONS(735), + [sym_variable_name] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), + [sym_word] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + }, + [354] = { + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [355] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1553), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [356] = { + [sym__concat] = ACTIONS(767), + [sym_variable_name] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [sym__special_characters] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym_raw_string] = ACTIONS(769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), + [anon_sym_BQUOTE] = ACTIONS(769), + [anon_sym_LT_LPAREN] = ACTIONS(769), + [anon_sym_GT_LPAREN] = ACTIONS(769), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(769), + [sym_word] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), + }, + [357] = { + [sym__concat] = ACTIONS(771), + [sym_variable_name] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [sym__special_characters] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_LT_LPAREN] = ACTIONS(773), + [anon_sym_GT_LPAREN] = ACTIONS(773), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), + [sym_word] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(773), + }, + [358] = { + [sym__concat] = ACTIONS(775), + [sym_variable_name] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(777), + [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), + [sym__special_characters] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(777), + [sym_word] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(777), + }, + [359] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(1555), + [sym_comment] = ACTIONS(53), + }, + [360] = { + [sym_concatenation] = STATE(784), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(784), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_EQ] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1563), + [anon_sym_COLON] = ACTIONS(1559), + [anon_sym_COLON_QMARK] = ACTIONS(1559), + [anon_sym_COLON_DASH] = ACTIONS(1559), + [anon_sym_PERCENT] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [361] = { + [sym_subscript] = STATE(788), + [sym_variable_name] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_AT] = ACTIONS(1567), + [anon_sym_QMARK] = ACTIONS(1567), + [anon_sym_0] = ACTIONS(1571), + [anon_sym__] = ACTIONS(1571), + }, + [362] = { + [sym_concatenation] = STATE(791), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(791), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_EQ] = ACTIONS(1575), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_COLON] = ACTIONS(1575), + [anon_sym_COLON_QMARK] = ACTIONS(1575), + [anon_sym_COLON_DASH] = ACTIONS(1575), + [anon_sym_PERCENT] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [363] = { + [sym_concatenation] = STATE(794), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(794), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_EQ] = ACTIONS(1583), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(1583), + [anon_sym_COLON_QMARK] = ACTIONS(1583), + [anon_sym_COLON_DASH] = ACTIONS(1583), + [anon_sym_PERCENT] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [364] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1589), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [365] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1589), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [366] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(1589), + [sym_comment] = ACTIONS(53), + }, + [367] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(1589), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [368] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [369] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [370] = { + [sym_variable_assignment] = STATE(104), + [sym_subscript] = STATE(105), + [sym_concatenation] = STATE(104), + [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_declaration_command_repeat1] = STATE(370), + [sym_variable_name] = ACTIONS(1593), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_SEMI_SEMI] = ACTIONS(1596), + [anon_sym_PIPE_AMP] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [sym__special_characters] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1604), + [sym_raw_string] = ACTIONS(1607), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1613), + [anon_sym_BQUOTE] = ACTIONS(1616), + [anon_sym_LT_LPAREN] = ACTIONS(1619), + [anon_sym_GT_LPAREN] = ACTIONS(1619), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1622), + [sym_word] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_LF] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1596), + }, + [371] = { + [sym_string] = STATE(797), + [sym_simple_expansion] = STATE(797), + [sym_string_expansion] = STATE(797), + [sym_expansion] = STATE(797), + [sym_command_substitution] = STATE(797), + [sym_process_substitution] = STATE(797), + [sym__special_characters] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(665), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(1627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1633), + [anon_sym_LT_LPAREN] = ACTIONS(1635), + [anon_sym_GT_LPAREN] = ACTIONS(1635), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1627), + }, + [372] = { + [aux_sym_concatenation_repeat1] = STATE(798), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [373] = { + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), + [sym_word] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + }, + [374] = { + [anon_sym_DQUOTE] = ACTIONS(1637), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [375] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(1637), + [anon_sym_DOLLAR] = ACTIONS(1639), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [376] = { + [sym__concat] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [sym__special_characters] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym_raw_string] = ACTIONS(769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), + [anon_sym_BQUOTE] = ACTIONS(769), + [anon_sym_LT_LPAREN] = ACTIONS(769), + [anon_sym_GT_LPAREN] = ACTIONS(769), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(769), + [sym_word] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), + }, + [377] = { + [sym__concat] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [sym__special_characters] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_LT_LPAREN] = ACTIONS(773), + [anon_sym_GT_LPAREN] = ACTIONS(773), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), + [sym_word] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(773), + }, + [378] = { + [sym__concat] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(777), + [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), + [sym__special_characters] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(777), + [sym_word] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(777), + }, + [379] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(1641), + [sym_comment] = ACTIONS(53), + }, + [380] = { + [sym_concatenation] = STATE(804), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(804), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1649), + [anon_sym_COLON] = ACTIONS(1645), + [anon_sym_COLON_QMARK] = ACTIONS(1645), + [anon_sym_COLON_DASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [381] = { + [sym_subscript] = STATE(808), + [sym_variable_name] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_AT] = ACTIONS(1653), + [anon_sym_QMARK] = ACTIONS(1653), + [anon_sym_0] = ACTIONS(1657), + [anon_sym__] = ACTIONS(1657), + }, + [382] = { + [sym_concatenation] = STATE(811), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(811), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1661), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1663), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1665), + [anon_sym_COLON] = ACTIONS(1661), + [anon_sym_COLON_QMARK] = ACTIONS(1661), + [anon_sym_COLON_DASH] = ACTIONS(1661), + [anon_sym_PERCENT] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [383] = { + [sym_concatenation] = STATE(814), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(814), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_EQ] = ACTIONS(1669), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_COLON] = ACTIONS(1669), + [anon_sym_COLON_QMARK] = ACTIONS(1669), + [anon_sym_COLON_DASH] = ACTIONS(1669), + [anon_sym_PERCENT] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [384] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [385] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [386] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(1675), + [sym_comment] = ACTIONS(53), + }, + [387] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(1675), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [388] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [389] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [390] = { + [sym_concatenation] = STATE(390), + [sym_string] = STATE(110), + [sym_simple_expansion] = STATE(110), + [sym_string_expansion] = STATE(110), + [sym_expansion] = STATE(110), + [sym_command_substitution] = STATE(110), + [sym_process_substitution] = STATE(110), + [aux_sym_unset_command_repeat1] = STATE(390), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_SEMI_SEMI] = ACTIONS(1679), + [anon_sym_PIPE_AMP] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [sym__special_characters] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1684), + [anon_sym_DOLLAR] = ACTIONS(1687), + [sym_raw_string] = ACTIONS(1690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1699), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1705), + [sym_word] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_LF] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1679), + }, + [391] = { + [sym_string] = STATE(817), + [sym_simple_expansion] = STATE(817), + [sym_string_expansion] = STATE(817), + [sym_expansion] = STATE(817), + [sym_command_substitution] = STATE(817), + [sym_process_substitution] = STATE(817), + [sym__special_characters] = ACTIONS(1710), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [sym_raw_string] = ACTIONS(1710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [anon_sym_LT_LPAREN] = ACTIONS(221), + [anon_sym_GT_LPAREN] = ACTIONS(221), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1710), + }, + [392] = { + [aux_sym_concatenation_repeat1] = STATE(818), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [sym__special_characters] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(731), + }, + [393] = { + [sym_file_descriptor] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [sym_variable_name] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_PIPE_AMP] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_GT] = ACTIONS(735), + [anon_sym_AMP_GT] = ACTIONS(737), + [anon_sym_AMP_GT_GT] = ACTIONS(735), + [anon_sym_LT_AMP] = ACTIONS(735), + [anon_sym_GT_AMP] = ACTIONS(735), + [sym__special_characters] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), + [anon_sym_BQUOTE] = ACTIONS(735), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(735), + }, + [394] = { + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [395] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1714), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [396] = { + [sym_file_descriptor] = ACTIONS(767), + [sym__concat] = ACTIONS(767), + [sym_variable_name] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(767), + [anon_sym_AMP_GT] = ACTIONS(769), + [anon_sym_AMP_GT_GT] = ACTIONS(767), + [anon_sym_LT_AMP] = ACTIONS(767), + [anon_sym_GT_AMP] = ACTIONS(767), + [sym__special_characters] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym_raw_string] = ACTIONS(767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(767), + [anon_sym_BQUOTE] = ACTIONS(767), + [anon_sym_LT_LPAREN] = ACTIONS(767), + [anon_sym_GT_LPAREN] = ACTIONS(767), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(767), + }, + [397] = { + [sym_file_descriptor] = ACTIONS(771), + [sym__concat] = ACTIONS(771), + [sym_variable_name] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_AMP_GT] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_LT_AMP] = ACTIONS(771), + [anon_sym_GT_AMP] = ACTIONS(771), + [sym__special_characters] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(771), + [anon_sym_LT_LPAREN] = ACTIONS(771), + [anon_sym_GT_LPAREN] = ACTIONS(771), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(771), + }, + [398] = { + [sym_file_descriptor] = ACTIONS(775), + [sym__concat] = ACTIONS(775), + [sym_variable_name] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_PIPE_AMP] = ACTIONS(775), + [anon_sym_AMP_AMP] = ACTIONS(775), + [anon_sym_PIPE_PIPE] = ACTIONS(775), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(775), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(775), + [anon_sym_LT_AMP] = ACTIONS(775), + [anon_sym_GT_AMP] = ACTIONS(775), + [sym__special_characters] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(775), + [anon_sym_GT_LPAREN] = ACTIONS(775), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(775), + }, + [399] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(1716), + [sym_comment] = ACTIONS(53), + }, + [400] = { + [sym_concatenation] = STATE(824), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(824), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1720), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_COLON] = ACTIONS(1720), + [anon_sym_COLON_QMARK] = ACTIONS(1720), + [anon_sym_COLON_DASH] = ACTIONS(1720), + [anon_sym_PERCENT] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [401] = { + [sym_subscript] = STATE(828), + [sym_variable_name] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_AT] = ACTIONS(1728), + [anon_sym_QMARK] = ACTIONS(1728), + [anon_sym_0] = ACTIONS(1732), + [anon_sym__] = ACTIONS(1732), + }, + [402] = { + [sym_concatenation] = STATE(831), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(831), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1736), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1740), + [anon_sym_COLON] = ACTIONS(1736), + [anon_sym_COLON_QMARK] = ACTIONS(1736), + [anon_sym_COLON_DASH] = ACTIONS(1736), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [403] = { + [sym_concatenation] = STATE(834), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(834), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1744), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1748), + [anon_sym_COLON] = ACTIONS(1744), + [anon_sym_COLON_QMARK] = ACTIONS(1744), + [anon_sym_COLON_DASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [404] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [405] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [406] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(1750), + [sym_comment] = ACTIONS(53), + }, + [407] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(1750), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [408] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [409] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [410] = { + [sym__simple_heredoc_body] = ACTIONS(1754), + [sym__heredoc_body_beginning] = ACTIONS(1754), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(1754), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_EQ_TILDE] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1756), + [anon_sym_LT_LT_LT] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [411] = { + [aux_sym_concatenation_repeat1] = STATE(411), + [sym__simple_heredoc_body] = ACTIONS(1754), + [sym__heredoc_body_beginning] = ACTIONS(1754), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_EQ_TILDE] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1756), + [anon_sym_LT_LT_LT] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [412] = { + [sym__simple_heredoc_body] = ACTIONS(1761), + [sym__heredoc_body_beginning] = ACTIONS(1761), + [sym_file_descriptor] = ACTIONS(1761), + [sym__concat] = ACTIONS(1761), + [anon_sym_esac] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1763), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1763), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1763), + }, + [413] = { + [sym__concat] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym__string_content] = ACTIONS(767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), + [anon_sym_BQUOTE] = ACTIONS(769), + [sym_comment] = ACTIONS(179), + }, + [414] = { + [sym__concat] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1767), + [sym__string_content] = ACTIONS(1769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1767), + [anon_sym_BQUOTE] = ACTIONS(1767), + [sym_comment] = ACTIONS(179), + }, + [415] = { + [sym__concat] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym__string_content] = ACTIONS(775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), + [anon_sym_BQUOTE] = ACTIONS(777), + [sym_comment] = ACTIONS(179), + }, + [416] = { + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1767), + [sym__string_content] = ACTIONS(1769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1767), + [anon_sym_BQUOTE] = ACTIONS(1767), + [sym_comment] = ACTIONS(179), + }, + [417] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(1771), + [sym_comment] = ACTIONS(53), + }, + [418] = { + [sym_concatenation] = STATE(841), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(841), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_EQ] = ACTIONS(1775), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1779), + [anon_sym_COLON] = ACTIONS(1775), + [anon_sym_COLON_QMARK] = ACTIONS(1775), + [anon_sym_COLON_DASH] = ACTIONS(1775), + [anon_sym_PERCENT] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [419] = { + [sym_subscript] = STATE(845), + [sym_variable_name] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1785), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_AT] = ACTIONS(1783), + [anon_sym_QMARK] = ACTIONS(1783), + [anon_sym_0] = ACTIONS(1787), + [anon_sym__] = ACTIONS(1787), + }, + [420] = { + [sym_concatenation] = STATE(848), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(848), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_EQ] = ACTIONS(1791), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1795), + [anon_sym_COLON] = ACTIONS(1791), + [anon_sym_COLON_QMARK] = ACTIONS(1791), + [anon_sym_COLON_DASH] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [421] = { + [sym_concatenation] = STATE(851), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(851), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_EQ] = ACTIONS(1799), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1803), + [anon_sym_COLON] = ACTIONS(1799), + [anon_sym_COLON_QMARK] = ACTIONS(1799), + [anon_sym_COLON_DASH] = ACTIONS(1799), + [anon_sym_PERCENT] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [422] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1805), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [423] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(1805), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [424] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(1805), + [sym_comment] = ACTIONS(53), + }, + [425] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(1805), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [426] = { + [anon_sym_DQUOTE] = ACTIONS(1807), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [427] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1809), + [sym__string_content] = ACTIONS(1812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1821), + [sym_comment] = ACTIONS(179), + }, + [428] = { + [sym_concatenation] = STATE(857), + [sym_string] = STATE(856), + [sym_simple_expansion] = STATE(856), + [sym_string_expansion] = STATE(856), + [sym_expansion] = STATE(856), + [sym_command_substitution] = STATE(856), + [sym_process_substitution] = STATE(856), + [sym__special_characters] = ACTIONS(1824), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1826), + }, + [429] = { + [sym_concatenation] = STATE(867), + [sym_string] = STATE(862), + [sym_simple_expansion] = STATE(862), + [sym_string_expansion] = STATE(862), + [sym_expansion] = STATE(862), + [sym_command_substitution] = STATE(862), + [sym_process_substitution] = STATE(862), + [anon_sym_RBRACE] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1836), + }, + [430] = { + [sym__simple_heredoc_body] = ACTIONS(1846), + [sym__heredoc_body_beginning] = ACTIONS(1846), + [sym_file_descriptor] = ACTIONS(1846), + [sym__concat] = ACTIONS(1846), + [anon_sym_esac] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = ACTIONS(1848), + [anon_sym_PIPE_AMP] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [anon_sym_EQ_TILDE] = ACTIONS(1848), + [anon_sym_EQ_EQ] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_GT_GT] = ACTIONS(1848), + [anon_sym_AMP_GT] = ACTIONS(1848), + [anon_sym_AMP_GT_GT] = ACTIONS(1848), + [anon_sym_LT_AMP] = ACTIONS(1848), + [anon_sym_GT_AMP] = ACTIONS(1848), + [anon_sym_LT_LT] = ACTIONS(1848), + [anon_sym_LT_LT_DASH] = ACTIONS(1848), + [anon_sym_LT_LT_LT] = ACTIONS(1848), + [sym__special_characters] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), + [anon_sym_BQUOTE] = ACTIONS(1848), + [anon_sym_LT_LPAREN] = ACTIONS(1848), + [anon_sym_GT_LPAREN] = ACTIONS(1848), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [431] = { + [aux_sym_concatenation_repeat1] = STATE(869), + [sym__concat] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_EQ] = ACTIONS(1854), + [sym__special_characters] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1852), + [anon_sym_DOLLAR] = ACTIONS(1854), + [sym_raw_string] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1852), + [anon_sym_COLON] = ACTIONS(1854), + [anon_sym_COLON_QMARK] = ACTIONS(1854), + [anon_sym_COLON_DASH] = ACTIONS(1854), + [anon_sym_PERCENT] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1852), + [anon_sym_BQUOTE] = ACTIONS(1852), + [anon_sym_LT_LPAREN] = ACTIONS(1852), + [anon_sym_GT_LPAREN] = ACTIONS(1852), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1854), + }, + [432] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(872), + [anon_sym_DQUOTE] = ACTIONS(1856), + [anon_sym_DOLLAR] = ACTIONS(1858), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [433] = { + [sym_string] = STATE(874), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1860), + [anon_sym_DASH] = ACTIONS(1860), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_AT] = ACTIONS(1860), + [anon_sym_QMARK] = ACTIONS(1860), + [anon_sym_0] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + }, + [434] = { + [aux_sym_concatenation_repeat1] = STATE(869), + [sym__concat] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_EQ] = ACTIONS(1870), + [sym__special_characters] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1870), + [sym_raw_string] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [anon_sym_COLON] = ACTIONS(1870), + [anon_sym_COLON_QMARK] = ACTIONS(1870), + [anon_sym_COLON_DASH] = ACTIONS(1870), + [anon_sym_PERCENT] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_BQUOTE] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1870), + }, + [435] = { + [sym_subscript] = STATE(880), + [sym_variable_name] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1874), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1878), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_QMARK] = ACTIONS(1874), + [anon_sym_0] = ACTIONS(1880), + [anon_sym__] = ACTIONS(1880), + }, + [436] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(1882), + }, + [437] = { + [sym_for_statement] = STATE(882), + [sym_c_style_for_statement] = STATE(882), + [sym_while_statement] = STATE(882), + [sym_if_statement] = STATE(882), + [sym_case_statement] = STATE(882), + [sym_function_definition] = STATE(882), + [sym_subshell] = STATE(882), + [sym_pipeline] = STATE(882), + [sym_list] = STATE(882), + [sym_negated_command] = STATE(882), + [sym_test_command] = STATE(882), + [sym_declaration_command] = STATE(882), + [sym_unset_command] = STATE(882), + [sym_command] = STATE(882), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(883), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [438] = { + [sym_for_statement] = STATE(884), + [sym_c_style_for_statement] = STATE(884), + [sym_while_statement] = STATE(884), + [sym_if_statement] = STATE(884), + [sym_case_statement] = STATE(884), + [sym_function_definition] = STATE(884), + [sym_subshell] = STATE(884), + [sym_pipeline] = STATE(884), + [sym_list] = STATE(884), + [sym_negated_command] = STATE(884), + [sym_test_command] = STATE(884), + [sym_declaration_command] = STATE(884), + [sym_unset_command] = STATE(884), + [sym_command] = STATE(884), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(885), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [439] = { + [sym_for_statement] = STATE(886), + [sym_c_style_for_statement] = STATE(886), + [sym_while_statement] = STATE(886), + [sym_if_statement] = STATE(886), + [sym_case_statement] = STATE(886), + [sym_function_definition] = STATE(886), + [sym_subshell] = STATE(886), + [sym_pipeline] = STATE(886), + [sym_list] = STATE(886), + [sym_negated_command] = STATE(886), + [sym_test_command] = STATE(886), + [sym_declaration_command] = STATE(886), + [sym_unset_command] = STATE(886), + [sym_command] = STATE(886), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(887), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [440] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [441] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(1890), + [sym_comment] = ACTIONS(53), + }, + [442] = { + [sym_concatenation] = STATE(893), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(893), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1894), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1896), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1898), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_COLON_QMARK] = ACTIONS(1894), + [anon_sym_COLON_DASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [443] = { + [sym_concatenation] = STATE(896), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(896), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_EQ] = ACTIONS(1902), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1906), + [anon_sym_COLON] = ACTIONS(1902), + [anon_sym_COLON_QMARK] = ACTIONS(1902), + [anon_sym_COLON_DASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1902), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [444] = { + [sym_concatenation] = STATE(898), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(898), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_EQ] = ACTIONS(1908), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(1912), + [anon_sym_COLON] = ACTIONS(1908), + [anon_sym_COLON_QMARK] = ACTIONS(1908), + [anon_sym_COLON_DASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [445] = { + [sym__simple_heredoc_body] = ACTIONS(1914), + [sym__heredoc_body_beginning] = ACTIONS(1914), + [sym_file_descriptor] = ACTIONS(1914), + [sym__concat] = ACTIONS(1914), + [anon_sym_esac] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(1916), + [anon_sym_AMP_AMP] = ACTIONS(1916), + [anon_sym_PIPE_PIPE] = ACTIONS(1916), + [anon_sym_EQ_TILDE] = ACTIONS(1916), + [anon_sym_EQ_EQ] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_GT] = ACTIONS(1916), + [anon_sym_GT_GT] = ACTIONS(1916), + [anon_sym_AMP_GT] = ACTIONS(1916), + [anon_sym_AMP_GT_GT] = ACTIONS(1916), + [anon_sym_LT_AMP] = ACTIONS(1916), + [anon_sym_GT_AMP] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1916), + [anon_sym_LT_LT_DASH] = ACTIONS(1916), + [anon_sym_LT_LT_LT] = ACTIONS(1916), + [sym__special_characters] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_LT_LPAREN] = ACTIONS(1916), + [anon_sym_GT_LPAREN] = ACTIONS(1916), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1916), + }, + [446] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(1918), + }, + [447] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [448] = { + [sym__simple_heredoc_body] = ACTIONS(1922), + [sym__heredoc_body_beginning] = ACTIONS(1922), + [sym_file_descriptor] = ACTIONS(1922), + [sym__concat] = ACTIONS(1922), + [anon_sym_esac] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_EQ_TILDE] = ACTIONS(1924), + [anon_sym_EQ_EQ] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_GT] = ACTIONS(1924), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1924), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1924), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1924), + }, + [449] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(1926), + }, + [450] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [451] = { + [sym_concatenation] = STATE(714), + [sym_string] = STATE(903), + [sym_array] = STATE(714), + [sym_simple_expansion] = STATE(903), + [sym_string_expansion] = STATE(903), + [sym_expansion] = STATE(903), + [sym_command_substitution] = STATE(903), + [sym_process_substitution] = STATE(903), + [sym__empty_value] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1383), + [sym__special_characters] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [sym_raw_string] = ACTIONS(1930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [anon_sym_LT_LPAREN] = ACTIONS(221), + [anon_sym_GT_LPAREN] = ACTIONS(221), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1930), + }, + [452] = { + [sym__expression] = STATE(905), + [sym_binary_expression] = STATE(905), + [sym_unary_expression] = STATE(905), + [sym_parenthesized_expression] = STATE(905), + [sym_concatenation] = STATE(905), + [sym_string] = STATE(230), + [sym_simple_expansion] = STATE(230), + [sym_string_expansion] = STATE(230), + [sym_expansion] = STATE(230), + [sym_command_substitution] = STATE(230), + [sym_process_substitution] = STATE(230), + [anon_sym_SEMI_SEMI] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [sym__special_characters] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(417), + [sym_raw_string] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(419), + [sym_test_operator] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1932), + }, + [453] = { + [anon_sym_in] = ACTIONS(1936), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1938), + }, + [454] = { + [sym_do_group] = STATE(909), + [anon_sym_do] = ACTIONS(1942), + [sym_comment] = ACTIONS(53), + }, + [455] = { + [anon_sym_then] = ACTIONS(1944), + [sym_comment] = ACTIONS(53), + }, + [456] = { + [aux_sym_concatenation_repeat1] = STATE(245), + [sym__concat] = ACTIONS(445), + [anon_sym_in] = ACTIONS(1946), + [anon_sym_SEMI_SEMI] = ACTIONS(1948), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_LF] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1948), + }, + [457] = { + [aux_sym_concatenation_repeat1] = STATE(245), + [sym__concat] = ACTIONS(445), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_SEMI_SEMI] = ACTIONS(1954), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_LF] = ACTIONS(1956), + [anon_sym_AMP] = ACTIONS(1954), + }, + [458] = { + [anon_sym_in] = ACTIONS(1952), + [anon_sym_SEMI_SEMI] = ACTIONS(1954), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_LF] = ACTIONS(1956), + [anon_sym_AMP] = ACTIONS(1954), + }, + [459] = { + [sym_compound_statement] = STATE(917), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_LBRACE] = ACTIONS(1960), + [sym_comment] = ACTIONS(53), + }, + [460] = { + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(1962), + [anon_sym_SEMI_SEMI] = ACTIONS(1964), + [anon_sym_PIPE_AMP] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_LF] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1964), + }, + [461] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(1962), + [anon_sym_SEMI_SEMI] = ACTIONS(1964), + [anon_sym_PIPE_AMP] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_LF] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1964), + }, + [462] = { + [sym__terminated_statement] = STATE(297), + [sym_for_statement] = STATE(920), + [sym_c_style_for_statement] = STATE(920), + [sym_while_statement] = STATE(920), + [sym_if_statement] = STATE(920), + [sym_case_statement] = STATE(920), + [sym_function_definition] = STATE(920), + [sym_subshell] = STATE(920), + [sym_pipeline] = STATE(920), + [sym_list] = STATE(920), + [sym_negated_command] = STATE(920), + [sym_test_command] = STATE(920), + [sym_declaration_command] = STATE(920), + [sym_unset_command] = STATE(920), + [sym_command] = STATE(920), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(921), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(68), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(61), + [sym_simple_expansion] = STATE(61), + [sym_string_expansion] = STATE(61), + [sym_expansion] = STATE(61), + [sym_command_substitution] = STATE(61), + [sym_process_substitution] = STATE(61), + [aux_sym_program_repeat1] = STATE(297), + [aux_sym_command_repeat1] = STATE(68), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [463] = { + [anon_sym_PIPE] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_PIPE_AMP] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(529), + [anon_sym_PIPE_PIPE] = ACTIONS(529), + [anon_sym_BQUOTE] = ACTIONS(529), + [sym_comment] = ACTIONS(53), + }, + [464] = { + [anon_sym_AMP_AMP] = ACTIONS(573), + [anon_sym_PIPE_PIPE] = ACTIONS(573), + [anon_sym_RBRACK] = ACTIONS(1968), + [anon_sym_EQ_TILDE] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_BANG_EQ] = ACTIONS(573), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(573), + }, + [465] = { + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1968), + [anon_sym_EQ_TILDE] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_EQ] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(605), + }, + [466] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_PLUS_EQ] = ACTIONS(1970), + [sym_comment] = ACTIONS(53), + }, + [467] = { + [aux_sym_concatenation_repeat1] = STATE(925), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_PIPE_AMP] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [sym__special_characters] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(617), + [sym_raw_string] = ACTIONS(615), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(615), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(615), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(617), + [sym_word] = ACTIONS(617), + }, + [468] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(928), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1976), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [469] = { + [sym_string] = STATE(930), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(1978), + [sym_raw_string] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1978), + [anon_sym_QMARK] = ACTIONS(1978), + [anon_sym_0] = ACTIONS(1984), + [anon_sym__] = ACTIONS(1984), + }, + [470] = { + [aux_sym_concatenation_repeat1] = STATE(925), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_PIPE_AMP] = ACTIONS(633), + [anon_sym_AMP_AMP] = ACTIONS(633), + [anon_sym_PIPE_PIPE] = ACTIONS(633), + [sym__special_characters] = ACTIONS(633), + [anon_sym_DQUOTE] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(635), + [sym_raw_string] = ACTIONS(633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(633), + [anon_sym_BQUOTE] = ACTIONS(633), + [anon_sym_LT_LPAREN] = ACTIONS(633), + [anon_sym_GT_LPAREN] = ACTIONS(633), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), + [sym_word] = ACTIONS(635), + }, + [471] = { + [sym_subscript] = STATE(936), + [sym_variable_name] = ACTIONS(1986), + [anon_sym_DOLLAR] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_AT] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(1988), + [anon_sym_0] = ACTIONS(1994), + [anon_sym__] = ACTIONS(1994), + }, + [472] = { + [sym_for_statement] = STATE(937), + [sym_c_style_for_statement] = STATE(937), + [sym_while_statement] = STATE(937), + [sym_if_statement] = STATE(937), + [sym_case_statement] = STATE(937), + [sym_function_definition] = STATE(937), + [sym_subshell] = STATE(937), + [sym_pipeline] = STATE(937), + [sym_list] = STATE(937), + [sym_negated_command] = STATE(937), + [sym_test_command] = STATE(937), + [sym_declaration_command] = STATE(937), + [sym_unset_command] = STATE(937), + [sym_command] = STATE(937), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(938), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [473] = { + [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_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(182), + [sym_variable_assignment] = STATE(940), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [474] = { + [sym_for_statement] = STATE(941), + [sym_c_style_for_statement] = STATE(941), + [sym_while_statement] = STATE(941), + [sym_if_statement] = STATE(941), + [sym_case_statement] = STATE(941), + [sym_function_definition] = STATE(941), + [sym_subshell] = STATE(941), + [sym_pipeline] = STATE(941), + [sym_list] = STATE(941), + [sym_negated_command] = STATE(941), + [sym_test_command] = STATE(941), + [sym_declaration_command] = STATE(941), + [sym_unset_command] = STATE(941), + [sym_command] = STATE(941), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(942), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [475] = { + [sym_variable_name] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [sym__special_characters] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(649), + [sym_raw_string] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), + [sym_word] = ACTIONS(649), + }, + [476] = { + [sym_variable_name] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_PIPE_AMP] = ACTIONS(633), + [anon_sym_AMP_AMP] = ACTIONS(633), + [anon_sym_PIPE_PIPE] = ACTIONS(633), + [sym__special_characters] = ACTIONS(633), + [anon_sym_DQUOTE] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(635), + [sym_raw_string] = ACTIONS(633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(633), + [anon_sym_BQUOTE] = ACTIONS(633), + [anon_sym_LT_LPAREN] = ACTIONS(633), + [anon_sym_GT_LPAREN] = ACTIONS(633), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), + [sym_word] = ACTIONS(635), + }, + [477] = { + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_PLUS_EQ] = ACTIONS(1970), + [sym_comment] = ACTIONS(53), + }, + [478] = { + [sym_variable_assignment] = STATE(476), + [sym_subscript] = STATE(477), + [sym_concatenation] = STATE(476), + [sym_string] = STATE(470), + [sym_simple_expansion] = STATE(470), + [sym_string_expansion] = STATE(470), + [sym_expansion] = STATE(470), + [sym_command_substitution] = STATE(470), + [sym_process_substitution] = STATE(470), + [aux_sym_declaration_command_repeat1] = STATE(943), + [sym_variable_name] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [sym__special_characters] = ACTIONS(847), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), + [anon_sym_BQUOTE] = ACTIONS(859), + [anon_sym_LT_LPAREN] = ACTIONS(861), + [anon_sym_GT_LPAREN] = ACTIONS(861), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(863), + [sym_word] = ACTIONS(865), + }, + [479] = { + [aux_sym_concatenation_repeat1] = STATE(945), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(659), + [anon_sym_PIPE_AMP] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(659), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [sym__special_characters] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(657), + [sym_raw_string] = ACTIONS(659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(659), + [anon_sym_BQUOTE] = ACTIONS(659), + [anon_sym_LT_LPAREN] = ACTIONS(659), + [anon_sym_GT_LPAREN] = ACTIONS(659), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(657), + [sym_word] = ACTIONS(657), + }, + [480] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(948), + [anon_sym_DQUOTE] = ACTIONS(1998), + [anon_sym_DOLLAR] = ACTIONS(2000), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [481] = { + [sym_string] = STATE(950), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2004), + [anon_sym_POUND] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2002), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_AT] = ACTIONS(2002), + [anon_sym_QMARK] = ACTIONS(2002), + [anon_sym_0] = ACTIONS(2008), + [anon_sym__] = ACTIONS(2008), + }, + [482] = { + [aux_sym_concatenation_repeat1] = STATE(945), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(677), + [anon_sym_PIPE_AMP] = ACTIONS(677), + [anon_sym_AMP_AMP] = ACTIONS(677), + [anon_sym_PIPE_PIPE] = ACTIONS(677), + [sym__special_characters] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(677), + [anon_sym_DOLLAR] = ACTIONS(675), + [sym_raw_string] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), + [anon_sym_BQUOTE] = ACTIONS(677), + [anon_sym_LT_LPAREN] = ACTIONS(677), + [anon_sym_GT_LPAREN] = ACTIONS(677), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), + [sym_word] = ACTIONS(675), + }, + [483] = { + [sym_subscript] = STATE(956), + [sym_variable_name] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_POUND] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2012), + [anon_sym_AT] = ACTIONS(2012), + [anon_sym_QMARK] = ACTIONS(2012), + [anon_sym_0] = ACTIONS(2018), + [anon_sym__] = ACTIONS(2018), + }, + [484] = { + [sym_for_statement] = STATE(957), + [sym_c_style_for_statement] = STATE(957), + [sym_while_statement] = STATE(957), + [sym_if_statement] = STATE(957), + [sym_case_statement] = STATE(957), + [sym_function_definition] = STATE(957), + [sym_subshell] = STATE(957), + [sym_pipeline] = STATE(957), + [sym_list] = STATE(957), + [sym_negated_command] = STATE(957), + [sym_test_command] = STATE(957), + [sym_declaration_command] = STATE(957), + [sym_unset_command] = STATE(957), + [sym_command] = STATE(957), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(958), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [485] = { + [sym_for_statement] = STATE(959), + [sym_c_style_for_statement] = STATE(959), + [sym_while_statement] = STATE(959), + [sym_if_statement] = STATE(959), + [sym_case_statement] = STATE(959), + [sym_function_definition] = STATE(959), + [sym_subshell] = STATE(959), + [sym_pipeline] = STATE(959), + [sym_list] = STATE(959), + [sym_negated_command] = STATE(959), + [sym_test_command] = STATE(959), + [sym_declaration_command] = STATE(959), + [sym_unset_command] = STATE(959), + [sym_command] = STATE(959), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(960), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [486] = { + [sym_for_statement] = STATE(961), + [sym_c_style_for_statement] = STATE(961), + [sym_while_statement] = STATE(961), + [sym_if_statement] = STATE(961), + [sym_case_statement] = STATE(961), + [sym_function_definition] = STATE(961), + [sym_subshell] = STATE(961), + [sym_pipeline] = STATE(961), + [sym_list] = STATE(961), + [sym_negated_command] = STATE(961), + [sym_test_command] = STATE(961), + [sym_declaration_command] = STATE(961), + [sym_unset_command] = STATE(961), + [sym_command] = STATE(961), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(962), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [487] = { + [anon_sym_PIPE] = ACTIONS(689), [anon_sym_RPAREN] = ACTIONS(691), - [anon_sym_SEMI_SEMI] = ACTIONS(691), [anon_sym_PIPE_AMP] = ACTIONS(691), [anon_sym_AMP_AMP] = ACTIONS(691), [anon_sym_PIPE_PIPE] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(691), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(691), - [anon_sym_LT_AMP] = ACTIONS(691), - [anon_sym_GT_AMP] = ACTIONS(691), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(691), - [anon_sym_LT_LT_LT] = ACTIONS(691), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LF] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), - }, - [665] = { - [aux_sym_concatenation_repeat1] = STATE(1121), - [sym__simple_heredoc_body] = ACTIONS(2098), - [sym__heredoc_body_beginning] = ACTIONS(2098), - [sym_file_descriptor] = ACTIONS(2098), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_SEMI_SEMI] = ACTIONS(2100), - [anon_sym_PIPE_AMP] = ACTIONS(2100), - [anon_sym_AMP_AMP] = ACTIONS(2100), - [anon_sym_PIPE_PIPE] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2100), - [anon_sym_AMP_GT] = ACTIONS(2100), - [anon_sym_AMP_GT_GT] = ACTIONS(2100), - [anon_sym_LT_AMP] = ACTIONS(2100), - [anon_sym_GT_AMP] = ACTIONS(2100), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_LT_LT_DASH] = ACTIONS(2100), - [anon_sym_LT_LT_LT] = ACTIONS(2100), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_LF] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2100), - }, - [666] = { - [aux_sym_concatenation_repeat1] = STATE(1121), - [sym__simple_heredoc_body] = ACTIONS(2102), - [sym__heredoc_body_beginning] = ACTIONS(2102), - [sym_file_descriptor] = ACTIONS(2102), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_SEMI_SEMI] = ACTIONS(2104), - [anon_sym_PIPE_AMP] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2104), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2104), - [anon_sym_LT_AMP] = ACTIONS(2104), - [anon_sym_GT_AMP] = ACTIONS(2104), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2104), - [anon_sym_LT_LT_LT] = ACTIONS(2104), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_LF] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2104), - }, - [667] = { - [sym_file_redirect] = STATE(667), - [sym_heredoc_redirect] = STATE(667), - [sym_herestring_redirect] = STATE(667), - [aux_sym_while_statement_repeat1] = STATE(667), - [sym__simple_heredoc_body] = ACTIONS(2110), - [sym__heredoc_body_beginning] = ACTIONS(2110), - [sym_file_descriptor] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_SEMI_SEMI] = ACTIONS(2115), - [anon_sym_PIPE_AMP] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2426), - [anon_sym_GT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_AMP_GT] = ACTIONS(2426), - [anon_sym_AMP_GT_GT] = ACTIONS(2426), - [anon_sym_LT_AMP] = ACTIONS(2426), - [anon_sym_GT_AMP] = ACTIONS(2426), - [anon_sym_LT_LT] = ACTIONS(2120), - [anon_sym_LT_LT_DASH] = ACTIONS(2120), - [anon_sym_LT_LT_LT] = ACTIONS(2429), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_LF] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2115), - }, - [668] = { - [sym_file_redirect] = STATE(667), - [sym_heredoc_redirect] = STATE(667), - [sym_heredoc_body] = STATE(1004), - [sym_herestring_redirect] = STATE(667), - [aux_sym_while_statement_repeat1] = STATE(667), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_RPAREN] = ACTIONS(2106), - [anon_sym_SEMI_SEMI] = ACTIONS(2106), - [anon_sym_PIPE_AMP] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_PIPE_PIPE] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(491), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2106), - }, - [669] = { - [sym_concatenation] = STATE(669), - [sym_string] = STATE(278), - [sym_simple_expansion] = STATE(278), - [sym_string_expansion] = STATE(278), - [sym_expansion] = STATE(278), - [sym_command_substitution] = STATE(278), - [sym_process_substitution] = STATE(278), - [aux_sym_command_repeat2] = STATE(669), - [sym__simple_heredoc_body] = ACTIONS(2090), - [sym__heredoc_body_beginning] = ACTIONS(2090), - [sym_file_descriptor] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2092), - [anon_sym_SEMI_SEMI] = ACTIONS(2092), - [anon_sym_PIPE_AMP] = ACTIONS(2092), - [anon_sym_AMP_AMP] = ACTIONS(2092), - [anon_sym_PIPE_PIPE] = ACTIONS(2092), - [anon_sym_EQ_TILDE] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2092), - [anon_sym_AMP_GT] = ACTIONS(2092), - [anon_sym_AMP_GT_GT] = ACTIONS(2092), - [anon_sym_LT_AMP] = ACTIONS(2092), - [anon_sym_GT_AMP] = ACTIONS(2092), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2092), - [anon_sym_LT_LT_LT] = ACTIONS(2092), - [sym__special_characters] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2135), - [sym_raw_string] = ACTIONS(2438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2141), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2144), - [anon_sym_BQUOTE] = ACTIONS(2147), - [anon_sym_LT_LPAREN] = ACTIONS(2150), - [anon_sym_GT_LPAREN] = ACTIONS(2150), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_LF] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2092), - }, - [670] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(969), - [sym_raw_string] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym__special_characters] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(691), + [anon_sym_LT_LPAREN] = ACTIONS(691), + [anon_sym_GT_LPAREN] = ACTIONS(691), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(969), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), + [sym_word] = ACTIONS(689), }, - [671] = { - [sym_file_redirect] = STATE(1123), - [sym_heredoc_redirect] = STATE(1123), - [sym_heredoc_body] = STATE(1004), - [sym_herestring_redirect] = STATE(1123), - [sym_concatenation] = STATE(669), - [sym_string] = STATE(278), - [sym_simple_expansion] = STATE(278), - [sym_string_expansion] = STATE(278), - [sym_expansion] = STATE(278), - [sym_command_substitution] = STATE(278), - [sym_process_substitution] = STATE(278), - [aux_sym_while_statement_repeat1] = STATE(1123), - [aux_sym_command_repeat2] = STATE(669), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_RPAREN] = ACTIONS(2106), - [anon_sym_SEMI_SEMI] = ACTIONS(2106), - [anon_sym_PIPE_AMP] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_PIPE_PIPE] = ACTIONS(2106), - [anon_sym_EQ_TILDE] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(491), - [sym__special_characters] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(355), + [488] = { + [sym_concatenation] = STATE(963), + [sym_string] = STATE(482), + [sym_simple_expansion] = STATE(482), + [sym_string_expansion] = STATE(482), + [sym_expansion] = STATE(482), + [sym_command_substitution] = STATE(482), + [sym_process_substitution] = STATE(482), + [aux_sym_unset_command_repeat1] = STATE(963), + [anon_sym_PIPE] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [sym__special_characters] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(871), + [sym_raw_string] = ACTIONS(873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), + [anon_sym_BQUOTE] = ACTIONS(879), + [anon_sym_LT_LPAREN] = ACTIONS(881), + [anon_sym_GT_LPAREN] = ACTIONS(881), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(883), + [sym_word] = ACTIONS(885), + }, + [489] = { + [sym_string] = STATE(964), + [sym_simple_expansion] = STATE(964), + [sym_string_expansion] = STATE(964), + [sym_expansion] = STATE(964), + [sym_command_substitution] = STATE(964), + [sym_process_substitution] = STATE(964), + [sym__special_characters] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(2020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2020), + }, + [490] = { + [aux_sym_concatenation_repeat1] = STATE(965), + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_EQ_TILDE] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_LT_LT_LT] = ACTIONS(731), + [sym__special_characters] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(733), + }, + [491] = { + [sym__simple_heredoc_body] = ACTIONS(735), + [sym__heredoc_body_beginning] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_PIPE_AMP] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_EQ_TILDE] = ACTIONS(737), + [anon_sym_EQ_EQ] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_GT] = ACTIONS(735), + [anon_sym_AMP_GT] = ACTIONS(737), + [anon_sym_AMP_GT_GT] = ACTIONS(735), + [anon_sym_LT_AMP] = ACTIONS(735), + [anon_sym_GT_AMP] = ACTIONS(735), + [anon_sym_LT_LT] = ACTIONS(737), + [anon_sym_LT_LT_DASH] = ACTIONS(735), + [anon_sym_LT_LT_LT] = ACTIONS(735), + [sym__special_characters] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), + [anon_sym_BQUOTE] = ACTIONS(735), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(737), + }, + [492] = { + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [493] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [494] = { + [sym__simple_heredoc_body] = ACTIONS(767), + [sym__heredoc_body_beginning] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(767), + [sym__concat] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(767), + [anon_sym_AMP_GT] = ACTIONS(769), + [anon_sym_AMP_GT_GT] = ACTIONS(767), + [anon_sym_LT_AMP] = ACTIONS(767), + [anon_sym_GT_AMP] = ACTIONS(767), + [anon_sym_LT_LT] = ACTIONS(769), + [anon_sym_LT_LT_DASH] = ACTIONS(767), + [anon_sym_LT_LT_LT] = ACTIONS(767), + [sym__special_characters] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym_raw_string] = ACTIONS(767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(767), + [anon_sym_BQUOTE] = ACTIONS(767), + [anon_sym_LT_LPAREN] = ACTIONS(767), + [anon_sym_GT_LPAREN] = ACTIONS(767), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(769), + }, + [495] = { + [sym__simple_heredoc_body] = ACTIONS(771), + [sym__heredoc_body_beginning] = ACTIONS(771), + [sym_file_descriptor] = ACTIONS(771), + [sym__concat] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_AMP_GT] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_LT_AMP] = ACTIONS(771), + [anon_sym_GT_AMP] = ACTIONS(771), + [anon_sym_LT_LT] = ACTIONS(773), + [anon_sym_LT_LT_DASH] = ACTIONS(771), + [anon_sym_LT_LT_LT] = ACTIONS(771), + [sym__special_characters] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(771), + [anon_sym_LT_LPAREN] = ACTIONS(771), + [anon_sym_GT_LPAREN] = ACTIONS(771), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(773), + }, + [496] = { + [sym__simple_heredoc_body] = ACTIONS(775), + [sym__heredoc_body_beginning] = ACTIONS(775), + [sym_file_descriptor] = ACTIONS(775), + [sym__concat] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_PIPE_AMP] = ACTIONS(775), + [anon_sym_AMP_AMP] = ACTIONS(775), + [anon_sym_PIPE_PIPE] = ACTIONS(775), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(775), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(775), + [anon_sym_LT_AMP] = ACTIONS(775), + [anon_sym_GT_AMP] = ACTIONS(775), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(775), + [anon_sym_LT_LT_LT] = ACTIONS(775), + [sym__special_characters] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(775), + [anon_sym_GT_LPAREN] = ACTIONS(775), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(777), + }, + [497] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(2026), + [sym_comment] = ACTIONS(53), + }, + [498] = { + [sym_concatenation] = STATE(971), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(971), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_COLON] = ACTIONS(2030), + [anon_sym_COLON_QMARK] = ACTIONS(2030), + [anon_sym_COLON_DASH] = ACTIONS(2030), + [anon_sym_PERCENT] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [499] = { + [sym_subscript] = STATE(975), + [sym_variable_name] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2038), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2038), + [anon_sym_QMARK] = ACTIONS(2038), + [anon_sym_0] = ACTIONS(2042), + [anon_sym__] = ACTIONS(2042), + }, + [500] = { + [sym_concatenation] = STATE(978), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(978), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_EQ] = ACTIONS(2046), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2048), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2050), + [anon_sym_COLON] = ACTIONS(2046), + [anon_sym_COLON_QMARK] = ACTIONS(2046), + [anon_sym_COLON_DASH] = ACTIONS(2046), + [anon_sym_PERCENT] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2046), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [501] = { + [sym_concatenation] = STATE(981), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(981), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_EQ] = ACTIONS(2054), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2056), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2058), + [anon_sym_COLON] = ACTIONS(2054), + [anon_sym_COLON_QMARK] = ACTIONS(2054), + [anon_sym_COLON_DASH] = ACTIONS(2054), + [anon_sym_PERCENT] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2054), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [502] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2060), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [503] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2060), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [504] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(2060), + [sym_comment] = ACTIONS(53), + }, + [505] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(2060), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [506] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [507] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [508] = { + [anon_sym_RPAREN] = ACTIONS(2064), + [sym_comment] = ACTIONS(53), + }, + [509] = { + [sym_for_statement] = STATE(985), + [sym_c_style_for_statement] = STATE(985), + [sym_while_statement] = STATE(985), + [sym_if_statement] = STATE(985), + [sym_case_statement] = STATE(985), + [sym_function_definition] = STATE(985), + [sym_subshell] = STATE(985), + [sym_pipeline] = STATE(985), + [sym_list] = STATE(985), + [sym_negated_command] = STATE(985), + [sym_test_command] = STATE(985), + [sym_declaration_command] = STATE(985), + [sym_unset_command] = STATE(985), + [sym_command] = STATE(985), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(986), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [510] = { + [sym__simple_heredoc_body] = ACTIONS(2066), + [sym__heredoc_body_beginning] = ACTIONS(2066), + [sym_file_descriptor] = ACTIONS(2066), + [sym__concat] = ACTIONS(2066), + [anon_sym_esac] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_SEMI_SEMI] = ACTIONS(2068), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_EQ_TILDE] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_AMP_GT] = ACTIONS(2068), + [anon_sym_AMP_GT_GT] = ACTIONS(2068), + [anon_sym_LT_AMP] = ACTIONS(2068), + [anon_sym_GT_AMP] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_LT_LT_DASH] = ACTIONS(2068), + [anon_sym_LT_LT_LT] = ACTIONS(2068), + [sym__special_characters] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), + [anon_sym_BQUOTE] = ACTIONS(2068), + [anon_sym_LT_LPAREN] = ACTIONS(2068), + [anon_sym_GT_LPAREN] = ACTIONS(2068), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_LF] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2068), + }, + [511] = { + [sym_for_statement] = STATE(987), + [sym_c_style_for_statement] = STATE(987), + [sym_while_statement] = STATE(987), + [sym_if_statement] = STATE(987), + [sym_case_statement] = STATE(987), + [sym_function_definition] = STATE(987), + [sym_subshell] = STATE(987), + [sym_pipeline] = STATE(987), + [sym_list] = STATE(987), + [sym_negated_command] = STATE(987), + [sym_test_command] = STATE(987), + [sym_declaration_command] = STATE(987), + [sym_unset_command] = STATE(987), + [sym_command] = STATE(987), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(988), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [512] = { + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_PIPE_AMP] = ACTIONS(1001), + [anon_sym_AMP_AMP] = ACTIONS(1001), + [anon_sym_PIPE_PIPE] = ACTIONS(1001), + [anon_sym_BQUOTE] = ACTIONS(1001), + [sym_comment] = ACTIONS(53), + }, + [513] = { + [sym_simple_expansion] = STATE(990), + [sym_expansion] = STATE(990), + [aux_sym_heredoc_body_repeat1] = STATE(990), + [sym__heredoc_body_middle] = ACTIONS(2070), + [sym__heredoc_body_end] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1009), + [sym_comment] = ACTIONS(53), + }, + [514] = { + [anon_sym_LT] = ACTIONS(2074), + [anon_sym_GT] = ACTIONS(2074), + [anon_sym_GT_GT] = ACTIONS(2076), + [anon_sym_AMP_GT] = ACTIONS(2074), + [anon_sym_AMP_GT_GT] = ACTIONS(2076), + [anon_sym_LT_AMP] = ACTIONS(2076), + [anon_sym_GT_AMP] = ACTIONS(2076), + [sym_comment] = ACTIONS(53), + }, + [515] = { + [sym_concatenation] = STATE(994), + [sym_string] = STATE(993), + [sym_simple_expansion] = STATE(993), + [sym_string_expansion] = STATE(993), + [sym_expansion] = STATE(993), + [sym_command_substitution] = STATE(993), + [sym_process_substitution] = STATE(993), + [sym__special_characters] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2080), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(2082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2084), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2086), + [anon_sym_BQUOTE] = ACTIONS(2088), + [anon_sym_LT_LPAREN] = ACTIONS(2090), + [anon_sym_GT_LPAREN] = ACTIONS(2090), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2082), + [sym_regex] = ACTIONS(2092), + }, + [516] = { + [sym_concatenation] = STATE(997), + [sym_string] = STATE(996), + [sym_simple_expansion] = STATE(996), + [sym_string_expansion] = STATE(996), + [sym_expansion] = STATE(996), + [sym_command_substitution] = STATE(996), + [sym_process_substitution] = STATE(996), + [sym__special_characters] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(2096), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2096), + }, + [517] = { + [sym_heredoc_start] = ACTIONS(2098), + [sym_comment] = ACTIONS(53), + }, + [518] = { + [sym_concatenation] = STATE(1001), + [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(2100), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(2102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2102), + }, + [519] = { + [aux_sym_concatenation_repeat1] = STATE(490), + [sym__simple_heredoc_body] = ACTIONS(1031), + [sym__heredoc_body_beginning] = ACTIONS(1031), + [sym_file_descriptor] = ACTIONS(1031), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [sym__special_characters] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1033), + }, + [520] = { + [aux_sym_concatenation_repeat1] = STATE(490), + [sym__simple_heredoc_body] = ACTIONS(1035), + [sym__heredoc_body_beginning] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_PIPE_AMP] = ACTIONS(1035), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1035), + [anon_sym_LT_AMP] = ACTIONS(1035), + [anon_sym_GT_AMP] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_LT_LT_DASH] = ACTIONS(1035), + [anon_sym_LT_LT_LT] = ACTIONS(1035), + [sym__special_characters] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_LT_LPAREN] = ACTIONS(1035), + [anon_sym_GT_LPAREN] = ACTIONS(1035), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1037), + }, + [521] = { + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_PIPE_AMP] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1041), + [anon_sym_PIPE_PIPE] = ACTIONS(1041), + [anon_sym_BQUOTE] = ACTIONS(1041), + [sym_comment] = ACTIONS(53), + }, + [522] = { + [sym__simple_heredoc_body] = ACTIONS(1035), + [sym__heredoc_body_beginning] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_PIPE_AMP] = ACTIONS(1035), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1035), + [anon_sym_LT_AMP] = ACTIONS(1035), + [anon_sym_GT_AMP] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_LT_LT_DASH] = ACTIONS(1035), + [anon_sym_LT_LT_LT] = ACTIONS(1035), + [sym__special_characters] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_LT_LPAREN] = ACTIONS(1035), + [anon_sym_GT_LPAREN] = ACTIONS(1035), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1037), + }, + [523] = { + [sym_file_redirect] = STATE(1003), + [sym_heredoc_redirect] = STATE(1003), + [sym_heredoc_body] = STATE(1002), + [sym_herestring_redirect] = STATE(1003), + [aux_sym_while_statement_repeat1] = STATE(1003), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_PIPE_AMP] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1041), + [anon_sym_PIPE_PIPE] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(937), + [sym_comment] = ACTIONS(53), + }, + [524] = { + [sym_file_redirect] = STATE(1004), + [sym_heredoc_redirect] = STATE(1004), + [sym_heredoc_body] = STATE(1002), + [sym_herestring_redirect] = STATE(1004), + [sym_concatenation] = STATE(522), + [sym_string] = STATE(520), + [sym_simple_expansion] = STATE(520), + [sym_string_expansion] = STATE(520), + [sym_expansion] = STATE(520), + [sym_command_substitution] = STATE(520), + [sym_process_substitution] = STATE(520), + [aux_sym_while_statement_repeat1] = STATE(1004), + [aux_sym_command_repeat2] = STATE(1005), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_PIPE_AMP] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1041), + [anon_sym_PIPE_PIPE] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(937), + [sym__special_characters] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(943), + }, + [525] = { + [sym_file_redirect] = STATE(1004), + [sym_heredoc_redirect] = STATE(1004), + [sym_heredoc_body] = STATE(1002), + [sym_herestring_redirect] = STATE(1004), + [sym_concatenation] = STATE(522), + [sym_string] = STATE(520), + [sym_simple_expansion] = STATE(520), + [sym_string_expansion] = STATE(520), + [sym_expansion] = STATE(520), + [sym_command_substitution] = STATE(520), + [sym_process_substitution] = STATE(520), + [aux_sym_while_statement_repeat1] = STATE(1004), + [aux_sym_command_repeat2] = STATE(1006), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_PIPE_AMP] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1041), + [anon_sym_PIPE_PIPE] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(937), + [sym__special_characters] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(943), + }, + [526] = { + [sym_concatenation] = STATE(714), + [sym_string] = STATE(1008), + [sym_array] = STATE(714), + [sym_simple_expansion] = STATE(1008), + [sym_string_expansion] = STATE(1008), + [sym_expansion] = STATE(1008), + [sym_command_substitution] = STATE(1008), + [sym_process_substitution] = STATE(1008), + [sym__empty_value] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1383), + [sym__special_characters] = ACTIONS(2104), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [sym_raw_string] = ACTIONS(2106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [anon_sym_LT_LPAREN] = ACTIONS(221), + [anon_sym_GT_LPAREN] = ACTIONS(221), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2106), + }, + [527] = { + [sym_do_group] = STATE(1009), + [anon_sym_do] = ACTIONS(1942), + [sym_comment] = ACTIONS(53), + }, + [528] = { + [sym_compound_statement] = STATE(1011), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(1960), + [sym_comment] = ACTIONS(53), + }, + [529] = { + [anon_sym_AMP_AMP] = ACTIONS(573), + [anon_sym_PIPE_PIPE] = ACTIONS(573), + [anon_sym_RBRACK] = ACTIONS(2110), + [anon_sym_EQ_TILDE] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_BANG_EQ] = ACTIONS(573), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(573), + }, + [530] = { + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2110), + [anon_sym_EQ_TILDE] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_EQ] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(605), + }, + [531] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(2112), + [anon_sym_PLUS_EQ] = ACTIONS(2112), + [sym_comment] = ACTIONS(53), + }, + [532] = { + [aux_sym_concatenation_repeat1] = STATE(1014), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_PIPE_AMP] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [sym__special_characters] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(617), + [sym_raw_string] = ACTIONS(615), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(615), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(615), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(617), + [sym_word] = ACTIONS(617), + }, + [533] = { + [aux_sym_concatenation_repeat1] = STATE(1014), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PIPE_AMP] = ACTIONS(633), + [anon_sym_AMP_AMP] = ACTIONS(633), + [anon_sym_PIPE_PIPE] = ACTIONS(633), + [sym__special_characters] = ACTIONS(633), + [anon_sym_DQUOTE] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(635), + [sym_raw_string] = ACTIONS(633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(633), + [anon_sym_BQUOTE] = ACTIONS(633), + [anon_sym_LT_LPAREN] = ACTIONS(633), + [anon_sym_GT_LPAREN] = ACTIONS(633), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), + [sym_word] = ACTIONS(635), + }, + [534] = { + [anon_sym_EQ] = ACTIONS(2112), + [anon_sym_PLUS_EQ] = ACTIONS(2112), + [sym_comment] = ACTIONS(53), + }, + [535] = { + [sym_variable_assignment] = STATE(476), + [sym_subscript] = STATE(534), + [sym_concatenation] = STATE(476), + [sym_string] = STATE(533), + [sym_simple_expansion] = STATE(533), + [sym_string_expansion] = STATE(533), + [sym_expansion] = STATE(533), + [sym_command_substitution] = STATE(533), + [sym_process_substitution] = STATE(533), + [aux_sym_declaration_command_repeat1] = STATE(1015), + [sym_variable_name] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [sym__special_characters] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LT_LPAREN] = ACTIONS(861), + [anon_sym_GT_LPAREN] = ACTIONS(861), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(863), + [sym_word] = ACTIONS(957), + }, + [536] = { + [aux_sym_concatenation_repeat1] = STATE(1016), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(657), + [anon_sym_PIPE_AMP] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(659), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [sym__special_characters] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(657), + [sym_raw_string] = ACTIONS(659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(659), + [anon_sym_BQUOTE] = ACTIONS(659), + [anon_sym_LT_LPAREN] = ACTIONS(659), + [anon_sym_GT_LPAREN] = ACTIONS(659), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(657), + [sym_word] = ACTIONS(657), + }, + [537] = { + [aux_sym_concatenation_repeat1] = STATE(1016), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(677), + [anon_sym_AMP_AMP] = ACTIONS(677), + [anon_sym_PIPE_PIPE] = ACTIONS(677), + [sym__special_characters] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(677), + [anon_sym_DOLLAR] = ACTIONS(675), + [sym_raw_string] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), + [anon_sym_BQUOTE] = ACTIONS(677), + [anon_sym_LT_LPAREN] = ACTIONS(677), + [anon_sym_GT_LPAREN] = ACTIONS(677), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), + [sym_word] = ACTIONS(675), + }, + [538] = { + [sym_concatenation] = STATE(1017), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_unset_command_repeat1] = STATE(1017), + [anon_sym_PIPE] = ACTIONS(693), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [sym__special_characters] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(871), + [sym_raw_string] = ACTIONS(961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(881), + [anon_sym_GT_LPAREN] = ACTIONS(881), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(883), + [sym_word] = ACTIONS(963), + }, + [539] = { + [aux_sym_concatenation_repeat1] = STATE(1018), + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_EQ_TILDE] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_LT_LT_LT] = ACTIONS(731), + [sym__special_characters] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(733), + }, + [540] = { + [anon_sym_RPAREN] = ACTIONS(2114), + [sym_comment] = ACTIONS(53), + }, + [541] = { + [sym_for_statement] = STATE(985), + [sym_c_style_for_statement] = STATE(985), + [sym_while_statement] = STATE(985), + [sym_if_statement] = STATE(985), + [sym_case_statement] = STATE(985), + [sym_function_definition] = STATE(985), + [sym_subshell] = STATE(985), + [sym_pipeline] = STATE(985), + [sym_list] = STATE(985), + [sym_negated_command] = STATE(985), + [sym_test_command] = STATE(985), + [sym_declaration_command] = STATE(985), + [sym_unset_command] = STATE(985), + [sym_command] = STATE(985), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(1020), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [542] = { + [sym_for_statement] = STATE(1021), + [sym_c_style_for_statement] = STATE(1021), + [sym_while_statement] = STATE(1021), + [sym_if_statement] = STATE(1021), + [sym_case_statement] = STATE(1021), + [sym_function_definition] = STATE(1021), + [sym_subshell] = STATE(1021), + [sym_pipeline] = STATE(1021), + [sym_list] = STATE(1021), + [sym_negated_command] = STATE(1021), + [sym_test_command] = STATE(1021), + [sym_declaration_command] = STATE(1021), + [sym_unset_command] = STATE(1021), + [sym_command] = STATE(1021), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(1022), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [543] = { + [anon_sym_LT] = ACTIONS(2116), + [anon_sym_GT] = ACTIONS(2116), + [anon_sym_GT_GT] = ACTIONS(2118), + [anon_sym_AMP_GT] = ACTIONS(2116), + [anon_sym_AMP_GT_GT] = ACTIONS(2118), + [anon_sym_LT_AMP] = ACTIONS(2118), + [anon_sym_GT_AMP] = ACTIONS(2118), + [sym_comment] = ACTIONS(53), + }, + [544] = { + [sym_concatenation] = STATE(994), + [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(2120), + [anon_sym_DQUOTE] = ACTIONS(2080), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(2122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2084), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2086), + [anon_sym_BQUOTE] = ACTIONS(2088), + [anon_sym_LT_LPAREN] = ACTIONS(2090), + [anon_sym_GT_LPAREN] = ACTIONS(2090), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2122), + [sym_regex] = ACTIONS(2092), + }, + [545] = { + [sym_concatenation] = STATE(997), + [sym_string] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_string_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [sym__special_characters] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(2126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2126), + }, + [546] = { + [sym_concatenation] = STATE(1001), + [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(2128), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2130), + }, + [547] = { + [aux_sym_concatenation_repeat1] = STATE(539), + [sym__simple_heredoc_body] = ACTIONS(1031), + [sym__heredoc_body_beginning] = ACTIONS(1031), + [sym_file_descriptor] = ACTIONS(1031), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [sym__special_characters] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1033), + }, + [548] = { + [aux_sym_concatenation_repeat1] = STATE(539), + [sym__simple_heredoc_body] = ACTIONS(1035), + [sym__heredoc_body_beginning] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1035), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1035), + [anon_sym_LT_AMP] = ACTIONS(1035), + [anon_sym_GT_AMP] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_LT_LT_DASH] = ACTIONS(1035), + [anon_sym_LT_LT_LT] = ACTIONS(1035), + [sym__special_characters] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_LT_LPAREN] = ACTIONS(1035), + [anon_sym_GT_LPAREN] = ACTIONS(1035), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1037), + }, + [549] = { + [sym_file_redirect] = STATE(1030), + [sym_heredoc_redirect] = STATE(1030), + [sym_heredoc_body] = STATE(1002), + [sym_herestring_redirect] = STATE(1030), + [aux_sym_while_statement_repeat1] = STATE(1030), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1041), + [anon_sym_PIPE_PIPE] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(977), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(1041), + [sym_comment] = ACTIONS(53), + }, + [550] = { + [sym_file_redirect] = STATE(1031), + [sym_heredoc_redirect] = STATE(1031), + [sym_heredoc_body] = STATE(1002), + [sym_herestring_redirect] = STATE(1031), + [sym_concatenation] = STATE(522), + [sym_string] = STATE(548), + [sym_simple_expansion] = STATE(548), + [sym_string_expansion] = STATE(548), + [sym_expansion] = STATE(548), + [sym_command_substitution] = STATE(548), + [sym_process_substitution] = STATE(548), + [aux_sym_while_statement_repeat1] = STATE(1031), + [aux_sym_command_repeat2] = STATE(1032), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1041), + [anon_sym_PIPE_PIPE] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(977), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym__special_characters] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(1041), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(987), + }, + [551] = { + [sym_file_redirect] = STATE(1031), + [sym_heredoc_redirect] = STATE(1031), + [sym_heredoc_body] = STATE(1002), + [sym_herestring_redirect] = STATE(1031), + [sym_concatenation] = STATE(522), + [sym_string] = STATE(548), + [sym_simple_expansion] = STATE(548), + [sym_string_expansion] = STATE(548), + [sym_expansion] = STATE(548), + [sym_command_substitution] = STATE(548), + [sym_process_substitution] = STATE(548), + [aux_sym_while_statement_repeat1] = STATE(1031), + [aux_sym_command_repeat2] = STATE(1033), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1041), + [anon_sym_PIPE_PIPE] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(977), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym__special_characters] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(1041), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(987), + }, + [552] = { + [sym__simple_heredoc_body] = ACTIONS(2132), + [sym__heredoc_body_beginning] = ACTIONS(2132), + [sym_file_descriptor] = ACTIONS(2132), + [sym__concat] = ACTIONS(2132), + [anon_sym_esac] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_SEMI_SEMI] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [anon_sym_EQ_TILDE] = ACTIONS(2134), + [anon_sym_EQ_EQ] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(2134), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(2134), + [anon_sym_LT_AMP] = ACTIONS(2134), + [anon_sym_GT_AMP] = ACTIONS(2134), + [anon_sym_LT_LT] = ACTIONS(2134), + [anon_sym_LT_LT_DASH] = ACTIONS(2134), + [anon_sym_LT_LT_LT] = ACTIONS(2134), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), + [anon_sym_BQUOTE] = ACTIONS(2134), + [anon_sym_LT_LPAREN] = ACTIONS(2134), + [anon_sym_GT_LPAREN] = ACTIONS(2134), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + }, + [553] = { + [sym_compound_statement] = STATE(1034), + [anon_sym_LBRACE] = ACTIONS(483), + [sym_comment] = ACTIONS(53), + }, + [554] = { + [anon_sym_esac] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_SEMI_SEMI] = ACTIONS(2136), + [anon_sym_PIPE_AMP] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_LF] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2136), + }, + [555] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_esac] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_SEMI_SEMI] = ACTIONS(2136), + [anon_sym_PIPE_AMP] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_LF] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2136), + }, + [556] = { + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(2140), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_LF] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2140), + }, + [557] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(2140), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_LF] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2140), + }, + [558] = { + [anon_sym_esac] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_RPAREN] = ACTIONS(2144), + [anon_sym_SEMI_SEMI] = ACTIONS(2144), + [anon_sym_PIPE_AMP] = ACTIONS(2144), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_LF] = ACTIONS(2146), + [anon_sym_AMP] = ACTIONS(2144), + }, + [559] = { + [anon_sym_DOLLAR] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2150), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_AT] = ACTIONS(2148), + [anon_sym_QMARK] = ACTIONS(2148), + [anon_sym_0] = ACTIONS(2152), + [anon_sym__] = ACTIONS(2152), + }, + [560] = { + [sym_subscript] = STATE(1041), + [sym_variable_name] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_QMARK] = ACTIONS(2156), + [anon_sym_0] = ACTIONS(2162), + [anon_sym__] = ACTIONS(2162), + }, + [561] = { + [sym_simple_expansion] = STATE(1043), + [sym_expansion] = STATE(1043), + [aux_sym_heredoc_body_repeat1] = STATE(1043), + [sym__heredoc_body_middle] = ACTIONS(2164), + [sym__heredoc_body_end] = ACTIONS(2166), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1009), + [sym_comment] = ACTIONS(53), + }, + [562] = { + [sym_concatenation] = STATE(1046), + [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(2168), + [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2106), - }, - [672] = { - [sym_file_descriptor] = ACTIONS(1123), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_PIPE_AMP] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1123), - [anon_sym_AMP_GT] = ACTIONS(1125), - [anon_sym_AMP_GT_GT] = ACTIONS(1123), - [anon_sym_LT_AMP] = ACTIONS(1123), - [anon_sym_GT_AMP] = ACTIONS(1123), - [sym__special_characters] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), - [anon_sym_BQUOTE] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(1123), - [anon_sym_GT_LPAREN] = ACTIONS(1123), + [sym_raw_string] = ACTIONS(2170), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1123), + [sym_word] = ACTIONS(2170), }, - [673] = { - [sym_concatenation] = STATE(1125), - [sym_string] = STATE(571), - [sym_simple_expansion] = STATE(571), - [sym_string_expansion] = STATE(571), - [sym_expansion] = STATE(571), - [sym_command_substitution] = STATE(571), - [sym_process_substitution] = STATE(571), - [aux_sym_for_statement_repeat1] = STATE(1125), - [anon_sym_RPAREN] = ACTIONS(2443), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), + [563] = { + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(2172), + [sym__heredoc_body_beginning] = ACTIONS(2172), + [sym_file_descriptor] = ACTIONS(2172), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_SEMI_SEMI] = ACTIONS(2174), + [anon_sym_PIPE_AMP] = ACTIONS(2174), + [anon_sym_AMP_AMP] = ACTIONS(2174), + [anon_sym_PIPE_PIPE] = ACTIONS(2174), + [anon_sym_EQ_TILDE] = ACTIONS(2174), + [anon_sym_EQ_EQ] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_GT_GT] = ACTIONS(2174), + [anon_sym_AMP_GT] = ACTIONS(2174), + [anon_sym_AMP_GT_GT] = ACTIONS(2174), + [anon_sym_LT_AMP] = ACTIONS(2174), + [anon_sym_GT_AMP] = ACTIONS(2174), + [anon_sym_LT_LT] = ACTIONS(2174), + [anon_sym_LT_LT_DASH] = ACTIONS(2174), + [anon_sym_LT_LT_LT] = ACTIONS(2174), + [sym__special_characters] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2174), + [sym_raw_string] = ACTIONS(2174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2174), + [anon_sym_BQUOTE] = ACTIONS(2174), + [anon_sym_LT_LPAREN] = ACTIONS(2174), + [anon_sym_GT_LPAREN] = ACTIONS(2174), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_LF] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2174), + }, + [564] = { + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(2176), + [sym__heredoc_body_beginning] = ACTIONS(2176), + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_EQ_TILDE] = ACTIONS(2178), + [anon_sym_EQ_EQ] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2178), + [anon_sym_LT_LT_LT] = ACTIONS(2178), + [sym__special_characters] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [sym_raw_string] = ACTIONS(2178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), + [anon_sym_BQUOTE] = ACTIONS(2178), + [anon_sym_LT_LPAREN] = ACTIONS(2178), + [anon_sym_GT_LPAREN] = ACTIONS(2178), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + }, + [565] = { + [sym__simple_heredoc_body] = ACTIONS(2176), + [sym__heredoc_body_beginning] = ACTIONS(2176), + [sym_file_descriptor] = ACTIONS(2176), + [anon_sym_esac] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_EQ_TILDE] = ACTIONS(2178), + [anon_sym_EQ_EQ] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2178), + [anon_sym_LT_LT_LT] = ACTIONS(2178), + [sym__special_characters] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [sym_raw_string] = ACTIONS(2178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), + [anon_sym_BQUOTE] = ACTIONS(2178), + [anon_sym_LT_LPAREN] = ACTIONS(2178), + [anon_sym_GT_LPAREN] = ACTIONS(2178), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + }, + [566] = { + [aux_sym_concatenation_repeat1] = STATE(1047), + [sym__simple_heredoc_body] = ACTIONS(697), + [sym__heredoc_body_beginning] = ACTIONS(697), + [sym_file_descriptor] = ACTIONS(697), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = 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(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(701), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(701), + [anon_sym_LT_AMP] = ACTIONS(701), + [anon_sym_GT_AMP] = ACTIONS(701), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(701), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(701), + }, + [567] = { + [aux_sym_concatenation_repeat1] = STATE(1047), + [sym__simple_heredoc_body] = ACTIONS(715), + [sym__heredoc_body_beginning] = ACTIONS(715), + [sym_file_descriptor] = ACTIONS(715), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(717), + [anon_sym_PIPE_PIPE] = ACTIONS(717), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(717), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(717), + [anon_sym_LT_AMP] = ACTIONS(717), + [anon_sym_GT_AMP] = ACTIONS(717), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(717), + [anon_sym_LT_LT_LT] = ACTIONS(717), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [568] = { + [sym__simple_heredoc_body] = ACTIONS(715), + [sym__heredoc_body_beginning] = ACTIONS(715), + [sym_file_descriptor] = ACTIONS(715), + [anon_sym_esac] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(717), + [anon_sym_PIPE_PIPE] = ACTIONS(717), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(717), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(717), + [anon_sym_LT_AMP] = ACTIONS(717), + [anon_sym_GT_AMP] = ACTIONS(717), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(717), + [anon_sym_LT_LT_LT] = ACTIONS(717), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [569] = { + [sym__simple_heredoc_body] = ACTIONS(2180), + [sym__heredoc_body_beginning] = ACTIONS(2180), + [sym_file_descriptor] = ACTIONS(2180), + [anon_sym_esac] = ACTIONS(2182), + [anon_sym_PIPE] = ACTIONS(2182), + [anon_sym_RPAREN] = ACTIONS(2182), + [anon_sym_SEMI_SEMI] = ACTIONS(2182), + [anon_sym_PIPE_AMP] = ACTIONS(2182), + [anon_sym_AMP_AMP] = ACTIONS(2182), + [anon_sym_PIPE_PIPE] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_GT] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(2182), + [anon_sym_AMP_GT] = ACTIONS(2182), + [anon_sym_AMP_GT_GT] = ACTIONS(2182), + [anon_sym_LT_AMP] = ACTIONS(2182), + [anon_sym_GT_AMP] = ACTIONS(2182), + [anon_sym_LT_LT] = ACTIONS(2182), + [anon_sym_LT_LT_DASH] = ACTIONS(2182), + [anon_sym_LT_LT_LT] = ACTIONS(2182), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_LF] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2182), + }, + [570] = { + [aux_sym_concatenation_repeat1] = STATE(1047), + [sym__simple_heredoc_body] = ACTIONS(2184), + [sym__heredoc_body_beginning] = ACTIONS(2184), + [sym_file_descriptor] = ACTIONS(2184), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_SEMI_SEMI] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(2186), + [anon_sym_AMP_AMP] = ACTIONS(2186), + [anon_sym_PIPE_PIPE] = ACTIONS(2186), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_GT] = ACTIONS(2186), + [anon_sym_GT_GT] = ACTIONS(2186), + [anon_sym_AMP_GT] = ACTIONS(2186), + [anon_sym_AMP_GT_GT] = ACTIONS(2186), + [anon_sym_LT_AMP] = ACTIONS(2186), + [anon_sym_GT_AMP] = ACTIONS(2186), + [anon_sym_LT_LT] = ACTIONS(2186), + [anon_sym_LT_LT_DASH] = ACTIONS(2186), + [anon_sym_LT_LT_LT] = ACTIONS(2186), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_LF] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + }, + [571] = { + [aux_sym_concatenation_repeat1] = STATE(1047), + [sym__simple_heredoc_body] = ACTIONS(2188), + [sym__heredoc_body_beginning] = ACTIONS(2188), + [sym_file_descriptor] = ACTIONS(2188), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_SEMI_SEMI] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2190), + [anon_sym_LT_LT_LT] = ACTIONS(2190), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2190), + }, + [572] = { + [sym__simple_heredoc_body] = ACTIONS(2188), + [sym__heredoc_body_beginning] = ACTIONS(2188), + [sym_file_descriptor] = ACTIONS(2188), + [anon_sym_esac] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_SEMI_SEMI] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2190), + [anon_sym_LT_LT_LT] = ACTIONS(2190), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2190), + }, + [573] = { + [anon_sym_esac] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2192), + }, + [574] = { + [sym_file_redirect] = STATE(574), + [sym_heredoc_redirect] = STATE(574), + [sym_herestring_redirect] = STATE(574), + [aux_sym_while_statement_repeat1] = STATE(574), + [sym__simple_heredoc_body] = ACTIONS(2196), + [sym__heredoc_body_beginning] = ACTIONS(2196), + [sym_file_descriptor] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_SEMI_SEMI] = ACTIONS(2201), + [anon_sym_PIPE_AMP] = ACTIONS(2201), + [anon_sym_AMP_AMP] = ACTIONS(2201), + [anon_sym_PIPE_PIPE] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2203), + [anon_sym_GT] = ACTIONS(2203), + [anon_sym_GT_GT] = ACTIONS(2203), + [anon_sym_AMP_GT] = ACTIONS(2203), + [anon_sym_AMP_GT_GT] = ACTIONS(2203), + [anon_sym_LT_AMP] = ACTIONS(2203), + [anon_sym_GT_AMP] = ACTIONS(2203), + [anon_sym_LT_LT] = ACTIONS(2206), + [anon_sym_LT_LT_DASH] = ACTIONS(2206), + [anon_sym_LT_LT_LT] = ACTIONS(2209), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2201), + }, + [575] = { + [sym_file_redirect] = STATE(574), + [sym_heredoc_redirect] = STATE(574), + [sym_heredoc_body] = STATE(1048), + [sym_herestring_redirect] = STATE(574), + [aux_sym_while_statement_repeat1] = STATE(574), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(349), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2192), + }, + [576] = { + [sym_concatenation] = STATE(202), + [sym_string] = STATE(200), + [sym_simple_expansion] = STATE(200), + [sym_string_expansion] = STATE(200), + [sym_expansion] = STATE(200), + [sym_command_substitution] = STATE(200), + [sym_process_substitution] = STATE(200), + [aux_sym_command_repeat2] = STATE(576), + [sym__simple_heredoc_body] = ACTIONS(2176), + [sym__heredoc_body_beginning] = ACTIONS(2176), + [sym_file_descriptor] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_EQ_TILDE] = ACTIONS(2212), + [anon_sym_EQ_EQ] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2178), + [anon_sym_LT_LT_LT] = ACTIONS(2178), + [sym__special_characters] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2221), + [sym_raw_string] = ACTIONS(2224), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), + [anon_sym_BQUOTE] = ACTIONS(2233), + [anon_sym_LT_LPAREN] = ACTIONS(2236), + [anon_sym_GT_LPAREN] = ACTIONS(2236), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2224), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + }, + [577] = { + [sym_file_redirect] = STATE(1049), + [sym_heredoc_redirect] = STATE(1049), + [sym_heredoc_body] = STATE(1048), + [sym_herestring_redirect] = STATE(1049), + [sym_concatenation] = STATE(202), + [sym_string] = STATE(200), + [sym_simple_expansion] = STATE(200), + [sym_string_expansion] = STATE(200), + [sym_expansion] = STATE(200), + [sym_command_substitution] = STATE(200), + [sym_process_substitution] = STATE(200), + [aux_sym_while_statement_repeat1] = STATE(1049), + [aux_sym_command_repeat2] = STATE(576), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_EQ_TILDE] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(349), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2192), + }, + [578] = { + [sym_string] = STATE(723), + [sym_simple_expansion] = STATE(723), + [sym_string_expansion] = STATE(723), + [sym_expansion] = STATE(723), + [sym_command_substitution] = STATE(723), + [sym_process_substitution] = STATE(723), + [anon_sym_RBRACK] = ACTIONS(2239), + [sym__special_characters] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1135), + [sym_word] = ACTIONS(1399), }, - [674] = { - [aux_sym_concatenation_repeat1] = STATE(378), - [sym_file_descriptor] = ACTIONS(1145), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_GT] = ACTIONS(1149), - [anon_sym_GT_GT] = ACTIONS(1145), - [anon_sym_AMP_GT] = ACTIONS(1149), - [anon_sym_AMP_GT_GT] = ACTIONS(1145), - [anon_sym_LT_AMP] = ACTIONS(1145), - [anon_sym_GT_AMP] = ACTIONS(1145), - [sym__special_characters] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [anon_sym_DOLLAR] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1145), - [anon_sym_BQUOTE] = ACTIONS(1145), - [anon_sym_LT_LPAREN] = ACTIONS(1145), - [anon_sym_GT_LPAREN] = ACTIONS(1145), + [579] = { + [sym__concat] = ACTIONS(2243), + [anon_sym_EQ] = ACTIONS(2245), + [anon_sym_PLUS_EQ] = ACTIONS(2245), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1145), }, - [675] = { - [aux_sym_concatenation_repeat1] = STATE(378), - [sym_file_descriptor] = ACTIONS(1123), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1123), - [anon_sym_AMP_GT] = ACTIONS(1125), - [anon_sym_AMP_GT_GT] = ACTIONS(1123), - [anon_sym_LT_AMP] = ACTIONS(1123), - [anon_sym_GT_AMP] = ACTIONS(1123), - [sym__special_characters] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), - [anon_sym_BQUOTE] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(1123), - [anon_sym_GT_LPAREN] = ACTIONS(1123), + [580] = { + [aux_sym_concatenation_repeat1] = STATE(1052), + [sym__concat] = ACTIONS(541), + [anon_sym_RBRACK] = ACTIONS(731), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1123), }, - [676] = { - [anon_sym_RPAREN] = ACTIONS(1315), - [anon_sym_AMP_AMP] = ACTIONS(1309), - [anon_sym_PIPE_PIPE] = ACTIONS(1309), - [anon_sym_EQ_TILDE] = ACTIONS(1311), - [anon_sym_EQ_EQ] = ACTIONS(1311), - [anon_sym_EQ] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1309), - [anon_sym_GT] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), + [581] = { + [sym_string] = STATE(723), + [sym_simple_expansion] = STATE(723), + [sym_string_expansion] = STATE(723), + [sym_expansion] = STATE(723), + [sym_command_substitution] = STATE(723), + [sym_process_substitution] = STATE(723), + [anon_sym_RBRACK] = ACTIONS(2247), + [sym__special_characters] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1309), + [sym_word] = ACTIONS(1399), }, - [677] = { - [aux_sym_concatenation_repeat1] = STATE(1126), - [sym__concat] = ACTIONS(555), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_EQ_TILDE] = ACTIONS(705), - [anon_sym_EQ_EQ] = ACTIONS(705), - [anon_sym_EQ] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(705), - [anon_sym_BANG_EQ] = ACTIONS(705), + [582] = { + [sym__concat] = ACTIONS(2249), + [anon_sym_EQ] = ACTIONS(2251), + [anon_sym_PLUS_EQ] = ACTIONS(2251), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(705), }, - [678] = { + [583] = { + [anon_sym_RBRACK] = ACTIONS(2247), + [sym_comment] = ACTIONS(53), + }, + [584] = { + [sym_file_descriptor] = ACTIONS(2253), + [sym_variable_name] = ACTIONS(2253), + [anon_sym_esac] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2255), + [anon_sym_SEMI_SEMI] = ACTIONS(2255), + [anon_sym_PIPE_AMP] = ACTIONS(2255), + [anon_sym_AMP_AMP] = ACTIONS(2255), + [anon_sym_PIPE_PIPE] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_GT] = ACTIONS(2255), + [anon_sym_GT_GT] = ACTIONS(2255), + [anon_sym_AMP_GT] = ACTIONS(2255), + [anon_sym_AMP_GT_GT] = ACTIONS(2255), + [anon_sym_LT_AMP] = ACTIONS(2255), + [anon_sym_GT_AMP] = ACTIONS(2255), + [sym__special_characters] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_DOLLAR] = ACTIONS(2255), + [sym_raw_string] = ACTIONS(2255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2255), + [anon_sym_BQUOTE] = ACTIONS(2255), + [anon_sym_LT_LPAREN] = ACTIONS(2255), + [anon_sym_GT_LPAREN] = ACTIONS(2255), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_LF] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(2255), + }, + [585] = { + [aux_sym_concatenation_repeat1] = STATE(1056), + [sym__concat] = ACTIONS(2257), + [anon_sym_RPAREN] = ACTIONS(2259), + [sym__special_characters] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_DOLLAR] = ACTIONS(2261), + [sym_raw_string] = ACTIONS(2259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2259), + [anon_sym_BQUOTE] = ACTIONS(2259), + [anon_sym_LT_LPAREN] = ACTIONS(2259), + [anon_sym_GT_LPAREN] = ACTIONS(2259), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2259), + }, + [586] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(1059), + [anon_sym_DQUOTE] = ACTIONS(2263), + [anon_sym_DOLLAR] = ACTIONS(2265), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [587] = { + [sym_string] = STATE(1061), + [anon_sym_DQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(2267), + [sym_raw_string] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2267), + [anon_sym_DASH] = ACTIONS(2267), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_AT] = ACTIONS(2267), + [anon_sym_QMARK] = ACTIONS(2267), + [anon_sym_0] = ACTIONS(2273), + [anon_sym__] = ACTIONS(2273), + }, + [588] = { + [aux_sym_concatenation_repeat1] = STATE(1056), + [sym__concat] = ACTIONS(2257), + [anon_sym_RPAREN] = ACTIONS(2275), + [sym__special_characters] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2277), + [sym_raw_string] = ACTIONS(2275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2275), + [anon_sym_BQUOTE] = ACTIONS(2275), + [anon_sym_LT_LPAREN] = ACTIONS(2275), + [anon_sym_GT_LPAREN] = ACTIONS(2275), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2275), + }, + [589] = { + [sym_subscript] = STATE(1067), + [sym_variable_name] = ACTIONS(2279), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_POUND] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2281), + [anon_sym_AT] = ACTIONS(2281), + [anon_sym_QMARK] = ACTIONS(2281), + [anon_sym_0] = ACTIONS(2287), + [anon_sym__] = ACTIONS(2287), + }, + [590] = { + [sym_for_statement] = STATE(1068), + [sym_c_style_for_statement] = STATE(1068), + [sym_while_statement] = STATE(1068), + [sym_if_statement] = STATE(1068), + [sym_case_statement] = STATE(1068), + [sym_function_definition] = STATE(1068), + [sym_subshell] = STATE(1068), + [sym_pipeline] = STATE(1068), + [sym_list] = STATE(1068), + [sym_negated_command] = STATE(1068), + [sym_test_command] = STATE(1068), + [sym_declaration_command] = STATE(1068), + [sym_unset_command] = STATE(1068), + [sym_command] = STATE(1068), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(1069), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [591] = { + [sym_for_statement] = STATE(1070), + [sym_c_style_for_statement] = STATE(1070), + [sym_while_statement] = STATE(1070), + [sym_if_statement] = STATE(1070), + [sym_case_statement] = STATE(1070), + [sym_function_definition] = STATE(1070), + [sym_subshell] = STATE(1070), + [sym_pipeline] = STATE(1070), + [sym_list] = STATE(1070), + [sym_negated_command] = STATE(1070), + [sym_test_command] = STATE(1070), + [sym_declaration_command] = STATE(1070), + [sym_unset_command] = STATE(1070), + [sym_command] = STATE(1070), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(1071), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [592] = { + [sym_for_statement] = STATE(1072), + [sym_c_style_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_if_statement] = STATE(1072), + [sym_case_statement] = STATE(1072), + [sym_function_definition] = STATE(1072), + [sym_subshell] = STATE(1072), + [sym_pipeline] = STATE(1072), + [sym_list] = STATE(1072), + [sym_negated_command] = STATE(1072), + [sym_test_command] = STATE(1072), + [sym_declaration_command] = STATE(1072), + [sym_unset_command] = STATE(1072), + [sym_command] = STATE(1072), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(1073), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [593] = { + [sym_concatenation] = STATE(1075), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1075), + [anon_sym_RPAREN] = ACTIONS(2289), + [sym__special_characters] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym_raw_string] = ACTIONS(1163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1163), + }, + [594] = { + [sym_string] = STATE(1076), + [sym_simple_expansion] = STATE(1076), + [sym_string_expansion] = STATE(1076), + [sym_expansion] = STATE(1076), + [sym_command_substitution] = STATE(1076), + [sym_process_substitution] = STATE(1076), + [sym__special_characters] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [sym_raw_string] = ACTIONS(2291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), + [anon_sym_BQUOTE] = ACTIONS(403), + [anon_sym_LT_LPAREN] = ACTIONS(405), + [anon_sym_GT_LPAREN] = ACTIONS(405), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2291), + }, + [595] = { + [aux_sym_concatenation_repeat1] = STATE(1077), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(1175), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [596] = { + [sym_file_descriptor] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [sym_variable_name] = ACTIONS(735), + [anon_sym_esac] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_GT] = ACTIONS(737), + [anon_sym_AMP_GT] = ACTIONS(737), + [anon_sym_AMP_GT_GT] = ACTIONS(737), + [anon_sym_LT_AMP] = ACTIONS(737), + [anon_sym_GT_AMP] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + }, + [597] = { + [anon_sym_DQUOTE] = ACTIONS(2293), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [598] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(2293), + [anon_sym_DOLLAR] = ACTIONS(2295), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [599] = { + [sym_file_descriptor] = ACTIONS(767), + [sym__concat] = ACTIONS(767), + [sym_variable_name] = ACTIONS(767), + [anon_sym_esac] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_AMP_GT] = ACTIONS(769), + [anon_sym_AMP_GT_GT] = ACTIONS(769), + [anon_sym_LT_AMP] = ACTIONS(769), + [anon_sym_GT_AMP] = ACTIONS(769), + [sym__special_characters] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym_raw_string] = ACTIONS(769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), + [anon_sym_BQUOTE] = ACTIONS(769), + [anon_sym_LT_LPAREN] = ACTIONS(769), + [anon_sym_GT_LPAREN] = ACTIONS(769), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), + }, + [600] = { + [sym_file_descriptor] = ACTIONS(771), + [sym__concat] = ACTIONS(771), + [sym_variable_name] = ACTIONS(771), + [anon_sym_esac] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [sym__special_characters] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_LT_LPAREN] = ACTIONS(773), + [anon_sym_GT_LPAREN] = ACTIONS(773), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(773), + }, + [601] = { + [sym_file_descriptor] = ACTIONS(775), + [sym__concat] = ACTIONS(775), + [sym_variable_name] = ACTIONS(775), + [anon_sym_esac] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [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(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(777), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(777), + [anon_sym_LT_AMP] = ACTIONS(777), + [anon_sym_GT_AMP] = ACTIONS(777), + [sym__special_characters] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(777), + }, + [602] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(2297), + [sym_comment] = ACTIONS(53), + }, + [603] = { + [sym_concatenation] = STATE(1083), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1083), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_EQ] = ACTIONS(2301), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2305), + [anon_sym_COLON] = ACTIONS(2301), + [anon_sym_COLON_QMARK] = ACTIONS(2301), + [anon_sym_COLON_DASH] = ACTIONS(2301), + [anon_sym_PERCENT] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [604] = { + [sym_subscript] = STATE(1087), + [sym_variable_name] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2311), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AT] = ACTIONS(2309), + [anon_sym_QMARK] = ACTIONS(2309), + [anon_sym_0] = ACTIONS(2313), + [anon_sym__] = ACTIONS(2313), + }, + [605] = { + [sym_concatenation] = STATE(1090), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1090), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_EQ] = ACTIONS(2317), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2319), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2317), + [anon_sym_COLON_QMARK] = ACTIONS(2317), + [anon_sym_COLON_DASH] = ACTIONS(2317), + [anon_sym_PERCENT] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [606] = { + [sym_concatenation] = STATE(1093), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1093), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_EQ] = ACTIONS(2325), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2329), + [anon_sym_COLON] = ACTIONS(2325), + [anon_sym_COLON_QMARK] = ACTIONS(2325), + [anon_sym_COLON_DASH] = ACTIONS(2325), + [anon_sym_PERCENT] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [607] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2331), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [608] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2331), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [609] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(2331), + [sym_comment] = ACTIONS(53), + }, + [610] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(2331), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [611] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2333), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [612] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2333), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [613] = { + [sym__expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_unary_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_concatenation] = STATE(1107), + [sym_string] = STATE(1102), + [sym_simple_expansion] = STATE(1102), + [sym_string_expansion] = STATE(1102), + [sym_expansion] = STATE(1102), + [sym_command_substitution] = STATE(1102), + [sym_process_substitution] = STATE(1102), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [sym__special_characters] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [sym_raw_string] = ACTIONS(2347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), + [anon_sym_BQUOTE] = ACTIONS(2353), + [anon_sym_LT_LPAREN] = ACTIONS(2355), + [anon_sym_GT_LPAREN] = ACTIONS(2355), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2357), + [sym_test_operator] = ACTIONS(2359), + }, + [614] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_LF] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2361), + }, + [615] = { + [anon_sym_RPAREN] = ACTIONS(2365), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_PIPE_PIPE] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1393), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1391), + }, + [616] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2367), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_LF] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(2367), + }, + [617] = { + [sym_string] = STATE(1110), + [sym_simple_expansion] = STATE(1110), + [sym_string_expansion] = STATE(1110), + [sym_expansion] = STATE(1110), + [sym_command_substitution] = STATE(1110), + [sym_process_substitution] = STATE(1110), + [sym__special_characters] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(417), + [sym_raw_string] = ACTIONS(2369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), + [anon_sym_BQUOTE] = ACTIONS(1217), + [anon_sym_LT_LPAREN] = ACTIONS(1219), + [anon_sym_GT_LPAREN] = ACTIONS(1219), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2369), + }, + [618] = { + [aux_sym_concatenation_repeat1] = STATE(1111), + [sym__concat] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_EQ_TILDE] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_EQ] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [619] = { + [sym__concat] = ACTIONS(735), + [anon_sym_esac] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [anon_sym_EQ_TILDE] = ACTIONS(737), + [anon_sym_EQ_EQ] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_BANG_EQ] = ACTIONS(737), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + }, + [620] = { + [anon_sym_DQUOTE] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [621] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2373), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [622] = { + [sym__concat] = ACTIONS(767), + [anon_sym_esac] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), + }, + [623] = { + [sym__concat] = ACTIONS(771), + [anon_sym_esac] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(773), + }, + [624] = { + [sym__concat] = ACTIONS(775), + [anon_sym_esac] = ACTIONS(777), + [anon_sym_PIPE] = 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_EQ_TILDE] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(777), + }, + [625] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(2375), + [sym_comment] = ACTIONS(53), + }, + [626] = { + [sym_concatenation] = STATE(1117), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1117), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_EQ] = ACTIONS(2379), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2383), + [anon_sym_COLON] = ACTIONS(2379), + [anon_sym_COLON_QMARK] = ACTIONS(2379), + [anon_sym_COLON_DASH] = ACTIONS(2379), + [anon_sym_PERCENT] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [627] = { + [sym_subscript] = STATE(1121), + [sym_variable_name] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2387), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_AT] = ACTIONS(2387), + [anon_sym_QMARK] = ACTIONS(2387), + [anon_sym_0] = ACTIONS(2391), + [anon_sym__] = ACTIONS(2391), + }, + [628] = { + [sym_concatenation] = STATE(1124), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1124), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_EQ] = ACTIONS(2395), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2397), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2399), + [anon_sym_COLON] = ACTIONS(2395), + [anon_sym_COLON_QMARK] = ACTIONS(2395), + [anon_sym_COLON_DASH] = ACTIONS(2395), + [anon_sym_PERCENT] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [629] = { + [sym_concatenation] = STATE(1127), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1127), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_EQ] = ACTIONS(2403), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2403), + [anon_sym_COLON_QMARK] = ACTIONS(2403), + [anon_sym_COLON_DASH] = ACTIONS(2403), + [anon_sym_PERCENT] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [630] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2409), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [631] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2409), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [632] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(2409), + [sym_comment] = ACTIONS(53), + }, + [633] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(2409), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [634] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [635] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [636] = { + [sym__expression] = STATE(1130), + [sym_binary_expression] = STATE(1130), + [sym_unary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_concatenation] = STATE(1130), + [sym_string] = STATE(230), + [sym_simple_expansion] = STATE(230), + [sym_string_expansion] = STATE(230), + [sym_expansion] = STATE(230), + [sym_command_substitution] = STATE(230), + [sym_process_substitution] = STATE(230), + [anon_sym_SEMI_SEMI] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [sym__special_characters] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(417), + [sym_raw_string] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(419), + [sym_test_operator] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_LF] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2361), + }, + [637] = { + [sym__expression] = STATE(1131), + [sym_binary_expression] = STATE(1131), + [sym_unary_expression] = STATE(1131), + [sym_parenthesized_expression] = STATE(1131), + [sym_concatenation] = STATE(1131), + [sym_string] = STATE(230), + [sym_simple_expansion] = STATE(230), + [sym_string_expansion] = STATE(230), + [sym_expansion] = STATE(230), + [sym_command_substitution] = STATE(230), + [sym_process_substitution] = STATE(230), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(411), + [sym__special_characters] = ACTIONS(1207), + [anon_sym_DQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(417), + [sym_raw_string] = ACTIONS(1211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), + [anon_sym_BQUOTE] = ACTIONS(1217), + [anon_sym_LT_LPAREN] = ACTIONS(1219), + [anon_sym_GT_LPAREN] = ACTIONS(1219), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(419), + [sym_test_operator] = ACTIONS(1221), + }, + [638] = { + [sym__expression] = STATE(1131), + [sym_binary_expression] = STATE(1131), + [sym_unary_expression] = STATE(1131), + [sym_parenthesized_expression] = STATE(1131), + [sym_concatenation] = STATE(1131), + [sym_string] = STATE(230), + [sym_simple_expansion] = STATE(230), + [sym_string_expansion] = STATE(230), + [sym_expansion] = STATE(230), + [sym_command_substitution] = STATE(230), + [sym_process_substitution] = STATE(230), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [sym__special_characters] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(417), + [sym_raw_string] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(419), + [sym_test_operator] = ACTIONS(411), + [sym_regex] = ACTIONS(2413), + }, + [639] = { + [aux_sym_concatenation_repeat1] = STATE(1133), + [sym__concat] = ACTIONS(445), + [anon_sym_SEMI_SEMI] = ACTIONS(2261), + [sym__special_characters] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2261), + [sym_raw_string] = ACTIONS(2261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2261), + [anon_sym_BQUOTE] = ACTIONS(2261), + [anon_sym_LT_LPAREN] = ACTIONS(2261), + [anon_sym_GT_LPAREN] = ACTIONS(2261), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2261), + [anon_sym_LF] = ACTIONS(2259), + [anon_sym_AMP] = ACTIONS(2261), + }, + [640] = { + [aux_sym_concatenation_repeat1] = STATE(1133), + [sym__concat] = ACTIONS(445), + [anon_sym_SEMI_SEMI] = ACTIONS(2277), + [sym__special_characters] = ACTIONS(2277), + [anon_sym_DQUOTE] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2277), + [sym_raw_string] = ACTIONS(2277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2277), + [anon_sym_BQUOTE] = ACTIONS(2277), + [anon_sym_LT_LPAREN] = ACTIONS(2277), + [anon_sym_GT_LPAREN] = ACTIONS(2277), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2277), + [anon_sym_LF] = ACTIONS(2275), + [anon_sym_AMP] = ACTIONS(2277), + }, + [641] = { + [sym_concatenation] = STATE(1135), + [sym_string] = STATE(640), + [sym_simple_expansion] = STATE(640), + [sym_string_expansion] = STATE(640), + [sym_expansion] = STATE(640), + [sym_command_substitution] = STATE(640), + [sym_process_substitution] = STATE(640), + [aux_sym_for_statement_repeat1] = STATE(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(2415), + [sym__special_characters] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(73), + [sym_raw_string] = ACTIONS(2421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2425), + [anon_sym_BQUOTE] = ACTIONS(2427), + [anon_sym_LT_LPAREN] = ACTIONS(2429), + [anon_sym_GT_LPAREN] = ACTIONS(2429), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2421), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_LF] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2415), + }, + [642] = { + [sym__terminated_statement] = STATE(1137), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1137), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [643] = { + [anon_sym_esac] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_SEMI_SEMI] = ACTIONS(2435), + [anon_sym_PIPE_AMP] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LF] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2435), + }, + [644] = { + [sym__simple_heredoc_body] = ACTIONS(2439), + [sym__heredoc_body_beginning] = ACTIONS(2439), + [sym_file_descriptor] = ACTIONS(2439), + [anon_sym_esac] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_SEMI_SEMI] = ACTIONS(2441), + [anon_sym_PIPE_AMP] = ACTIONS(2441), + [anon_sym_AMP_AMP] = ACTIONS(2441), + [anon_sym_PIPE_PIPE] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_GT] = ACTIONS(2441), + [anon_sym_GT_GT] = ACTIONS(2441), + [anon_sym_AMP_GT] = ACTIONS(2441), + [anon_sym_AMP_GT_GT] = ACTIONS(2441), + [anon_sym_LT_AMP] = ACTIONS(2441), + [anon_sym_GT_AMP] = ACTIONS(2441), + [anon_sym_LT_LT] = ACTIONS(2441), + [anon_sym_LT_LT_DASH] = ACTIONS(2441), + [anon_sym_LT_LT_LT] = ACTIONS(2441), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2441), + [anon_sym_LF] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2441), + }, + [645] = { + [sym__terminated_statement] = STATE(1139), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1139), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [646] = { + [anon_sym_esac] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_SEMI_SEMI] = ACTIONS(2445), + [anon_sym_PIPE_AMP] = ACTIONS(2445), [anon_sym_AMP_AMP] = ACTIONS(2445), [anon_sym_PIPE_PIPE] = ACTIONS(2445), - [anon_sym_RBRACK] = ACTIONS(2445), - [anon_sym_EQ_TILDE] = ACTIONS(2445), - [anon_sym_EQ_EQ] = ACTIONS(2445), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_BANG_EQ] = ACTIONS(2445), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2445), + }, + [647] = { + [sym_file_redirect] = STATE(574), + [sym_heredoc_redirect] = STATE(574), + [sym_heredoc_body] = STATE(1140), + [sym_herestring_redirect] = STATE(574), + [aux_sym_while_statement_repeat1] = STATE(574), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_SEMI_SEMI] = ACTIONS(2445), + [anon_sym_PIPE_AMP] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(349), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2445), + }, + [648] = { + [anon_sym_esac] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_SEMI_SEMI] = ACTIONS(2449), + [anon_sym_PIPE_AMP] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LF] = ACTIONS(2451), + [anon_sym_AMP] = ACTIONS(2449), + }, + [649] = { + [sym__terminated_statement] = STATE(1141), + [sym_for_statement] = STATE(39), + [sym_c_style_for_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_subshell] = STATE(39), + [sym_pipeline] = STATE(39), + [sym_list] = STATE(39), + [sym_negated_command] = STATE(39), + [sym_test_command] = STATE(39), + [sym_declaration_command] = STATE(39), + [sym_unset_command] = STATE(39), + [sym_command] = STATE(39), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(40), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2445), + [sym_word] = ACTIONS(55), }, - [679] = { - [sym__expression] = STATE(729), - [sym_binary_expression] = STATE(729), - [sym_unary_expression] = STATE(729), - [sym_parenthesized_expression] = STATE(729), - [sym_concatenation] = STATE(729), - [sym_string] = STATE(288), - [sym_simple_expansion] = STATE(288), - [sym_string_expansion] = STATE(288), - [sym_expansion] = STATE(288), - [sym_command_substitution] = STATE(288), - [sym_process_substitution] = STATE(288), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(505), - [sym__special_characters] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), + [650] = { + [sym__terminated_statement] = STATE(1142), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1142), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(2453), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(511), - [sym_test_operator] = ACTIONS(513), + [sym_word] = ACTIONS(55), }, - [680] = { - [sym__expression] = STATE(729), - [sym_binary_expression] = STATE(729), - [sym_unary_expression] = STATE(729), - [sym_parenthesized_expression] = STATE(729), - [sym_concatenation] = STATE(729), - [sym_string] = STATE(288), - [sym_simple_expansion] = STATE(288), - [sym_string_expansion] = STATE(288), - [sym_expansion] = STATE(288), - [sym_command_substitution] = STATE(288), - [sym_process_substitution] = STATE(288), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(505), - [sym__special_characters] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(1439), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1443), - [anon_sym_BQUOTE] = ACTIONS(1445), - [anon_sym_LT_LPAREN] = ACTIONS(1447), - [anon_sym_GT_LPAREN] = ACTIONS(1447), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(511), - [sym_test_operator] = ACTIONS(505), - [sym_regex] = ACTIONS(1449), - }, - [681] = { - [sym__concat] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_RBRACK] = ACTIONS(1672), - [anon_sym_EQ_TILDE] = ACTIONS(1672), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), + [651] = { + [anon_sym_fi] = ACTIONS(2455), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1672), }, - [682] = { - [aux_sym_concatenation_repeat1] = STATE(682), - [sym__concat] = ACTIONS(2451), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_RBRACK] = ACTIONS(1672), - [anon_sym_EQ_TILDE] = ACTIONS(1672), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), + [652] = { + [sym__terminated_statement] = STATE(1145), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(1146), + [sym_else_clause] = STATE(1144), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1145), + [aux_sym_if_statement_repeat1] = STATE(1146), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(2457), + [anon_sym_elif] = ACTIONS(1269), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1672), + [sym_word] = ACTIONS(55), }, - [683] = { - [sym__concat] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_PIPE_PIPE] = ACTIONS(1679), - [anon_sym_RBRACK] = ACTIONS(1679), - [anon_sym_EQ_TILDE] = ACTIONS(1679), - [anon_sym_EQ_EQ] = ACTIONS(1679), - [anon_sym_EQ] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1679), - [anon_sym_GT] = ACTIONS(1679), - [anon_sym_BANG_EQ] = ACTIONS(1679), + [653] = { + [sym_elif_clause] = STATE(1147), + [sym_else_clause] = STATE(1144), + [aux_sym_if_statement_repeat1] = STATE(1147), + [anon_sym_fi] = ACTIONS(2455), + [anon_sym_elif] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2461), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1679), }, - [684] = { - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [685] = { - [sym_concatenation] = STATE(1131), - [sym_string] = STATE(1130), - [sym_simple_expansion] = STATE(1130), - [sym_string_expansion] = STATE(1130), - [sym_expansion] = STATE(1130), - [sym_command_substitution] = STATE(1130), - [sym_process_substitution] = STATE(1130), - [anon_sym_RBRACE] = ACTIONS(2456), - [sym__special_characters] = ACTIONS(2458), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(2460), + [654] = { + [sym__concat] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), }, - [686] = { - [sym__concat] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_RBRACK] = ACTIONS(1764), - [anon_sym_EQ_TILDE] = ACTIONS(1764), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1764), - }, - [687] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2462), - }, - [688] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [689] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(2466), - [sym_comment] = ACTIONS(53), - }, - [690] = { - [sym_concatenation] = STATE(1137), - [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), - [aux_sym_expansion_repeat1] = STATE(1137), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_EQ] = ACTIONS(2470), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2472), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_COLON] = ACTIONS(2470), - [anon_sym_COLON_QMARK] = ACTIONS(2470), - [anon_sym_COLON_DASH] = ACTIONS(2470), - [anon_sym_PERCENT] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [691] = { - [sym_concatenation] = STATE(1140), - [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), - [aux_sym_expansion_repeat1] = STATE(1140), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_EQ] = ACTIONS(2478), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2482), - [anon_sym_COLON] = ACTIONS(2478), - [anon_sym_COLON_QMARK] = ACTIONS(2478), - [anon_sym_COLON_DASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [692] = { - [sym_concatenation] = STATE(1142), - [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), - [aux_sym_expansion_repeat1] = STATE(1142), - [anon_sym_RBRACE] = ACTIONS(2456), - [anon_sym_EQ] = ACTIONS(2484), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2486), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2488), - [anon_sym_COLON] = ACTIONS(2484), - [anon_sym_COLON_QMARK] = ACTIONS(2484), - [anon_sym_COLON_DASH] = ACTIONS(2484), - [anon_sym_PERCENT] = ACTIONS(2484), - [anon_sym_DASH] = ACTIONS(2484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [693] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_EQ_TILDE] = ACTIONS(1832), - [anon_sym_EQ_EQ] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_GT] = ACTIONS(1832), - [anon_sym_BANG_EQ] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1832), - }, - [694] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2490), - }, - [695] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [696] = { - [sym__concat] = ACTIONS(1840), - [anon_sym_AMP_AMP] = ACTIONS(1840), - [anon_sym_PIPE_PIPE] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_EQ_TILDE] = ACTIONS(1840), - [anon_sym_EQ_EQ] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_BANG_EQ] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1840), - }, - [697] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2494), - }, - [698] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2456), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [699] = { - [sym__concat] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_RBRACK] = ACTIONS(1980), - [anon_sym_EQ_TILDE] = ACTIONS(1980), - [anon_sym_EQ_EQ] = ACTIONS(1980), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_BANG_EQ] = ACTIONS(1980), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1980), - }, - [700] = { - [sym__concat] = ACTIONS(2046), - [anon_sym_AMP_AMP] = ACTIONS(2046), - [anon_sym_PIPE_PIPE] = ACTIONS(2046), - [anon_sym_RBRACK] = ACTIONS(2046), - [anon_sym_EQ_TILDE] = ACTIONS(2046), - [anon_sym_EQ_EQ] = ACTIONS(2046), - [anon_sym_EQ] = ACTIONS(2048), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_GT] = ACTIONS(2046), - [anon_sym_BANG_EQ] = ACTIONS(2046), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2046), - }, - [701] = { - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_RBRACK] = ACTIONS(2496), - [anon_sym_EQ_TILDE] = ACTIONS(2496), - [anon_sym_EQ_EQ] = ACTIONS(2496), - [anon_sym_EQ] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2496), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2496), - }, - [702] = { - [anon_sym_LT] = ACTIONS(2500), - [anon_sym_GT] = ACTIONS(2500), - [anon_sym_GT_GT] = ACTIONS(2502), - [anon_sym_AMP_GT] = ACTIONS(2500), - [anon_sym_AMP_GT_GT] = ACTIONS(2502), - [anon_sym_LT_AMP] = ACTIONS(2502), - [anon_sym_GT_AMP] = ACTIONS(2502), - [sym_comment] = ACTIONS(53), - }, - [703] = { - [sym_concatenation] = STATE(1155), + [655] = { + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(1152), + [sym_concatenation] = STATE(1153), [sym_string] = STATE(1150), [sym_simple_expansion] = STATE(1150), [sym_string_expansion] = STATE(1150), [sym_expansion] = STATE(1150), [sym_command_substitution] = STATE(1150), [sym_process_substitution] = STATE(1150), - [sym__special_characters] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2508), - [sym_raw_string] = ACTIONS(2510), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), - [anon_sym_BQUOTE] = ACTIONS(2516), - [anon_sym_LT_LPAREN] = ACTIONS(2518), - [anon_sym_GT_LPAREN] = ACTIONS(2518), + [aux_sym_case_statement_repeat1] = STATE(1154), + [anon_sym_esac] = ACTIONS(2463), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2510), + [sym_word] = ACTIONS(2469), }, - [704] = { - [sym_heredoc_start] = ACTIONS(2520), + [656] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2471), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_LF] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2471), + }, + [657] = { + [aux_sym_concatenation_repeat1] = STATE(657), + [sym__concat] = ACTIONS(2475), + [anon_sym_in] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [658] = { + [sym__concat] = ACTIONS(1761), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1763), + }, + [659] = { + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [660] = { + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(1158), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1159), + [anon_sym_esac] = ACTIONS(2480), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2469), + }, + [661] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2482), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + }, + [662] = { + [sym_concatenation] = STATE(1164), + [sym_string] = STATE(1163), + [sym_simple_expansion] = STATE(1163), + [sym_string_expansion] = STATE(1163), + [sym_expansion] = STATE(1163), + [sym_command_substitution] = STATE(1163), + [sym_process_substitution] = STATE(1163), + [anon_sym_RBRACE] = ACTIONS(2486), + [sym__special_characters] = ACTIONS(2488), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(2490), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2490), + }, + [663] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = ACTIONS(1848), + [sym__special_characters] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), + [anon_sym_BQUOTE] = ACTIONS(1848), + [anon_sym_LT_LPAREN] = ACTIONS(1848), + [anon_sym_GT_LPAREN] = ACTIONS(1848), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [664] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2492), + }, + [665] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [666] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(2496), [sym_comment] = ACTIONS(53), }, - [705] = { - [sym_concatenation] = STATE(1159), - [sym_string] = STATE(1158), - [sym_simple_expansion] = STATE(1158), - [sym_string_expansion] = STATE(1158), - [sym_expansion] = STATE(1158), - [sym_command_substitution] = STATE(1158), - [sym_process_substitution] = STATE(1158), - [sym__special_characters] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2508), - [sym_raw_string] = ACTIONS(2524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), - [anon_sym_BQUOTE] = ACTIONS(2516), - [anon_sym_LT_LPAREN] = ACTIONS(2518), - [anon_sym_GT_LPAREN] = ACTIONS(2518), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2524), + [667] = { + [sym_concatenation] = STATE(1170), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1170), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_EQ] = ACTIONS(2500), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2500), + [anon_sym_COLON_QMARK] = ACTIONS(2500), + [anon_sym_COLON_DASH] = ACTIONS(2500), + [anon_sym_PERCENT] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [706] = { - [sym_file_redirect] = STATE(1160), - [sym_heredoc_redirect] = STATE(1160), - [sym_herestring_redirect] = STATE(1160), - [aux_sym_while_statement_repeat1] = STATE(1160), - [sym_file_descriptor] = ACTIONS(1361), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_SEMI_SEMI] = ACTIONS(2526), - [anon_sym_PIPE_AMP] = ACTIONS(2526), - [anon_sym_AMP_AMP] = ACTIONS(2526), - [anon_sym_PIPE_PIPE] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1367), - [anon_sym_LT_LT_DASH] = ACTIONS(1367), - [anon_sym_LT_LT_LT] = ACTIONS(1369), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2526), - [anon_sym_LF] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), + [668] = { + [sym_concatenation] = STATE(1173), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1173), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_EQ] = ACTIONS(2508), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2510), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_COLON] = ACTIONS(2508), + [anon_sym_COLON_QMARK] = ACTIONS(2508), + [anon_sym_COLON_DASH] = ACTIONS(2508), + [anon_sym_PERCENT] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [707] = { - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_RBRACK] = ACTIONS(2496), - [anon_sym_EQ_TILDE] = ACTIONS(2496), - [anon_sym_EQ_EQ] = ACTIONS(2496), - [anon_sym_EQ] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2496), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2496), + [669] = { + [sym_concatenation] = STATE(1175), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1175), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_EQ] = ACTIONS(2514), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2514), + [anon_sym_COLON_QMARK] = ACTIONS(2514), + [anon_sym_COLON_DASH] = ACTIONS(2514), + [anon_sym_PERCENT] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [708] = { - [anon_sym_RPAREN] = ACTIONS(2445), - [anon_sym_AMP_AMP] = ACTIONS(2445), - [anon_sym_PIPE_PIPE] = ACTIONS(2445), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2445), - [anon_sym_EQ_TILDE] = ACTIONS(2445), - [anon_sym_EQ_EQ] = ACTIONS(2445), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2445), + [670] = { + [sym__concat] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [sym__special_characters] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_LT_LPAREN] = ACTIONS(1916), + [anon_sym_GT_LPAREN] = ACTIONS(1916), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1916), }, - [709] = { - [sym__concat] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1672), - [anon_sym_EQ_TILDE] = ACTIONS(1672), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1672), + [671] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2520), }, - [710] = { - [aux_sym_concatenation_repeat1] = STATE(710), - [sym__concat] = ACTIONS(2530), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1672), - [anon_sym_EQ_TILDE] = ACTIONS(1672), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1672), + [672] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [711] = { - [sym__concat] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_PIPE_PIPE] = ACTIONS(1679), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1679), - [anon_sym_EQ_TILDE] = ACTIONS(1679), - [anon_sym_EQ_EQ] = ACTIONS(1679), - [anon_sym_EQ] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1679), - [anon_sym_GT] = ACTIONS(1679), - [anon_sym_BANG_EQ] = ACTIONS(1679), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1679), + [673] = { + [sym__concat] = ACTIONS(1922), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1924), }, - [712] = { - [anon_sym_DQUOTE] = ACTIONS(2533), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), + [674] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2524), }, - [713] = { - [sym_concatenation] = STATE(1165), - [sym_string] = STATE(1164), - [sym_simple_expansion] = STATE(1164), - [sym_string_expansion] = STATE(1164), - [sym_expansion] = STATE(1164), - [sym_command_substitution] = STATE(1164), - [sym_process_substitution] = STATE(1164), - [anon_sym_RBRACE] = ACTIONS(2535), - [sym__special_characters] = ACTIONS(2537), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(2539), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2539), + [675] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [714] = { - [sym__concat] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1764), - [anon_sym_EQ_TILDE] = ACTIONS(1764), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1764), + [676] = { + [sym__concat] = ACTIONS(2066), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_SEMI_SEMI] = ACTIONS(2068), + [sym__special_characters] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), + [anon_sym_BQUOTE] = ACTIONS(2068), + [anon_sym_LT_LPAREN] = ACTIONS(2068), + [anon_sym_GT_LPAREN] = ACTIONS(2068), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_LF] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2068), }, - [715] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2541), + [677] = { + [sym__concat] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2134), + [anon_sym_SEMI_SEMI] = ACTIONS(2134), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), + [anon_sym_BQUOTE] = ACTIONS(2134), + [anon_sym_LT_LPAREN] = ACTIONS(2134), + [anon_sym_GT_LPAREN] = ACTIONS(2134), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), }, - [716] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [717] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(2545), + [678] = { + [sym_compound_statement] = STATE(1179), + [anon_sym_LBRACE] = ACTIONS(483), [sym_comment] = ACTIONS(53), }, - [718] = { - [sym_concatenation] = STATE(1171), - [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), - [aux_sym_expansion_repeat1] = STATE(1171), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_EQ] = ACTIONS(2549), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2551), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2553), - [anon_sym_COLON] = ACTIONS(2549), - [anon_sym_COLON_QMARK] = ACTIONS(2549), - [anon_sym_COLON_DASH] = ACTIONS(2549), - [anon_sym_PERCENT] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [679] = { + [sym_file_descriptor] = ACTIONS(2526), + [anon_sym_esac] = ACTIONS(2528), + [anon_sym_PIPE] = ACTIONS(2528), + [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(2528), + [anon_sym_GT] = ACTIONS(2528), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_AMP_GT] = ACTIONS(2528), + [anon_sym_AMP_GT_GT] = ACTIONS(2528), + [anon_sym_LT_AMP] = ACTIONS(2528), + [anon_sym_GT_AMP] = ACTIONS(2528), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2528), + [anon_sym_LF] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), }, - [719] = { - [sym_concatenation] = STATE(1174), - [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), - [aux_sym_expansion_repeat1] = STATE(1174), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_EQ] = ACTIONS(2557), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2561), - [anon_sym_COLON] = ACTIONS(2557), - [anon_sym_COLON_QMARK] = ACTIONS(2557), - [anon_sym_COLON_DASH] = ACTIONS(2557), - [anon_sym_PERCENT] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [680] = { + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(2530), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2530), }, - [720] = { - [sym_concatenation] = STATE(1176), - [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), - [aux_sym_expansion_repeat1] = STATE(1176), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_EQ] = ACTIONS(2563), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2567), - [anon_sym_COLON] = ACTIONS(2563), - [anon_sym_COLON_QMARK] = ACTIONS(2563), - [anon_sym_COLON_DASH] = ACTIONS(2563), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [681] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(2530), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2530), }, - [721] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1832), - [anon_sym_EQ_TILDE] = ACTIONS(1832), - [anon_sym_EQ_EQ] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_GT] = ACTIONS(1832), - [anon_sym_BANG_EQ] = ACTIONS(1832), + [682] = { + [sym__terminated_statement] = STATE(1182), + [sym_for_statement] = STATE(680), + [sym_c_style_for_statement] = STATE(680), + [sym_while_statement] = STATE(680), + [sym_if_statement] = STATE(680), + [sym_case_statement] = STATE(680), + [sym_function_definition] = STATE(680), + [sym_subshell] = STATE(680), + [sym_pipeline] = STATE(680), + [sym_list] = STATE(680), + [sym_negated_command] = STATE(680), + [sym_test_command] = STATE(680), + [sym_declaration_command] = STATE(680), + [sym_unset_command] = STATE(680), + [sym_command] = STATE(680), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(681), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1182), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1832), + [sym_word] = ACTIONS(55), }, - [722] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2569), - }, - [723] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [724] = { - [sym__concat] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_AMP_AMP] = ACTIONS(1840), - [anon_sym_PIPE_PIPE] = ACTIONS(1840), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1840), - [anon_sym_EQ_TILDE] = ACTIONS(1840), - [anon_sym_EQ_EQ] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_BANG_EQ] = ACTIONS(1840), + [683] = { + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_GT] = ACTIONS(2536), + [anon_sym_GT_GT] = ACTIONS(2538), + [anon_sym_AMP_GT] = ACTIONS(2536), + [anon_sym_AMP_GT_GT] = ACTIONS(2538), + [anon_sym_LT_AMP] = ACTIONS(2538), + [anon_sym_GT_AMP] = ACTIONS(2538), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1840), }, - [725] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2573), - }, - [726] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [727] = { - [sym__concat] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1980), - [anon_sym_EQ_TILDE] = ACTIONS(1980), - [anon_sym_EQ_EQ] = ACTIONS(1980), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_BANG_EQ] = ACTIONS(1980), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1980), - }, - [728] = { - [sym__concat] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2046), - [anon_sym_AMP_AMP] = ACTIONS(2046), - [anon_sym_PIPE_PIPE] = ACTIONS(2046), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2046), - [anon_sym_EQ_TILDE] = ACTIONS(2046), - [anon_sym_EQ_EQ] = ACTIONS(2046), - [anon_sym_EQ] = ACTIONS(2048), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_GT] = ACTIONS(2046), - [anon_sym_BANG_EQ] = ACTIONS(2046), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2046), - }, - [729] = { - [anon_sym_RPAREN] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2496), - [anon_sym_EQ_TILDE] = ACTIONS(2496), - [anon_sym_EQ_EQ] = ACTIONS(2496), - [anon_sym_EQ] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2496), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2496), - }, - [730] = { - [anon_sym_RPAREN] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2496), - [anon_sym_EQ_TILDE] = ACTIONS(2496), - [anon_sym_EQ_EQ] = ACTIONS(2496), - [anon_sym_EQ] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2496), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2496), - }, - [731] = { - [sym_variable_name] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1125), - [anon_sym_SEMI_SEMI] = ACTIONS(1125), - [anon_sym_PIPE_AMP] = ACTIONS(1125), - [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1125), - [sym__special_characters] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), - [anon_sym_BQUOTE] = ACTIONS(1125), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), - [sym_word] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LF] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - }, - [732] = { - [sym_concatenation] = STATE(1181), - [sym_string] = STATE(571), - [sym_simple_expansion] = STATE(571), - [sym_string_expansion] = STATE(571), - [sym_expansion] = STATE(571), - [sym_command_substitution] = STATE(571), - [sym_process_substitution] = STATE(571), - [aux_sym_for_statement_repeat1] = STATE(1181), - [anon_sym_RPAREN] = ACTIONS(2575), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1135), - }, - [733] = { - [aux_sym_concatenation_repeat1] = STATE(338), - [sym__concat] = ACTIONS(587), - [sym_variable_name] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_SEMI_SEMI] = ACTIONS(1149), - [anon_sym_PIPE_AMP] = ACTIONS(1149), - [anon_sym_AMP_AMP] = ACTIONS(1149), - [anon_sym_PIPE_PIPE] = ACTIONS(1149), - [sym__special_characters] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [anon_sym_DOLLAR] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1149), - [anon_sym_BQUOTE] = ACTIONS(1149), - [anon_sym_LT_LPAREN] = ACTIONS(1149), - [anon_sym_GT_LPAREN] = ACTIONS(1149), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1149), - [sym_word] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym_LF] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1149), - }, - [734] = { - [aux_sym_concatenation_repeat1] = STATE(338), - [sym__concat] = ACTIONS(587), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_SEMI_SEMI] = ACTIONS(1125), - [anon_sym_PIPE_AMP] = ACTIONS(1125), - [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1125), - [sym__special_characters] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), - [anon_sym_BQUOTE] = ACTIONS(1125), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), - [sym_word] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LF] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - }, - [735] = { - [sym__concat] = ACTIONS(1672), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [736] = { - [aux_sym_concatenation_repeat1] = STATE(736), - [sym__concat] = ACTIONS(2577), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [737] = { - [sym__concat] = ACTIONS(1679), - [sym_variable_name] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__special_characters] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), - [sym_word] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - }, - [738] = { - [anon_sym_DQUOTE] = ACTIONS(2580), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [739] = { + [684] = { [sym_concatenation] = STATE(1186), [sym_string] = STATE(1185), [sym_simple_expansion] = STATE(1185), @@ -26386,2719 +26152,3722 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1185), [sym_command_substitution] = STATE(1185), [sym_process_substitution] = STATE(1185), - [anon_sym_RBRACE] = ACTIONS(2582), - [sym__special_characters] = ACTIONS(2584), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(2586), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(665), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(2542), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1633), + [anon_sym_LT_LPAREN] = ACTIONS(1635), + [anon_sym_GT_LPAREN] = ACTIONS(1635), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2586), + [sym_word] = ACTIONS(2542), }, - [740] = { - [sym__concat] = ACTIONS(1764), - [sym_variable_name] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_SEMI_SEMI] = ACTIONS(1766), - [anon_sym_PIPE_AMP] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [sym__special_characters] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), - [sym_word] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1766), + [685] = { + [anon_sym_esac] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2544), + [anon_sym_SEMI_SEMI] = ACTIONS(2544), + [anon_sym_PIPE_AMP] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_LF] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), }, - [741] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2588), + [686] = { + [aux_sym_concatenation_repeat1] = STATE(1187), + [sym_file_descriptor] = ACTIONS(1173), + [sym__concat] = ACTIONS(1175), + [sym_variable_name] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_SEMI_SEMI] = ACTIONS(1177), + [anon_sym_PIPE_AMP] = ACTIONS(1177), + [anon_sym_AMP_AMP] = ACTIONS(1177), + [anon_sym_PIPE_PIPE] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_GT_GT] = ACTIONS(1177), + [anon_sym_AMP_GT] = ACTIONS(1177), + [anon_sym_AMP_GT_GT] = ACTIONS(1177), + [anon_sym_LT_AMP] = ACTIONS(1177), + [anon_sym_GT_AMP] = ACTIONS(1177), + [sym__special_characters] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1177), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(1177), + [anon_sym_LT_LPAREN] = ACTIONS(1177), + [anon_sym_GT_LPAREN] = ACTIONS(1177), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1177), }, - [742] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [687] = { + [aux_sym_concatenation_repeat1] = STATE(1187), + [sym_file_descriptor] = ACTIONS(1151), + [sym__concat] = ACTIONS(1175), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_SEMI_SEMI] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1153), + [anon_sym_PIPE_PIPE] = ACTIONS(1153), + [anon_sym_LT] = ACTIONS(1153), + [anon_sym_GT] = ACTIONS(1153), + [anon_sym_GT_GT] = ACTIONS(1153), + [anon_sym_AMP_GT] = ACTIONS(1153), + [anon_sym_AMP_GT_GT] = ACTIONS(1153), + [anon_sym_LT_AMP] = ACTIONS(1153), + [anon_sym_GT_AMP] = ACTIONS(1153), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_LT_LPAREN] = ACTIONS(1153), + [anon_sym_GT_LPAREN] = ACTIONS(1153), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_LF] = ACTIONS(1151), + [anon_sym_AMP] = ACTIONS(1153), }, - [743] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(2592), + [688] = { + [sym_file_redirect] = STATE(1188), + [sym_heredoc_redirect] = STATE(1188), + [sym_heredoc_body] = STATE(646), + [sym_herestring_redirect] = STATE(1188), + [aux_sym_while_statement_repeat1] = STATE(1188), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(515), + [anon_sym_AMP_GT_GT] = ACTIONS(515), + [anon_sym_LT_AMP] = ACTIONS(515), + [anon_sym_GT_AMP] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(517), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LF] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1263), + }, + [689] = { + [anon_sym_RPAREN] = ACTIONS(2548), [sym_comment] = ACTIONS(53), }, - [744] = { - [sym_concatenation] = STATE(1192), - [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), - [aux_sym_expansion_repeat1] = STATE(1192), - [anon_sym_RBRACE] = ACTIONS(2594), - [anon_sym_EQ] = ACTIONS(2596), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2600), - [anon_sym_COLON] = ACTIONS(2596), - [anon_sym_COLON_QMARK] = ACTIONS(2596), - [anon_sym_COLON_DASH] = ACTIONS(2596), - [anon_sym_PERCENT] = ACTIONS(2596), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [690] = { + [sym_file_redirect] = STATE(685), + [sym_file_descriptor] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_RPAREN] = ACTIONS(1335), + [anon_sym_SEMI_SEMI] = ACTIONS(1335), + [anon_sym_PIPE_AMP] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_GT] = ACTIONS(2552), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_AMP_GT] = ACTIONS(2552), + [anon_sym_AMP_GT_GT] = ACTIONS(2552), + [anon_sym_LT_AMP] = ACTIONS(2552), + [anon_sym_GT_AMP] = ACTIONS(2552), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_LF] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1335), }, - [745] = { - [sym_concatenation] = STATE(1195), - [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), - [aux_sym_expansion_repeat1] = STATE(1195), - [anon_sym_RBRACE] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2604), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2606), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2608), - [anon_sym_COLON] = ACTIONS(2604), - [anon_sym_COLON_QMARK] = ACTIONS(2604), - [anon_sym_COLON_DASH] = ACTIONS(2604), - [anon_sym_PERCENT] = ACTIONS(2604), - [anon_sym_DASH] = ACTIONS(2604), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [691] = { + [sym_file_redirect] = STATE(1195), + [sym_heredoc_redirect] = STATE(1195), + [sym_herestring_redirect] = STATE(1195), + [aux_sym_while_statement_repeat1] = STATE(1195), + [sym_file_descriptor] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_SEMI_SEMI] = ACTIONS(1445), + [anon_sym_PIPE_AMP] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_GT] = ACTIONS(2556), + [anon_sym_GT_GT] = ACTIONS(2556), + [anon_sym_AMP_GT] = ACTIONS(2556), + [anon_sym_AMP_GT_GT] = ACTIONS(2556), + [anon_sym_LT_AMP] = ACTIONS(2556), + [anon_sym_GT_AMP] = ACTIONS(2556), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_LT_LT_DASH] = ACTIONS(1449), + [anon_sym_LT_LT_LT] = ACTIONS(2558), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1445), }, - [746] = { - [sym_concatenation] = STATE(1197), - [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), - [aux_sym_expansion_repeat1] = STATE(1197), - [anon_sym_RBRACE] = ACTIONS(2582), - [anon_sym_EQ] = ACTIONS(2610), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2614), - [anon_sym_COLON] = ACTIONS(2610), - [anon_sym_COLON_QMARK] = ACTIONS(2610), - [anon_sym_COLON_DASH] = ACTIONS(2610), - [anon_sym_PERCENT] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [747] = { - [sym__concat] = ACTIONS(1832), - [sym_variable_name] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__special_characters] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), - [sym_word] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [748] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2616), - }, - [749] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [750] = { - [sym__concat] = ACTIONS(1840), - [sym_variable_name] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_SEMI_SEMI] = ACTIONS(1842), - [anon_sym_PIPE_AMP] = ACTIONS(1842), - [anon_sym_AMP_AMP] = ACTIONS(1842), - [anon_sym_PIPE_PIPE] = ACTIONS(1842), - [sym__special_characters] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1842), - [anon_sym_GT_LPAREN] = ACTIONS(1842), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), - [sym_word] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LF] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1842), - }, - [751] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2620), - }, - [752] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2582), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [753] = { - [sym__concat] = ACTIONS(1980), - [sym_variable_name] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1982), - [anon_sym_PIPE_AMP] = ACTIONS(1982), - [anon_sym_AMP_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [sym__special_characters] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), - [anon_sym_BQUOTE] = ACTIONS(1982), - [anon_sym_LT_LPAREN] = ACTIONS(1982), - [anon_sym_GT_LPAREN] = ACTIONS(1982), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), - [sym_word] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [754] = { - [sym__concat] = ACTIONS(2046), - [sym_variable_name] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2048), - [anon_sym_SEMI_SEMI] = ACTIONS(2048), - [anon_sym_PIPE_AMP] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [sym__special_characters] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2048), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2048), - [anon_sym_BQUOTE] = ACTIONS(2048), - [anon_sym_LT_LPAREN] = ACTIONS(2048), - [anon_sym_GT_LPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2048), - [sym_word] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LF] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2048), - }, - [755] = { - [sym__concat] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [756] = { - [aux_sym_concatenation_repeat1] = STATE(756), - [sym__concat] = ACTIONS(2622), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [757] = { - [sym__concat] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__special_characters] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), - [sym_word] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - }, - [758] = { - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [759] = { - [sym_concatenation] = STATE(1205), - [sym_string] = STATE(1204), - [sym_simple_expansion] = STATE(1204), - [sym_string_expansion] = STATE(1204), - [sym_expansion] = STATE(1204), - [sym_command_substitution] = STATE(1204), - [sym_process_substitution] = STATE(1204), - [anon_sym_RBRACE] = ACTIONS(2627), - [sym__special_characters] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(2631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), + [692] = { + [sym_concatenation] = STATE(773), + [sym_string] = STATE(1197), + [sym_array] = STATE(773), + [sym_simple_expansion] = STATE(1197), + [sym_string_expansion] = STATE(1197), + [sym_expansion] = STATE(1197), + [sym_command_substitution] = STATE(1197), + [sym_process_substitution] = STATE(1197), + [sym__empty_value] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1535), + [sym__special_characters] = ACTIONS(2560), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(2562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1541), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1545), + [anon_sym_LT_LPAREN] = ACTIONS(1547), + [anon_sym_GT_LPAREN] = ACTIONS(1547), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2631), + [sym_word] = ACTIONS(2562), }, - [760] = { - [sym__concat] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_SEMI_SEMI] = ACTIONS(1766), - [anon_sym_PIPE_AMP] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [sym__special_characters] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), - [sym_word] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1766), + [693] = { + [aux_sym_concatenation_repeat1] = STATE(1198), + [sym__concat] = ACTIONS(613), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, - [761] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2633), + [694] = { + [sym_variable_assignment] = STATE(104), + [sym_subscript] = STATE(276), + [sym_concatenation] = STATE(104), + [sym_string] = STATE(275), + [sym_simple_expansion] = STATE(275), + [sym_string_expansion] = STATE(275), + [sym_expansion] = STATE(275), + [sym_command_substitution] = STATE(275), + [sym_process_substitution] = STATE(275), + [aux_sym_declaration_command_repeat1] = STATE(694), + [sym_variable_name] = ACTIONS(2564), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [anon_sym_SEMI_SEMI] = ACTIONS(1596), + [anon_sym_PIPE_AMP] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [sym__special_characters] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1604), + [sym_raw_string] = ACTIONS(2570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1613), + [anon_sym_BQUOTE] = ACTIONS(1616), + [anon_sym_LT_LPAREN] = ACTIONS(1619), + [anon_sym_GT_LPAREN] = ACTIONS(1619), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1622), + [sym_word] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_LF] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1596), }, - [762] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [695] = { + [aux_sym_concatenation_repeat1] = STATE(1199), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, - [763] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(2637), - [sym_comment] = ACTIONS(53), - }, - [764] = { - [sym_concatenation] = STATE(1211), - [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), - [aux_sym_expansion_repeat1] = STATE(1211), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_EQ] = ACTIONS(2641), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2643), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2645), - [anon_sym_COLON] = ACTIONS(2641), - [anon_sym_COLON_QMARK] = ACTIONS(2641), - [anon_sym_COLON_DASH] = ACTIONS(2641), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [765] = { - [sym_concatenation] = STATE(1214), - [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), - [aux_sym_expansion_repeat1] = STATE(1214), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2651), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2649), - [anon_sym_COLON_QMARK] = ACTIONS(2649), - [anon_sym_COLON_DASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [766] = { - [sym_concatenation] = STATE(1216), - [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), - [aux_sym_expansion_repeat1] = STATE(1216), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_EQ] = ACTIONS(2655), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2659), - [anon_sym_COLON] = ACTIONS(2655), - [anon_sym_COLON_QMARK] = ACTIONS(2655), - [anon_sym_COLON_DASH] = ACTIONS(2655), - [anon_sym_PERCENT] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [767] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__special_characters] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), - [sym_word] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [768] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2661), - }, - [769] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2663), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [770] = { - [sym__concat] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_SEMI_SEMI] = ACTIONS(1842), - [anon_sym_PIPE_AMP] = ACTIONS(1842), - [anon_sym_AMP_AMP] = ACTIONS(1842), - [anon_sym_PIPE_PIPE] = ACTIONS(1842), - [sym__special_characters] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1842), - [anon_sym_GT_LPAREN] = ACTIONS(1842), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), - [sym_word] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LF] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1842), - }, - [771] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2665), - }, - [772] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [773] = { - [sym__concat] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1982), - [anon_sym_PIPE_AMP] = ACTIONS(1982), - [anon_sym_AMP_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [sym__special_characters] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), - [anon_sym_BQUOTE] = ACTIONS(1982), - [anon_sym_LT_LPAREN] = ACTIONS(1982), - [anon_sym_GT_LPAREN] = ACTIONS(1982), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), - [sym_word] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [774] = { - [sym__concat] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2048), - [anon_sym_SEMI_SEMI] = ACTIONS(2048), - [anon_sym_PIPE_AMP] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [sym__special_characters] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2048), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2048), - [anon_sym_BQUOTE] = ACTIONS(2048), - [anon_sym_LT_LPAREN] = ACTIONS(2048), - [anon_sym_GT_LPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2048), - [sym_word] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LF] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2048), - }, - [775] = { - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(1672), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1672), - [anon_sym_LT_AMP] = ACTIONS(1672), - [anon_sym_GT_AMP] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1672), - }, - [776] = { - [aux_sym_concatenation_repeat1] = STATE(776), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(2667), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1672), - [anon_sym_LT_AMP] = ACTIONS(1672), - [anon_sym_GT_AMP] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1672), - }, - [777] = { - [sym_file_descriptor] = ACTIONS(1679), - [sym__concat] = ACTIONS(1679), - [sym_variable_name] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1681), + [696] = { + [sym_concatenation] = STATE(696), + [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_unset_command_repeat1] = STATE(696), + [anon_sym_PIPE] = ACTIONS(1679), [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_SEMI_SEMI] = ACTIONS(1679), [anon_sym_PIPE_AMP] = ACTIONS(1679), [anon_sym_AMP_AMP] = ACTIONS(1679), [anon_sym_PIPE_PIPE] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1679), - [anon_sym_AMP_GT] = ACTIONS(1681), - [anon_sym_AMP_GT_GT] = ACTIONS(1679), - [anon_sym_LT_AMP] = ACTIONS(1679), - [anon_sym_GT_AMP] = ACTIONS(1679), - [sym__special_characters] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1679), - [anon_sym_BQUOTE] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1679), - [anon_sym_GT_LPAREN] = ACTIONS(1679), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1679), + [sym__special_characters] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(1684), + [anon_sym_DOLLAR] = ACTIONS(1687), + [sym_raw_string] = ACTIONS(2576), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1699), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1705), + [sym_word] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_LF] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1679), }, - [778] = { - [anon_sym_DQUOTE] = ACTIONS(2670), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [779] = { - [sym_concatenation] = STATE(1224), - [sym_string] = STATE(1223), - [sym_simple_expansion] = STATE(1223), - [sym_string_expansion] = STATE(1223), - [sym_expansion] = STATE(1223), - [sym_command_substitution] = STATE(1223), - [sym_process_substitution] = STATE(1223), - [anon_sym_RBRACE] = ACTIONS(2672), - [sym__special_characters] = ACTIONS(2674), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(2676), + [697] = { + [aux_sym_concatenation_repeat1] = STATE(697), + [sym__simple_heredoc_body] = ACTIONS(1754), + [sym__heredoc_body_beginning] = ACTIONS(1754), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_EQ_TILDE] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1756), + [anon_sym_LT_LT_LT] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), }, - [780] = { - [sym_file_descriptor] = ACTIONS(1764), - [sym__concat] = ACTIONS(1764), - [sym_variable_name] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1764), - [anon_sym_PIPE_AMP] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_GT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1764), - [anon_sym_AMP_GT] = ACTIONS(1766), - [anon_sym_AMP_GT_GT] = ACTIONS(1764), - [anon_sym_LT_AMP] = ACTIONS(1764), - [anon_sym_GT_AMP] = ACTIONS(1764), - [sym__special_characters] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1764), - [anon_sym_BQUOTE] = ACTIONS(1764), - [anon_sym_LT_LPAREN] = ACTIONS(1764), - [anon_sym_GT_LPAREN] = ACTIONS(1764), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1764), - }, - [781] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2678), - }, - [782] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [783] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(2682), + [698] = { + [sym_compound_statement] = STATE(1200), + [anon_sym_LBRACE] = ACTIONS(483), [sym_comment] = ACTIONS(53), }, - [784] = { - [sym_concatenation] = STATE(1230), - [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), - [aux_sym_expansion_repeat1] = STATE(1230), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_EQ] = ACTIONS(2686), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2690), - [anon_sym_COLON] = ACTIONS(2686), - [anon_sym_COLON_QMARK] = ACTIONS(2686), - [anon_sym_COLON_DASH] = ACTIONS(2686), - [anon_sym_PERCENT] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [699] = { + [anon_sym_esac] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_RPAREN] = ACTIONS(2579), + [anon_sym_SEMI_SEMI] = ACTIONS(2579), + [anon_sym_PIPE_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_LF] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2579), }, - [785] = { - [sym_concatenation] = STATE(1233), - [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), - [aux_sym_expansion_repeat1] = STATE(1233), - [anon_sym_RBRACE] = ACTIONS(2692), - [anon_sym_EQ] = ACTIONS(2694), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2696), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2698), - [anon_sym_COLON] = ACTIONS(2694), - [anon_sym_COLON_QMARK] = ACTIONS(2694), - [anon_sym_COLON_DASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [700] = { + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_SEMI_SEMI] = ACTIONS(2140), + [anon_sym_PIPE_AMP] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_LF] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2140), }, - [786] = { - [sym_concatenation] = STATE(1235), - [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), - [aux_sym_expansion_repeat1] = STATE(1235), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_EQ] = ACTIONS(2700), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [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_DASH] = ACTIONS(2700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [701] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_SEMI_SEMI] = ACTIONS(2140), + [anon_sym_PIPE_AMP] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_LF] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2140), }, - [787] = { - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [sym_variable_name] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1832), - [anon_sym_LT_AMP] = ACTIONS(1832), - [anon_sym_GT_AMP] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), + [702] = { + [sym_concatenation] = STATE(1046), + [sym_string] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_string_expansion] = STATE(1202), + [sym_expansion] = STATE(1202), + [sym_command_substitution] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [sym__special_characters] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2585), + }, + [703] = { + [aux_sym_concatenation_repeat1] = STATE(281), + [sym__simple_heredoc_body] = ACTIONS(2172), + [sym__heredoc_body_beginning] = ACTIONS(2172), + [sym_file_descriptor] = ACTIONS(2172), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_RPAREN] = ACTIONS(2174), + [anon_sym_SEMI_SEMI] = ACTIONS(2174), + [anon_sym_PIPE_AMP] = ACTIONS(2174), + [anon_sym_AMP_AMP] = ACTIONS(2174), + [anon_sym_PIPE_PIPE] = ACTIONS(2174), + [anon_sym_EQ_TILDE] = ACTIONS(2174), + [anon_sym_EQ_EQ] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_GT_GT] = ACTIONS(2174), + [anon_sym_AMP_GT] = ACTIONS(2174), + [anon_sym_AMP_GT_GT] = ACTIONS(2174), + [anon_sym_LT_AMP] = ACTIONS(2174), + [anon_sym_GT_AMP] = ACTIONS(2174), + [anon_sym_LT_LT] = ACTIONS(2174), + [anon_sym_LT_LT_DASH] = ACTIONS(2174), + [anon_sym_LT_LT_LT] = ACTIONS(2174), + [sym__special_characters] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2174), + [sym_raw_string] = ACTIONS(2174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2174), + [anon_sym_BQUOTE] = ACTIONS(2174), + [anon_sym_LT_LPAREN] = ACTIONS(2174), + [anon_sym_GT_LPAREN] = ACTIONS(2174), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_LF] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2174), + }, + [704] = { + [aux_sym_concatenation_repeat1] = STATE(281), + [sym__simple_heredoc_body] = ACTIONS(2176), + [sym__heredoc_body_beginning] = ACTIONS(2176), + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_EQ_TILDE] = ACTIONS(2178), + [anon_sym_EQ_EQ] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2178), + [anon_sym_LT_LT_LT] = ACTIONS(2178), + [sym__special_characters] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [sym_raw_string] = ACTIONS(2178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), + [anon_sym_BQUOTE] = ACTIONS(2178), + [anon_sym_LT_LPAREN] = ACTIONS(2178), + [anon_sym_GT_LPAREN] = ACTIONS(2178), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + }, + [705] = { + [aux_sym_concatenation_repeat1] = STATE(1203), + [sym__simple_heredoc_body] = ACTIONS(697), + [sym__heredoc_body_beginning] = ACTIONS(697), + [sym_file_descriptor] = ACTIONS(697), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(701), + [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(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(701), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(701), + [anon_sym_LT_AMP] = ACTIONS(701), + [anon_sym_GT_AMP] = ACTIONS(701), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(701), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(701), + }, + [706] = { + [aux_sym_concatenation_repeat1] = STATE(1203), + [sym__simple_heredoc_body] = ACTIONS(715), + [sym__heredoc_body_beginning] = ACTIONS(715), + [sym_file_descriptor] = ACTIONS(715), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(717), + [anon_sym_PIPE_PIPE] = ACTIONS(717), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(717), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(717), + [anon_sym_LT_AMP] = ACTIONS(717), + [anon_sym_GT_AMP] = ACTIONS(717), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(717), + [anon_sym_LT_LT_LT] = ACTIONS(717), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [707] = { + [aux_sym_concatenation_repeat1] = STATE(1203), + [sym__simple_heredoc_body] = ACTIONS(2184), + [sym__heredoc_body_beginning] = ACTIONS(2184), + [sym_file_descriptor] = ACTIONS(2184), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_SEMI_SEMI] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(2186), + [anon_sym_AMP_AMP] = ACTIONS(2186), + [anon_sym_PIPE_PIPE] = ACTIONS(2186), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_GT] = ACTIONS(2186), + [anon_sym_GT_GT] = ACTIONS(2186), + [anon_sym_AMP_GT] = ACTIONS(2186), + [anon_sym_AMP_GT_GT] = ACTIONS(2186), + [anon_sym_LT_AMP] = ACTIONS(2186), + [anon_sym_GT_AMP] = ACTIONS(2186), + [anon_sym_LT_LT] = ACTIONS(2186), + [anon_sym_LT_LT_DASH] = ACTIONS(2186), + [anon_sym_LT_LT_LT] = ACTIONS(2186), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_LF] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + }, + [708] = { + [aux_sym_concatenation_repeat1] = STATE(1203), + [sym__simple_heredoc_body] = ACTIONS(2188), + [sym__heredoc_body_beginning] = ACTIONS(2188), + [sym_file_descriptor] = ACTIONS(2188), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_SEMI_SEMI] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2190), + [anon_sym_LT_LT_LT] = ACTIONS(2190), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2190), + }, + [709] = { + [sym_file_redirect] = STATE(709), + [sym_heredoc_redirect] = STATE(709), + [sym_herestring_redirect] = STATE(709), + [aux_sym_while_statement_repeat1] = STATE(709), + [sym__simple_heredoc_body] = ACTIONS(2196), + [sym__heredoc_body_beginning] = ACTIONS(2196), + [sym_file_descriptor] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_SEMI_SEMI] = ACTIONS(2201), + [anon_sym_PIPE_AMP] = ACTIONS(2201), + [anon_sym_AMP_AMP] = ACTIONS(2201), + [anon_sym_PIPE_PIPE] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_GT] = ACTIONS(2590), + [anon_sym_GT_GT] = ACTIONS(2590), + [anon_sym_AMP_GT] = ACTIONS(2590), + [anon_sym_AMP_GT_GT] = ACTIONS(2590), + [anon_sym_LT_AMP] = ACTIONS(2590), + [anon_sym_GT_AMP] = ACTIONS(2590), + [anon_sym_LT_LT] = ACTIONS(2206), + [anon_sym_LT_LT_DASH] = ACTIONS(2206), + [anon_sym_LT_LT_LT] = ACTIONS(2593), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2201), + }, + [710] = { + [sym_file_redirect] = STATE(709), + [sym_heredoc_redirect] = STATE(709), + [sym_heredoc_body] = STATE(1048), + [sym_herestring_redirect] = STATE(709), + [aux_sym_while_statement_repeat1] = STATE(709), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(515), + [anon_sym_AMP_GT_GT] = ACTIONS(515), + [anon_sym_LT_AMP] = ACTIONS(515), + [anon_sym_GT_AMP] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(517), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2192), + }, + [711] = { + [sym_concatenation] = STATE(202), + [sym_string] = STATE(292), + [sym_simple_expansion] = STATE(292), + [sym_string_expansion] = STATE(292), + [sym_expansion] = STATE(292), + [sym_command_substitution] = STATE(292), + [sym_process_substitution] = STATE(292), + [aux_sym_command_repeat2] = STATE(711), + [sym__simple_heredoc_body] = ACTIONS(2176), + [sym__heredoc_body_beginning] = ACTIONS(2176), + [sym_file_descriptor] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_EQ_TILDE] = ACTIONS(2596), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2178), + [anon_sym_LT_LT_LT] = ACTIONS(2178), + [sym__special_characters] = ACTIONS(2599), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2221), + [sym_raw_string] = ACTIONS(2602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), + [anon_sym_BQUOTE] = ACTIONS(2233), + [anon_sym_LT_LPAREN] = ACTIONS(2236), + [anon_sym_GT_LPAREN] = ACTIONS(2236), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2602), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + }, + [712] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(997), + [sym_raw_string] = ACTIONS(995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), + [anon_sym_BQUOTE] = ACTIONS(995), + [anon_sym_LT_LPAREN] = ACTIONS(995), + [anon_sym_GT_LPAREN] = ACTIONS(995), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(997), + }, + [713] = { + [sym_file_redirect] = STATE(1205), + [sym_heredoc_redirect] = STATE(1205), + [sym_heredoc_body] = STATE(1048), + [sym_herestring_redirect] = STATE(1205), + [sym_concatenation] = STATE(202), + [sym_string] = STATE(292), + [sym_simple_expansion] = STATE(292), + [sym_string_expansion] = STATE(292), + [sym_expansion] = STATE(292), + [sym_command_substitution] = STATE(292), + [sym_process_substitution] = STATE(292), + [aux_sym_while_statement_repeat1] = STATE(1205), + [aux_sym_command_repeat2] = STATE(711), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(515), + [anon_sym_AMP_GT_GT] = ACTIONS(515), + [anon_sym_LT_AMP] = ACTIONS(515), + [anon_sym_GT_AMP] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(517), + [sym__special_characters] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(521), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2192), + }, + [714] = { + [sym_file_descriptor] = ACTIONS(1151), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_PIPE_AMP] = ACTIONS(1151), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT] = ACTIONS(1153), + [anon_sym_GT] = ACTIONS(1153), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1153), + [anon_sym_AMP_GT_GT] = ACTIONS(1151), + [anon_sym_LT_AMP] = ACTIONS(1151), + [anon_sym_GT_AMP] = ACTIONS(1151), + [sym__special_characters] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1151), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), + [anon_sym_BQUOTE] = ACTIONS(1151), + [anon_sym_LT_LPAREN] = ACTIONS(1151), + [anon_sym_GT_LPAREN] = ACTIONS(1151), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1151), + }, + [715] = { + [sym_concatenation] = STATE(1207), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1207), + [anon_sym_RPAREN] = ACTIONS(2607), + [sym__special_characters] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym_raw_string] = ACTIONS(1163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1163), + }, + [716] = { + [aux_sym_concatenation_repeat1] = STATE(392), + [sym_file_descriptor] = ACTIONS(1173), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_AMP_GT] = ACTIONS(1177), + [anon_sym_AMP_GT_GT] = ACTIONS(1173), + [anon_sym_LT_AMP] = ACTIONS(1173), + [anon_sym_GT_AMP] = ACTIONS(1173), + [sym__special_characters] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1173), + [anon_sym_BQUOTE] = ACTIONS(1173), + [anon_sym_LT_LPAREN] = ACTIONS(1173), + [anon_sym_GT_LPAREN] = ACTIONS(1173), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1173), + }, + [717] = { + [aux_sym_concatenation_repeat1] = STATE(392), + [sym_file_descriptor] = ACTIONS(1151), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_LT] = ACTIONS(1153), + [anon_sym_GT] = ACTIONS(1153), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1153), + [anon_sym_AMP_GT_GT] = ACTIONS(1151), + [anon_sym_LT_AMP] = ACTIONS(1151), + [anon_sym_GT_AMP] = ACTIONS(1151), + [sym__special_characters] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1151), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), + [anon_sym_BQUOTE] = ACTIONS(1151), + [anon_sym_LT_LPAREN] = ACTIONS(1151), + [anon_sym_GT_LPAREN] = ACTIONS(1151), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1151), + }, + [718] = { + [anon_sym_RPAREN] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_PIPE_PIPE] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1393), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1391), + }, + [719] = { + [aux_sym_concatenation_repeat1] = STATE(1208), + [sym__concat] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_EQ_TILDE] = ACTIONS(731), + [anon_sym_EQ_EQ] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_BANG_EQ] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(731), + }, + [720] = { + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_RBRACK] = ACTIONS(2609), + [anon_sym_EQ_TILDE] = ACTIONS(2609), + [anon_sym_EQ_EQ] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), + [anon_sym_BANG_EQ] = ACTIONS(2609), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2609), + }, + [721] = { + [sym__expression] = STATE(771), + [sym_binary_expression] = STATE(771), + [sym_unary_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(771), + [sym_concatenation] = STATE(771), + [sym_string] = STATE(302), + [sym_simple_expansion] = STATE(302), + [sym_string_expansion] = STATE(302), + [sym_expansion] = STATE(302), + [sym_command_substitution] = STATE(302), + [sym_process_substitution] = STATE(302), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(531), + [sym__special_characters] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(537), + [sym_test_operator] = ACTIONS(539), + }, + [722] = { + [sym__expression] = STATE(771), + [sym_binary_expression] = STATE(771), + [sym_unary_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(771), + [sym_concatenation] = STATE(771), + [sym_string] = STATE(302), + [sym_simple_expansion] = STATE(302), + [sym_string_expansion] = STATE(302), + [sym_expansion] = STATE(302), + [sym_command_substitution] = STATE(302), + [sym_process_substitution] = STATE(302), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(531), + [sym__special_characters] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1523), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1525), + [anon_sym_BQUOTE] = ACTIONS(1527), + [anon_sym_LT_LPAREN] = ACTIONS(1529), + [anon_sym_GT_LPAREN] = ACTIONS(1529), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(537), + [sym_test_operator] = ACTIONS(531), + [sym_regex] = ACTIONS(1531), + }, + [723] = { + [sym__concat] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_EQ_TILDE] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1754), + }, + [724] = { + [aux_sym_concatenation_repeat1] = STATE(724), + [sym__concat] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_EQ_TILDE] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1754), + }, + [725] = { + [sym__concat] = ACTIONS(1761), + [anon_sym_AMP_AMP] = ACTIONS(1761), + [anon_sym_PIPE_PIPE] = ACTIONS(1761), + [anon_sym_RBRACK] = ACTIONS(1761), + [anon_sym_EQ_TILDE] = ACTIONS(1761), + [anon_sym_EQ_EQ] = ACTIONS(1761), + [anon_sym_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_BANG_EQ] = ACTIONS(1761), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1761), + }, + [726] = { + [anon_sym_DQUOTE] = ACTIONS(2618), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [727] = { + [sym_concatenation] = STATE(1213), + [sym_string] = STATE(1212), + [sym_simple_expansion] = STATE(1212), + [sym_string_expansion] = STATE(1212), + [sym_expansion] = STATE(1212), + [sym_command_substitution] = STATE(1212), + [sym_process_substitution] = STATE(1212), + [anon_sym_RBRACE] = ACTIONS(2620), + [sym__special_characters] = ACTIONS(2622), [anon_sym_DQUOTE] = ACTIONS(1832), [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), + [sym_raw_string] = ACTIONS(2624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1832), + [sym_word] = ACTIONS(2624), + }, + [728] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_AMP_AMP] = ACTIONS(1846), + [anon_sym_PIPE_PIPE] = ACTIONS(1846), + [anon_sym_RBRACK] = ACTIONS(1846), + [anon_sym_EQ_TILDE] = ACTIONS(1846), + [anon_sym_EQ_EQ] = ACTIONS(1846), + [anon_sym_EQ] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1846), + [anon_sym_GT] = ACTIONS(1846), + [anon_sym_BANG_EQ] = ACTIONS(1846), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1846), + }, + [729] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2626), + }, + [730] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [731] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(2630), + [sym_comment] = ACTIONS(53), + }, + [732] = { + [sym_concatenation] = STATE(1219), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1219), + [anon_sym_RBRACE] = ACTIONS(2632), + [anon_sym_EQ] = ACTIONS(2634), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2638), + [anon_sym_COLON] = ACTIONS(2634), + [anon_sym_COLON_QMARK] = ACTIONS(2634), + [anon_sym_COLON_DASH] = ACTIONS(2634), + [anon_sym_PERCENT] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(2634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [733] = { + [sym_concatenation] = STATE(1222), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1222), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_EQ] = ACTIONS(2642), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2646), + [anon_sym_COLON] = ACTIONS(2642), + [anon_sym_COLON_QMARK] = ACTIONS(2642), + [anon_sym_COLON_DASH] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [734] = { + [sym_concatenation] = STATE(1224), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1224), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_EQ] = ACTIONS(2648), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2652), + [anon_sym_COLON] = ACTIONS(2648), + [anon_sym_COLON_QMARK] = ACTIONS(2648), + [anon_sym_COLON_DASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [735] = { + [sym__concat] = ACTIONS(1914), + [anon_sym_AMP_AMP] = ACTIONS(1914), + [anon_sym_PIPE_PIPE] = ACTIONS(1914), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_EQ_TILDE] = ACTIONS(1914), + [anon_sym_EQ_EQ] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_BANG_EQ] = ACTIONS(1914), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1914), + }, + [736] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2654), + }, + [737] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [738] = { + [sym__concat] = ACTIONS(1922), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [anon_sym_RBRACK] = ACTIONS(1922), + [anon_sym_EQ_TILDE] = ACTIONS(1922), + [anon_sym_EQ_EQ] = ACTIONS(1922), + [anon_sym_EQ] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1922), + [anon_sym_GT] = ACTIONS(1922), + [anon_sym_BANG_EQ] = ACTIONS(1922), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1922), + }, + [739] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2658), + }, + [740] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [741] = { + [sym__concat] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), + [anon_sym_RBRACK] = ACTIONS(2066), + [anon_sym_EQ_TILDE] = ACTIONS(2066), + [anon_sym_EQ_EQ] = ACTIONS(2066), + [anon_sym_EQ] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2066), + [anon_sym_GT] = ACTIONS(2066), + [anon_sym_BANG_EQ] = ACTIONS(2066), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2066), + }, + [742] = { + [sym__concat] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_RBRACK] = ACTIONS(2132), + [anon_sym_EQ_TILDE] = ACTIONS(2132), + [anon_sym_EQ_EQ] = ACTIONS(2132), + [anon_sym_EQ] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2132), + [anon_sym_BANG_EQ] = ACTIONS(2132), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2132), + }, + [743] = { + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_RBRACK] = ACTIONS(2660), + [anon_sym_EQ_TILDE] = ACTIONS(2660), + [anon_sym_EQ_EQ] = ACTIONS(2660), + [anon_sym_EQ] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_GT] = ACTIONS(2660), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2660), + }, + [744] = { + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2664), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_AMP_GT] = ACTIONS(2664), + [anon_sym_AMP_GT_GT] = ACTIONS(2666), + [anon_sym_LT_AMP] = ACTIONS(2666), + [anon_sym_GT_AMP] = ACTIONS(2666), + [sym_comment] = ACTIONS(53), + }, + [745] = { + [sym_concatenation] = STATE(1237), + [sym_string] = STATE(1232), + [sym_simple_expansion] = STATE(1232), + [sym_string_expansion] = STATE(1232), + [sym_expansion] = STATE(1232), + [sym_command_substitution] = STATE(1232), + [sym_process_substitution] = STATE(1232), + [sym__special_characters] = ACTIONS(2668), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(2672), + [sym_raw_string] = ACTIONS(2674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), + [anon_sym_BQUOTE] = ACTIONS(2680), + [anon_sym_LT_LPAREN] = ACTIONS(2682), + [anon_sym_GT_LPAREN] = ACTIONS(2682), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2674), + }, + [746] = { + [sym_heredoc_start] = ACTIONS(2684), + [sym_comment] = ACTIONS(53), + }, + [747] = { + [sym_concatenation] = STATE(1241), + [sym_string] = STATE(1240), + [sym_simple_expansion] = STATE(1240), + [sym_string_expansion] = STATE(1240), + [sym_expansion] = STATE(1240), + [sym_command_substitution] = STATE(1240), + [sym_process_substitution] = STATE(1240), + [sym__special_characters] = ACTIONS(2686), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(2672), + [sym_raw_string] = ACTIONS(2688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), + [anon_sym_BQUOTE] = ACTIONS(2680), + [anon_sym_LT_LPAREN] = ACTIONS(2682), + [anon_sym_GT_LPAREN] = ACTIONS(2682), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2688), + }, + [748] = { + [sym_file_redirect] = STATE(1242), + [sym_heredoc_redirect] = STATE(1242), + [sym_herestring_redirect] = STATE(1242), + [aux_sym_while_statement_repeat1] = STATE(1242), + [sym_file_descriptor] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_SEMI_SEMI] = ACTIONS(2690), + [anon_sym_PIPE_AMP] = ACTIONS(2690), + [anon_sym_AMP_AMP] = ACTIONS(2690), + [anon_sym_PIPE_PIPE] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_AMP_GT] = ACTIONS(1447), + [anon_sym_AMP_GT_GT] = ACTIONS(1447), + [anon_sym_LT_AMP] = ACTIONS(1447), + [anon_sym_GT_AMP] = ACTIONS(1447), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_LT_LT_DASH] = ACTIONS(1449), + [anon_sym_LT_LT_LT] = ACTIONS(1451), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_LF] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2690), + }, + [749] = { + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_RBRACK] = ACTIONS(2660), + [anon_sym_EQ_TILDE] = ACTIONS(2660), + [anon_sym_EQ_EQ] = ACTIONS(2660), + [anon_sym_EQ] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_GT] = ACTIONS(2660), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2660), + }, + [750] = { + [anon_sym_RPAREN] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2609), + [anon_sym_EQ_TILDE] = ACTIONS(2609), + [anon_sym_EQ_EQ] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), + [anon_sym_BANG_EQ] = ACTIONS(2609), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2609), + }, + [751] = { + [sym__concat] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1754), + [anon_sym_EQ_TILDE] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1754), + }, + [752] = { + [aux_sym_concatenation_repeat1] = STATE(752), + [sym__concat] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1754), + [anon_sym_EQ_TILDE] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1754), + }, + [753] = { + [sym__concat] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_AMP_AMP] = ACTIONS(1761), + [anon_sym_PIPE_PIPE] = ACTIONS(1761), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1761), + [anon_sym_EQ_TILDE] = ACTIONS(1761), + [anon_sym_EQ_EQ] = ACTIONS(1761), + [anon_sym_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_BANG_EQ] = ACTIONS(1761), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1761), + }, + [754] = { + [anon_sym_DQUOTE] = ACTIONS(2697), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [755] = { + [sym_concatenation] = STATE(1247), + [sym_string] = STATE(1246), + [sym_simple_expansion] = STATE(1246), + [sym_string_expansion] = STATE(1246), + [sym_expansion] = STATE(1246), + [sym_command_substitution] = STATE(1246), + [sym_process_substitution] = STATE(1246), + [anon_sym_RBRACE] = ACTIONS(2699), + [sym__special_characters] = ACTIONS(2701), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2703), + }, + [756] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_AMP_AMP] = ACTIONS(1846), + [anon_sym_PIPE_PIPE] = ACTIONS(1846), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1846), + [anon_sym_EQ_TILDE] = ACTIONS(1846), + [anon_sym_EQ_EQ] = ACTIONS(1846), + [anon_sym_EQ] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1846), + [anon_sym_GT] = ACTIONS(1846), + [anon_sym_BANG_EQ] = ACTIONS(1846), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1846), + }, + [757] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2705), + }, + [758] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [759] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(2709), + [sym_comment] = ACTIONS(53), + }, + [760] = { + [sym_concatenation] = STATE(1253), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1253), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_EQ] = ACTIONS(2713), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2717), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_COLON_QMARK] = ACTIONS(2713), + [anon_sym_COLON_DASH] = ACTIONS(2713), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [761] = { + [sym_concatenation] = STATE(1256), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1256), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2721), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2725), + [anon_sym_COLON] = ACTIONS(2721), + [anon_sym_COLON_QMARK] = ACTIONS(2721), + [anon_sym_COLON_DASH] = ACTIONS(2721), + [anon_sym_PERCENT] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [762] = { + [sym_concatenation] = STATE(1258), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1258), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2727), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2731), + [anon_sym_COLON] = ACTIONS(2727), + [anon_sym_COLON_QMARK] = ACTIONS(2727), + [anon_sym_COLON_DASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [763] = { + [sym__concat] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_AMP_AMP] = ACTIONS(1914), + [anon_sym_PIPE_PIPE] = ACTIONS(1914), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1914), + [anon_sym_EQ_TILDE] = ACTIONS(1914), + [anon_sym_EQ_EQ] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_BANG_EQ] = ACTIONS(1914), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1914), + }, + [764] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2733), + }, + [765] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2735), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [766] = { + [sym__concat] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1922), + [anon_sym_EQ_TILDE] = ACTIONS(1922), + [anon_sym_EQ_EQ] = ACTIONS(1922), + [anon_sym_EQ] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1922), + [anon_sym_GT] = ACTIONS(1922), + [anon_sym_BANG_EQ] = ACTIONS(1922), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1922), + }, + [767] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2737), + }, + [768] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [769] = { + [sym__concat] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2066), + [anon_sym_EQ_TILDE] = ACTIONS(2066), + [anon_sym_EQ_EQ] = ACTIONS(2066), + [anon_sym_EQ] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2066), + [anon_sym_GT] = ACTIONS(2066), + [anon_sym_BANG_EQ] = ACTIONS(2066), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2066), + }, + [770] = { + [sym__concat] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2132), + [anon_sym_EQ_TILDE] = ACTIONS(2132), + [anon_sym_EQ_EQ] = ACTIONS(2132), + [anon_sym_EQ] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2132), + [anon_sym_BANG_EQ] = ACTIONS(2132), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2132), + }, + [771] = { + [anon_sym_RPAREN] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_EQ_TILDE] = ACTIONS(2660), + [anon_sym_EQ_EQ] = ACTIONS(2660), + [anon_sym_EQ] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_GT] = ACTIONS(2660), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2660), + }, + [772] = { + [anon_sym_RPAREN] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_EQ_TILDE] = ACTIONS(2660), + [anon_sym_EQ_EQ] = ACTIONS(2660), + [anon_sym_EQ] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_GT] = ACTIONS(2660), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2660), + }, + [773] = { + [sym_variable_name] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_SEMI_SEMI] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1153), + [anon_sym_PIPE_PIPE] = ACTIONS(1153), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_LT_LPAREN] = ACTIONS(1153), + [anon_sym_GT_LPAREN] = ACTIONS(1153), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), + [sym_word] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_LF] = ACTIONS(1151), + [anon_sym_AMP] = ACTIONS(1153), + }, + [774] = { + [sym_concatenation] = STATE(1263), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1263), + [anon_sym_RPAREN] = ACTIONS(2739), + [sym__special_characters] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym_raw_string] = ACTIONS(1163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1163), + }, + [775] = { + [aux_sym_concatenation_repeat1] = STATE(352), + [sym__concat] = ACTIONS(613), + [sym_variable_name] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_SEMI_SEMI] = ACTIONS(1177), + [anon_sym_PIPE_AMP] = ACTIONS(1177), + [anon_sym_AMP_AMP] = ACTIONS(1177), + [anon_sym_PIPE_PIPE] = ACTIONS(1177), + [sym__special_characters] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1177), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(1177), + [anon_sym_LT_LPAREN] = ACTIONS(1177), + [anon_sym_GT_LPAREN] = ACTIONS(1177), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1177), + [sym_word] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1177), + }, + [776] = { + [aux_sym_concatenation_repeat1] = STATE(352), + [sym__concat] = ACTIONS(613), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_SEMI_SEMI] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1153), + [anon_sym_PIPE_PIPE] = ACTIONS(1153), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_LT_LPAREN] = ACTIONS(1153), + [anon_sym_GT_LPAREN] = ACTIONS(1153), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), + [sym_word] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_LF] = ACTIONS(1151), + [anon_sym_AMP] = ACTIONS(1153), + }, + [777] = { + [sym__concat] = ACTIONS(1754), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [778] = { + [aux_sym_concatenation_repeat1] = STATE(778), + [sym__concat] = ACTIONS(2741), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [779] = { + [sym__concat] = ACTIONS(1761), + [sym_variable_name] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1763), + [sym_word] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1763), + }, + [780] = { + [anon_sym_DQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [781] = { + [sym_concatenation] = STATE(1268), + [sym_string] = STATE(1267), + [sym_simple_expansion] = STATE(1267), + [sym_string_expansion] = STATE(1267), + [sym_expansion] = STATE(1267), + [sym_command_substitution] = STATE(1267), + [sym_process_substitution] = STATE(1267), + [anon_sym_RBRACE] = ACTIONS(2746), + [sym__special_characters] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2750), + }, + [782] = { + [sym__concat] = ACTIONS(1846), + [sym_variable_name] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = ACTIONS(1848), + [anon_sym_PIPE_AMP] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [sym__special_characters] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), + [anon_sym_BQUOTE] = ACTIONS(1848), + [anon_sym_LT_LPAREN] = ACTIONS(1848), + [anon_sym_GT_LPAREN] = ACTIONS(1848), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1848), + [sym_word] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [783] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2752), + }, + [784] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [785] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(2756), + [sym_comment] = ACTIONS(53), + }, + [786] = { + [sym_concatenation] = STATE(1274), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1274), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2760), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2762), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_COLON] = ACTIONS(2760), + [anon_sym_COLON_QMARK] = ACTIONS(2760), + [anon_sym_COLON_DASH] = ACTIONS(2760), + [anon_sym_PERCENT] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [787] = { + [sym_concatenation] = STATE(1277), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1277), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_EQ] = ACTIONS(2768), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2772), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_DASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [788] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2706), + [sym_concatenation] = STATE(1279), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1279), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_EQ] = ACTIONS(2774), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2778), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_COLON_DASH] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [789] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2708), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(1914), + [sym_variable_name] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(1916), + [anon_sym_AMP_AMP] = ACTIONS(1916), + [anon_sym_PIPE_PIPE] = ACTIONS(1916), + [sym__special_characters] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_LT_LPAREN] = ACTIONS(1916), + [anon_sym_GT_LPAREN] = ACTIONS(1916), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1916), + [sym_word] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1916), }, [790] = { - [sym_file_descriptor] = ACTIONS(1840), - [sym__concat] = ACTIONS(1840), - [sym_variable_name] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_PIPE_AMP] = ACTIONS(1840), - [anon_sym_AMP_AMP] = ACTIONS(1840), - [anon_sym_PIPE_PIPE] = ACTIONS(1840), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_GT] = ACTIONS(1842), - [anon_sym_GT_GT] = ACTIONS(1840), - [anon_sym_AMP_GT] = ACTIONS(1842), - [anon_sym_AMP_GT_GT] = ACTIONS(1840), - [anon_sym_LT_AMP] = ACTIONS(1840), - [anon_sym_GT_AMP] = ACTIONS(1840), - [sym__special_characters] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1840), - [anon_sym_LT_LPAREN] = ACTIONS(1840), - [anon_sym_GT_LPAREN] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1840), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2780), }, [791] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2710), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [792] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(1922), + [sym_variable_name] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1924), + [sym_word] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1924), }, [793] = { - [sym_file_descriptor] = ACTIONS(1980), - [sym__concat] = ACTIONS(1980), - [sym_variable_name] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = 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), - [sym__special_characters] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_LT_LPAREN] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1980), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1980), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2784), }, [794] = { - [sym_file_descriptor] = ACTIONS(2046), - [sym__concat] = ACTIONS(2046), - [sym_variable_name] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2046), - [anon_sym_PIPE_AMP] = ACTIONS(2046), - [anon_sym_AMP_AMP] = ACTIONS(2046), - [anon_sym_PIPE_PIPE] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2046), - [anon_sym_AMP_GT] = ACTIONS(2048), - [anon_sym_AMP_GT_GT] = ACTIONS(2046), - [anon_sym_LT_AMP] = ACTIONS(2046), - [anon_sym_GT_AMP] = ACTIONS(2046), - [sym__special_characters] = ACTIONS(2046), - [anon_sym_DQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2046), - [anon_sym_BQUOTE] = ACTIONS(2046), - [anon_sym_LT_LPAREN] = ACTIONS(2046), - [anon_sym_GT_LPAREN] = ACTIONS(2046), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2046), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [795] = { - [anon_sym_DQUOTE] = ACTIONS(2712), - [anon_sym_DOLLAR] = ACTIONS(2712), - [sym__string_content] = ACTIONS(2714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2712), - [anon_sym_BQUOTE] = ACTIONS(2712), - [sym_comment] = ACTIONS(177), + [sym__concat] = ACTIONS(2066), + [sym_variable_name] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_SEMI_SEMI] = ACTIONS(2068), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [sym__special_characters] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), + [anon_sym_BQUOTE] = ACTIONS(2068), + [anon_sym_LT_LPAREN] = ACTIONS(2068), + [anon_sym_GT_LPAREN] = ACTIONS(2068), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), + [sym_word] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_LF] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2068), }, [796] = { - [sym_concatenation] = STATE(1242), - [sym_string] = STATE(1241), - [sym_simple_expansion] = STATE(1241), - [sym_string_expansion] = STATE(1241), - [sym_expansion] = STATE(1241), - [sym_command_substitution] = STATE(1241), - [sym_process_substitution] = STATE(1241), - [anon_sym_RBRACE] = ACTIONS(2716), - [sym__special_characters] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(2720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2720), + [sym__concat] = ACTIONS(2132), + [sym_variable_name] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_SEMI_SEMI] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), + [anon_sym_BQUOTE] = ACTIONS(2134), + [anon_sym_LT_LPAREN] = ACTIONS(2134), + [anon_sym_GT_LPAREN] = ACTIONS(2134), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), + [sym_word] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), }, [797] = { - [sym__concat] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym__string_content] = ACTIONS(1764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [sym_comment] = ACTIONS(177), + [sym__concat] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), }, [798] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2722), + [aux_sym_concatenation_repeat1] = STATE(798), + [sym__concat] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), }, [799] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2724), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1763), + [sym_word] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1763), }, [800] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(2726), - [sym_comment] = ACTIONS(53), + [anon_sym_DQUOTE] = ACTIONS(2789), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [801] = { - [sym_concatenation] = STATE(1248), - [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), - [aux_sym_expansion_repeat1] = STATE(1248), - [anon_sym_RBRACE] = ACTIONS(2728), - [anon_sym_EQ] = ACTIONS(2730), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_COLON] = ACTIONS(2730), - [anon_sym_COLON_QMARK] = ACTIONS(2730), - [anon_sym_COLON_DASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(1287), + [sym_string] = STATE(1286), + [sym_simple_expansion] = STATE(1286), + [sym_string_expansion] = STATE(1286), + [sym_expansion] = STATE(1286), + [sym_command_substitution] = STATE(1286), + [sym_process_substitution] = STATE(1286), + [anon_sym_RBRACE] = ACTIONS(2791), + [sym__special_characters] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(2795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2795), }, [802] = { - [sym_concatenation] = STATE(1251), - [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), - [aux_sym_expansion_repeat1] = STATE(1251), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_EQ] = ACTIONS(2738), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2742), - [anon_sym_COLON] = ACTIONS(2738), - [anon_sym_COLON_QMARK] = ACTIONS(2738), - [anon_sym_COLON_DASH] = ACTIONS(2738), - [anon_sym_PERCENT] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = ACTIONS(1848), + [anon_sym_PIPE_AMP] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [sym__special_characters] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), + [anon_sym_BQUOTE] = ACTIONS(1848), + [anon_sym_LT_LPAREN] = ACTIONS(1848), + [anon_sym_GT_LPAREN] = ACTIONS(1848), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1848), + [sym_word] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), }, [803] = { - [sym_concatenation] = STATE(1253), - [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), - [aux_sym_expansion_repeat1] = STATE(1253), - [anon_sym_RBRACE] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(2744), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2748), - [anon_sym_COLON] = ACTIONS(2744), - [anon_sym_COLON_QMARK] = ACTIONS(2744), - [anon_sym_COLON_DASH] = ACTIONS(2744), - [anon_sym_PERCENT] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2797), }, [804] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym__string_content] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [sym_comment] = ACTIONS(177), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2799), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [805] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(2801), + [sym_comment] = ACTIONS(53), }, [806] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2752), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(1293), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1293), + [anon_sym_RBRACE] = ACTIONS(2803), + [anon_sym_EQ] = ACTIONS(2805), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2805), + [anon_sym_COLON_QMARK] = ACTIONS(2805), + [anon_sym_COLON_DASH] = ACTIONS(2805), + [anon_sym_PERCENT] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [807] = { - [sym__concat] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym__string_content] = ACTIONS(1840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(177), + [sym_concatenation] = STATE(1296), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1296), + [anon_sym_RBRACE] = ACTIONS(2811), + [anon_sym_EQ] = ACTIONS(2813), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2817), + [anon_sym_COLON] = ACTIONS(2813), + [anon_sym_COLON_QMARK] = ACTIONS(2813), + [anon_sym_COLON_DASH] = ACTIONS(2813), + [anon_sym_PERCENT] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [808] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2754), + [sym_concatenation] = STATE(1298), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1298), + [anon_sym_RBRACE] = ACTIONS(2791), + [anon_sym_EQ] = ACTIONS(2819), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2823), + [anon_sym_COLON] = ACTIONS(2819), + [anon_sym_COLON_QMARK] = ACTIONS(2819), + [anon_sym_COLON_DASH] = ACTIONS(2819), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [809] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(1916), + [anon_sym_AMP_AMP] = ACTIONS(1916), + [anon_sym_PIPE_PIPE] = ACTIONS(1916), + [sym__special_characters] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_LT_LPAREN] = ACTIONS(1916), + [anon_sym_GT_LPAREN] = ACTIONS(1916), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1916), + [sym_word] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1916), }, [810] = { - [sym__concat] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym__string_content] = ACTIONS(1980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), - [anon_sym_BQUOTE] = ACTIONS(1982), - [sym_comment] = ACTIONS(177), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2825), }, [811] = { - [sym__simple_heredoc_body] = ACTIONS(2756), - [sym__heredoc_body_beginning] = ACTIONS(2756), - [sym_file_descriptor] = ACTIONS(2756), - [sym__concat] = ACTIONS(2756), - [anon_sym_esac] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_SEMI_SEMI] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_EQ_TILDE] = ACTIONS(2758), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_AMP_GT] = ACTIONS(2758), - [anon_sym_AMP_GT_GT] = ACTIONS(2758), - [anon_sym_LT_AMP] = ACTIONS(2758), - [anon_sym_GT_AMP] = ACTIONS(2758), - [anon_sym_LT_LT] = ACTIONS(2758), - [anon_sym_LT_LT_DASH] = ACTIONS(2758), - [anon_sym_LT_LT_LT] = ACTIONS(2758), - [sym__special_characters] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), - [anon_sym_LT_LPAREN] = ACTIONS(2758), - [anon_sym_GT_LPAREN] = ACTIONS(2758), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2758), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [812] = { - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), + [sym__concat] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1924), + [sym_word] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1924), }, [813] = { - [aux_sym_concatenation_repeat1] = STATE(563), - [sym__concat] = ACTIONS(2760), - [anon_sym_RBRACK] = ACTIONS(2762), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2829), }, [814] = { - [aux_sym_concatenation_repeat1] = STATE(563), - [sym__concat] = ACTIONS(2764), - [anon_sym_RBRACK] = ACTIONS(2766), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2791), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [815] = { - [sym__concat] = ACTIONS(2768), - [anon_sym_RBRACK] = ACTIONS(2766), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_SEMI_SEMI] = ACTIONS(2068), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [sym__special_characters] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), + [anon_sym_BQUOTE] = ACTIONS(2068), + [anon_sym_LT_LPAREN] = ACTIONS(2068), + [anon_sym_GT_LPAREN] = ACTIONS(2068), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), + [sym_word] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_LF] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2068), }, [816] = { - [sym__simple_heredoc_body] = ACTIONS(2770), - [sym__heredoc_body_beginning] = ACTIONS(2770), - [sym_file_descriptor] = ACTIONS(2770), - [sym__concat] = ACTIONS(2770), - [anon_sym_esac] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_SEMI_SEMI] = ACTIONS(2772), - [anon_sym_PIPE_AMP] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_EQ_TILDE] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_GT] = ACTIONS(2772), - [anon_sym_AMP_GT_GT] = ACTIONS(2772), - [anon_sym_LT_AMP] = ACTIONS(2772), - [anon_sym_GT_AMP] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_LT_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT_LT] = ACTIONS(2772), - [sym__special_characters] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), - [anon_sym_BQUOTE] = ACTIONS(2772), - [anon_sym_LT_LPAREN] = ACTIONS(2772), - [anon_sym_GT_LPAREN] = ACTIONS(2772), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), + [sym__concat] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_SEMI_SEMI] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), + [anon_sym_BQUOTE] = ACTIONS(2134), + [anon_sym_LT_LPAREN] = ACTIONS(2134), + [anon_sym_GT_LPAREN] = ACTIONS(2134), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), + [sym_word] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), }, [817] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(2776), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(1754), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1754), + [anon_sym_LT_AMP] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1754), }, [818] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(1267), - [anon_sym_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2780), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [aux_sym_concatenation_repeat1] = STATE(818), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(2831), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1754), + [anon_sym_LT_AMP] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1754), }, [819] = { - [sym_string] = STATE(1269), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(2782), - [sym_raw_string] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AT] = ACTIONS(2782), - [anon_sym_QMARK] = ACTIONS(2782), - [anon_sym_0] = ACTIONS(2788), - [anon_sym__] = ACTIONS(2788), + [sym_file_descriptor] = ACTIONS(1761), + [sym__concat] = ACTIONS(1761), + [sym_variable_name] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_PIPE_AMP] = ACTIONS(1761), + [anon_sym_AMP_AMP] = ACTIONS(1761), + [anon_sym_PIPE_PIPE] = ACTIONS(1761), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_GT] = ACTIONS(1761), + [anon_sym_AMP_GT] = ACTIONS(1763), + [anon_sym_AMP_GT_GT] = ACTIONS(1761), + [anon_sym_LT_AMP] = ACTIONS(1761), + [anon_sym_GT_AMP] = ACTIONS(1761), + [sym__special_characters] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), + [anon_sym_BQUOTE] = ACTIONS(1761), + [anon_sym_LT_LPAREN] = ACTIONS(1761), + [anon_sym_GT_LPAREN] = ACTIONS(1761), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1761), }, [820] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(2790), - [sym_comment] = ACTIONS(53), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [821] = { - [sym_subscript] = STATE(1276), - [sym_variable_name] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2794), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_AT] = ACTIONS(2794), - [anon_sym_QMARK] = ACTIONS(2794), - [anon_sym_0] = ACTIONS(2800), - [anon_sym__] = ACTIONS(2800), + [sym_concatenation] = STATE(1306), + [sym_string] = STATE(1305), + [sym_simple_expansion] = STATE(1305), + [sym_string_expansion] = STATE(1305), + [sym_expansion] = STATE(1305), + [sym_command_substitution] = STATE(1305), + [sym_process_substitution] = STATE(1305), + [anon_sym_RBRACE] = ACTIONS(2836), + [sym__special_characters] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(2840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2840), }, [822] = { - [sym_for_statement] = STATE(1277), - [sym_while_statement] = STATE(1277), - [sym_if_statement] = STATE(1277), - [sym_case_statement] = STATE(1277), - [sym_function_definition] = STATE(1277), - [sym_subshell] = STATE(1277), - [sym_pipeline] = STATE(1277), - [sym_list] = STATE(1277), - [sym_negated_command] = STATE(1277), - [sym_test_command] = STATE(1277), - [sym_declaration_command] = STATE(1277), - [sym_unset_command] = STATE(1277), - [sym_command] = STATE(1277), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1278), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(1846), + [sym__concat] = ACTIONS(1846), + [sym_variable_name] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_PIPE_AMP] = ACTIONS(1846), + [anon_sym_AMP_AMP] = ACTIONS(1846), + [anon_sym_PIPE_PIPE] = ACTIONS(1846), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_GT_GT] = ACTIONS(1846), + [anon_sym_AMP_GT] = ACTIONS(1848), + [anon_sym_AMP_GT_GT] = ACTIONS(1846), + [anon_sym_LT_AMP] = ACTIONS(1846), + [anon_sym_GT_AMP] = ACTIONS(1846), + [sym__special_characters] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), + [anon_sym_BQUOTE] = ACTIONS(1846), + [anon_sym_LT_LPAREN] = ACTIONS(1846), + [anon_sym_GT_LPAREN] = ACTIONS(1846), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(1846), }, [823] = { - [sym_for_statement] = STATE(1279), - [sym_while_statement] = STATE(1279), - [sym_if_statement] = STATE(1279), - [sym_case_statement] = STATE(1279), - [sym_function_definition] = STATE(1279), - [sym_subshell] = STATE(1279), - [sym_pipeline] = STATE(1279), - [sym_list] = STATE(1279), - [sym_negated_command] = STATE(1279), - [sym_test_command] = STATE(1279), - [sym_declaration_command] = STATE(1279), - [sym_unset_command] = STATE(1279), - [sym_command] = STATE(1279), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(1280), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2842), }, [824] = { - [sym_for_statement] = STATE(1281), - [sym_while_statement] = STATE(1281), - [sym_if_statement] = STATE(1281), - [sym_case_statement] = STATE(1281), - [sym_function_definition] = STATE(1281), - [sym_subshell] = STATE(1281), - [sym_pipeline] = STATE(1281), - [sym_list] = STATE(1281), - [sym_negated_command] = STATE(1281), - [sym_test_command] = STATE(1281), - [sym_declaration_command] = STATE(1281), - [sym_unset_command] = STATE(1281), - [sym_command] = STATE(1281), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1282), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2844), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [825] = { - [anon_sym_RBRACE] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(2846), [sym_comment] = ACTIONS(53), }, [826] = { - [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), - [sym__special_characters] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(2802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2802), + [sym_concatenation] = STATE(1312), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1312), + [anon_sym_RBRACE] = ACTIONS(2848), + [anon_sym_EQ] = ACTIONS(2850), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2850), + [anon_sym_COLON_QMARK] = ACTIONS(2850), + [anon_sym_COLON_DASH] = ACTIONS(2850), + [anon_sym_PERCENT] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [827] = { - [aux_sym_concatenation_repeat1] = STATE(1284), - [sym__concat] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(705), - [anon_sym_EQ] = ACTIONS(707), - [sym__special_characters] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(705), - [anon_sym_POUND] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_COLON] = ACTIONS(707), - [anon_sym_COLON_QMARK] = ACTIONS(707), - [anon_sym_COLON_DASH] = ACTIONS(707), - [anon_sym_PERCENT] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LT_LPAREN] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(705), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(707), - }, - [828] = { - [sym__concat] = ACTIONS(709), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_EQ] = ACTIONS(711), - [sym__special_characters] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(709), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(709), - [anon_sym_POUND] = ACTIONS(709), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(711), - [anon_sym_COLON_QMARK] = ACTIONS(711), - [anon_sym_COLON_DASH] = ACTIONS(711), - [anon_sym_PERCENT] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(709), - [anon_sym_BQUOTE] = ACTIONS(709), - [anon_sym_LT_LPAREN] = ACTIONS(709), - [anon_sym_GT_LPAREN] = ACTIONS(709), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(711), - }, - [829] = { - [anon_sym_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [830] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2806), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [831] = { - [sym__concat] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_EQ] = ACTIONS(743), - [sym__special_characters] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_COLON_QMARK] = ACTIONS(743), - [anon_sym_COLON_DASH] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), - [anon_sym_BQUOTE] = ACTIONS(741), - [anon_sym_LT_LPAREN] = ACTIONS(741), - [anon_sym_GT_LPAREN] = ACTIONS(741), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(743), - }, - [832] = { - [sym__concat] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(747), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), - [anon_sym_COLON] = ACTIONS(747), - [anon_sym_COLON_QMARK] = ACTIONS(747), - [anon_sym_COLON_DASH] = ACTIONS(747), - [anon_sym_PERCENT] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(747), - [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(177), - [sym_word] = ACTIONS(747), - }, - [833] = { - [sym__concat] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_EQ] = ACTIONS(751), - [sym__special_characters] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(751), - [anon_sym_COLON_QMARK] = ACTIONS(751), - [anon_sym_COLON_DASH] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [anon_sym_LT_LPAREN] = ACTIONS(749), - [anon_sym_GT_LPAREN] = ACTIONS(749), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(751), - }, - [834] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(2808), - [sym_comment] = ACTIONS(53), - }, - [835] = { - [sym_concatenation] = STATE(1290), - [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), - [aux_sym_expansion_repeat1] = STATE(1290), - [anon_sym_RBRACE] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2812), - [anon_sym_COLON_QMARK] = ACTIONS(2812), - [anon_sym_COLON_DASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [836] = { - [sym_subscript] = STATE(1294), - [sym_variable_name] = ACTIONS(2818), - [anon_sym_DOLLAR] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_0] = ACTIONS(2824), - [anon_sym__] = ACTIONS(2824), - }, - [837] = { - [sym_concatenation] = STATE(1297), - [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), - [aux_sym_expansion_repeat1] = STATE(1297), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2828), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2828), - [anon_sym_COLON_QMARK] = ACTIONS(2828), - [anon_sym_COLON_DASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [838] = { - [sym_concatenation] = STATE(1300), - [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), - [aux_sym_expansion_repeat1] = STATE(1300), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [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_DASH] = ACTIONS(2836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [839] = { - [sym_concatenation] = STATE(1302), - [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), - [aux_sym_expansion_repeat1] = STATE(1302), - [anon_sym_RBRACE] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2844), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(2844), - [anon_sym_COLON_QMARK] = ACTIONS(2844), - [anon_sym_COLON_DASH] = ACTIONS(2844), - [anon_sym_PERCENT] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [840] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(2848), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [841] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(2848), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [842] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(2848), - [sym_comment] = ACTIONS(53), - }, - [843] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(2848), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [844] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(2850), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [845] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(2850), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [846] = { - [sym__simple_heredoc_body] = ACTIONS(2852), - [sym__heredoc_body_beginning] = ACTIONS(2852), - [sym_file_descriptor] = ACTIONS(2852), - [sym__concat] = ACTIONS(2852), - [anon_sym_esac] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2854), - [anon_sym_SEMI_SEMI] = ACTIONS(2854), - [anon_sym_PIPE_AMP] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_EQ_TILDE] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_GT] = ACTIONS(2854), - [anon_sym_AMP_GT_GT] = ACTIONS(2854), - [anon_sym_LT_AMP] = ACTIONS(2854), - [anon_sym_GT_AMP] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_LT_LT_DASH] = ACTIONS(2854), - [anon_sym_LT_LT_LT] = ACTIONS(2854), - [sym__special_characters] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), - [anon_sym_BQUOTE] = ACTIONS(2854), - [anon_sym_LT_LPAREN] = ACTIONS(2854), - [anon_sym_GT_LPAREN] = ACTIONS(2854), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2854), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - }, - [847] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), + [sym_concatenation] = STATE(1315), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1315), [anon_sym_RBRACE] = ACTIONS(2856), [anon_sym_EQ] = ACTIONS(2858), - [sym__special_characters] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2867), - [sym_raw_string] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(2873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2862), [anon_sym_COLON] = ACTIONS(2858), [anon_sym_COLON_QMARK] = ACTIONS(2858), [anon_sym_COLON_DASH] = ACTIONS(2858), [anon_sym_PERCENT] = ACTIONS(2858), [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2879), - [anon_sym_BQUOTE] = ACTIONS(2882), - [anon_sym_LT_LPAREN] = ACTIONS(2885), - [anon_sym_GT_LPAREN] = ACTIONS(2885), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [828] = { + [sym_concatenation] = STATE(1317), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1317), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_EQ] = ACTIONS(2864), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2866), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2868), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_COLON_QMARK] = ACTIONS(2864), + [anon_sym_COLON_DASH] = ACTIONS(2864), + [anon_sym_PERCENT] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [829] = { + [sym_file_descriptor] = ACTIONS(1914), + [sym__concat] = ACTIONS(1914), + [sym_variable_name] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_PIPE_AMP] = ACTIONS(1914), + [anon_sym_AMP_AMP] = ACTIONS(1914), + [anon_sym_PIPE_PIPE] = ACTIONS(1914), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_GT] = ACTIONS(1916), + [anon_sym_GT_GT] = ACTIONS(1914), + [anon_sym_AMP_GT] = ACTIONS(1916), + [anon_sym_AMP_GT_GT] = ACTIONS(1914), + [anon_sym_LT_AMP] = ACTIONS(1914), + [anon_sym_GT_AMP] = ACTIONS(1914), + [sym__special_characters] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1914), + [anon_sym_LT_LPAREN] = ACTIONS(1914), + [anon_sym_GT_LPAREN] = ACTIONS(1914), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1914), + }, + [830] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2870), + }, + [831] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2872), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [832] = { + [sym_file_descriptor] = ACTIONS(1922), + [sym__concat] = ACTIONS(1922), + [sym_variable_name] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_PIPE_AMP] = ACTIONS(1922), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_GT] = ACTIONS(1924), + [anon_sym_GT_GT] = ACTIONS(1922), + [anon_sym_AMP_GT] = ACTIONS(1924), + [anon_sym_AMP_GT_GT] = ACTIONS(1922), + [anon_sym_LT_AMP] = ACTIONS(1922), + [anon_sym_GT_AMP] = ACTIONS(1922), + [sym__special_characters] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [anon_sym_LT_LPAREN] = ACTIONS(1922), + [anon_sym_GT_LPAREN] = ACTIONS(1922), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1922), + }, + [833] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2874), + }, + [834] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [835] = { + [sym_file_descriptor] = ACTIONS(2066), + [sym__concat] = ACTIONS(2066), + [sym_variable_name] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2066), + [anon_sym_AMP_GT] = ACTIONS(2068), + [anon_sym_AMP_GT_GT] = ACTIONS(2066), + [anon_sym_LT_AMP] = ACTIONS(2066), + [anon_sym_GT_AMP] = ACTIONS(2066), + [sym__special_characters] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), + [anon_sym_BQUOTE] = ACTIONS(2066), + [anon_sym_LT_LPAREN] = ACTIONS(2066), + [anon_sym_GT_LPAREN] = ACTIONS(2066), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2066), + }, + [836] = { + [sym_file_descriptor] = ACTIONS(2132), + [sym__concat] = ACTIONS(2132), + [sym_variable_name] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_PIPE_AMP] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(2132), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(2132), + [anon_sym_LT_AMP] = ACTIONS(2132), + [anon_sym_GT_AMP] = ACTIONS(2132), + [sym__special_characters] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2132), + [anon_sym_BQUOTE] = ACTIONS(2132), + [anon_sym_LT_LPAREN] = ACTIONS(2132), + [anon_sym_GT_LPAREN] = ACTIONS(2132), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2132), + }, + [837] = { + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_DOLLAR] = ACTIONS(2876), + [sym__string_content] = ACTIONS(2878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), + [anon_sym_BQUOTE] = ACTIONS(2876), + [sym_comment] = ACTIONS(179), + }, + [838] = { + [sym_concatenation] = STATE(1324), + [sym_string] = STATE(1323), + [sym_simple_expansion] = STATE(1323), + [sym_string_expansion] = STATE(1323), + [sym_expansion] = STATE(1323), + [sym_command_substitution] = STATE(1323), + [sym_process_substitution] = STATE(1323), + [anon_sym_RBRACE] = ACTIONS(2880), + [sym__special_characters] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(2884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2884), + }, + [839] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym__string_content] = ACTIONS(1846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), + [anon_sym_BQUOTE] = ACTIONS(1848), + [sym_comment] = ACTIONS(179), + }, + [840] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2886), + }, + [841] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [842] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(2890), + [sym_comment] = ACTIONS(53), + }, + [843] = { + [sym_concatenation] = STATE(1330), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1330), + [anon_sym_RBRACE] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2894), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2896), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [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_DASH] = ACTIONS(2894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [844] = { + [sym_concatenation] = STATE(1333), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1333), + [anon_sym_RBRACE] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2904), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_COLON_QMARK] = ACTIONS(2902), + [anon_sym_COLON_DASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [845] = { + [sym_concatenation] = STATE(1335), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1335), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2908), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2912), + [anon_sym_COLON] = ACTIONS(2908), + [anon_sym_COLON_QMARK] = ACTIONS(2908), + [anon_sym_COLON_DASH] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [846] = { + [sym__concat] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym__string_content] = ACTIONS(1914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1916), + [sym_comment] = ACTIONS(179), + }, + [847] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2914), }, [848] = { - [sym_concatenation] = STATE(1307), - [sym_string] = STATE(1306), - [sym_simple_expansion] = STATE(1306), - [sym_string_expansion] = STATE(1306), - [sym_expansion] = STATE(1306), - [sym_command_substitution] = STATE(1306), - [sym_process_substitution] = STATE(1306), - [anon_sym_RBRACE] = ACTIONS(2790), - [sym__special_characters] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(2893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2893), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [849] = { - [sym__simple_heredoc_body] = ACTIONS(2895), - [sym__heredoc_body_beginning] = ACTIONS(2895), - [sym_file_descriptor] = ACTIONS(2895), - [sym__concat] = ACTIONS(2895), - [anon_sym_esac] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_SEMI_SEMI] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [anon_sym_EQ_TILDE] = ACTIONS(2897), - [anon_sym_EQ_EQ] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2897), - [anon_sym_GT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_AMP_GT] = ACTIONS(2897), - [anon_sym_AMP_GT_GT] = ACTIONS(2897), - [anon_sym_LT_AMP] = ACTIONS(2897), - [anon_sym_GT_AMP] = ACTIONS(2897), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_LT_LT_DASH] = ACTIONS(2897), - [anon_sym_LT_LT_LT] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2897), + [sym__concat] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym__string_content] = ACTIONS(1922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [sym_comment] = ACTIONS(179), }, [850] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2899), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2918), }, [851] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [852] = { - [sym__simple_heredoc_body] = ACTIONS(2903), - [sym__heredoc_body_beginning] = ACTIONS(2903), - [sym_file_descriptor] = ACTIONS(2903), - [sym__concat] = ACTIONS(2903), - [anon_sym_esac] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2905), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [anon_sym_PIPE_AMP] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_PIPE_PIPE] = ACTIONS(2905), - [anon_sym_EQ_TILDE] = ACTIONS(2905), - [anon_sym_EQ_EQ] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_AMP_GT] = ACTIONS(2905), - [anon_sym_AMP_GT_GT] = ACTIONS(2905), - [anon_sym_LT_AMP] = ACTIONS(2905), - [anon_sym_GT_AMP] = ACTIONS(2905), - [anon_sym_LT_LT] = ACTIONS(2905), - [anon_sym_LT_LT_DASH] = ACTIONS(2905), - [anon_sym_LT_LT_LT] = ACTIONS(2905), - [sym__special_characters] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), - [anon_sym_BQUOTE] = ACTIONS(2905), - [anon_sym_LT_LPAREN] = ACTIONS(2905), - [anon_sym_GT_LPAREN] = ACTIONS(2905), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2905), + [sym__concat] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym__string_content] = ACTIONS(2066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_comment] = ACTIONS(179), }, [853] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2907), + [sym__simple_heredoc_body] = ACTIONS(2920), + [sym__heredoc_body_beginning] = ACTIONS(2920), + [sym_file_descriptor] = ACTIONS(2920), + [sym__concat] = ACTIONS(2920), + [anon_sym_esac] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2922), + [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [anon_sym_PIPE_AMP] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [anon_sym_EQ_TILDE] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_GT_GT] = ACTIONS(2922), + [anon_sym_AMP_GT] = ACTIONS(2922), + [anon_sym_AMP_GT_GT] = ACTIONS(2922), + [anon_sym_LT_AMP] = ACTIONS(2922), + [anon_sym_GT_AMP] = ACTIONS(2922), + [anon_sym_LT_LT] = ACTIONS(2922), + [anon_sym_LT_LT_DASH] = ACTIONS(2922), + [anon_sym_LT_LT_LT] = ACTIONS(2922), + [sym__special_characters] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), + [anon_sym_BQUOTE] = ACTIONS(2922), + [anon_sym_LT_LPAREN] = ACTIONS(2922), + [anon_sym_GT_LPAREN] = ACTIONS(2922), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2922), }, [854] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [855] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2911), + [aux_sym_concatenation_repeat1] = STATE(580), + [sym__concat] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(2926), + [sym_comment] = ACTIONS(53), }, [856] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(580), + [sym__concat] = ACTIONS(2928), + [anon_sym_RBRACK] = ACTIONS(2930), + [sym_comment] = ACTIONS(53), }, [857] = { - [sym_concatenation] = STATE(1314), - [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), - [aux_sym_expansion_repeat1] = STATE(1314), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_EQ] = ACTIONS(2915), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(2915), - [anon_sym_COLON_QMARK] = ACTIONS(2915), - [anon_sym_COLON_DASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(2932), + [anon_sym_RBRACK] = ACTIONS(2930), + [sym_comment] = ACTIONS(53), }, [858] = { - [sym__simple_heredoc_body] = ACTIONS(2919), - [sym__heredoc_body_beginning] = ACTIONS(2919), - [sym_file_descriptor] = ACTIONS(2919), - [sym__concat] = ACTIONS(2919), - [anon_sym_esac] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_SEMI_SEMI] = ACTIONS(2921), - [anon_sym_PIPE_AMP] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_PIPE_PIPE] = ACTIONS(2921), - [anon_sym_EQ_TILDE] = ACTIONS(2921), - [anon_sym_EQ_EQ] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2921), - [anon_sym_AMP_GT] = ACTIONS(2921), - [anon_sym_AMP_GT_GT] = ACTIONS(2921), - [anon_sym_LT_AMP] = ACTIONS(2921), - [anon_sym_GT_AMP] = ACTIONS(2921), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_LT_LT_DASH] = ACTIONS(2921), - [anon_sym_LT_LT_LT] = ACTIONS(2921), - [sym__special_characters] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), - [anon_sym_BQUOTE] = ACTIONS(2921), - [anon_sym_LT_LPAREN] = ACTIONS(2921), - [anon_sym_GT_LPAREN] = ACTIONS(2921), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2921), + [sym__simple_heredoc_body] = ACTIONS(2934), + [sym__heredoc_body_beginning] = ACTIONS(2934), + [sym_file_descriptor] = ACTIONS(2934), + [sym__concat] = ACTIONS(2934), + [anon_sym_esac] = ACTIONS(2936), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_RPAREN] = ACTIONS(2936), + [anon_sym_SEMI_SEMI] = ACTIONS(2936), + [anon_sym_PIPE_AMP] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [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(2936), + [anon_sym_AMP_GT] = ACTIONS(2936), + [anon_sym_AMP_GT_GT] = ACTIONS(2936), + [anon_sym_LT_AMP] = ACTIONS(2936), + [anon_sym_GT_AMP] = ACTIONS(2936), + [anon_sym_LT_LT] = ACTIONS(2936), + [anon_sym_LT_LT_DASH] = ACTIONS(2936), + [anon_sym_LT_LT_LT] = ACTIONS(2936), + [sym__special_characters] = ACTIONS(2936), + [anon_sym_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2936), + [sym_raw_string] = ACTIONS(2936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), + [anon_sym_BQUOTE] = ACTIONS(2936), + [anon_sym_LT_LPAREN] = ACTIONS(2936), + [anon_sym_GT_LPAREN] = ACTIONS(2936), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_LF] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2936), }, [859] = { - [sym_concatenation] = STATE(1316), - [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), - [aux_sym_expansion_repeat1] = STATE(1316), - [anon_sym_RBRACE] = ACTIONS(2923), - [anon_sym_EQ] = ACTIONS(2925), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(2925), - [anon_sym_COLON_QMARK] = ACTIONS(2925), - [anon_sym_COLON_DASH] = ACTIONS(2925), - [anon_sym_PERCENT] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2940), + [sym_comment] = ACTIONS(53), }, [860] = { - [aux_sym_concatenation_repeat1] = STATE(1317), - [sym_file_descriptor] = ACTIONS(1145), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_PIPE_AMP] = ACTIONS(1145), - [anon_sym_AMP_AMP] = ACTIONS(1145), - [anon_sym_PIPE_PIPE] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_GT] = ACTIONS(1149), - [anon_sym_GT_GT] = ACTIONS(1145), - [anon_sym_AMP_GT] = ACTIONS(1149), - [anon_sym_AMP_GT_GT] = ACTIONS(1145), - [anon_sym_LT_AMP] = ACTIONS(1145), - [anon_sym_GT_AMP] = ACTIONS(1145), - [sym__special_characters] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [anon_sym_DOLLAR] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1145), - [anon_sym_BQUOTE] = ACTIONS(1145), - [anon_sym_LT_LPAREN] = ACTIONS(1145), - [anon_sym_GT_LPAREN] = ACTIONS(1145), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1145), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(1349), + [anon_sym_DQUOTE] = ACTIONS(2942), + [anon_sym_DOLLAR] = ACTIONS(2944), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [861] = { - [aux_sym_concatenation_repeat1] = STATE(1317), - [sym_file_descriptor] = ACTIONS(1123), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_PIPE_AMP] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1123), - [anon_sym_AMP_GT] = ACTIONS(1125), - [anon_sym_AMP_GT_GT] = ACTIONS(1123), - [anon_sym_LT_AMP] = ACTIONS(1123), - [anon_sym_GT_AMP] = ACTIONS(1123), - [sym__special_characters] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), - [anon_sym_BQUOTE] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(1123), - [anon_sym_GT_LPAREN] = ACTIONS(1123), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1123), + [sym_string] = STATE(1351), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2948), + [anon_sym_POUND] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2946), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_AT] = ACTIONS(2946), + [anon_sym_QMARK] = ACTIONS(2946), + [anon_sym_0] = ACTIONS(2952), + [anon_sym__] = ACTIONS(2952), }, [862] = { - [sym_concatenation] = STATE(1318), - [sym_string] = STATE(597), - [sym_simple_expansion] = STATE(597), - [sym_string_expansion] = STATE(597), - [sym_expansion] = STATE(597), - [sym_command_substitution] = STATE(597), - [sym_process_substitution] = STATE(597), - [aux_sym_for_statement_repeat1] = STATE(1318), - [sym__special_characters] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(71), - [sym_raw_string] = ACTIONS(1175), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(75), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(77), - [anon_sym_BQUOTE] = ACTIONS(79), - [anon_sym_LT_LPAREN] = ACTIONS(81), - [anon_sym_GT_LPAREN] = ACTIONS(81), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2954), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1175), }, [863] = { - [sym_do_group] = STATE(1320), - [anon_sym_do] = ACTIONS(2929), - [sym_comment] = ACTIONS(53), + [sym_subscript] = STATE(1358), + [sym_variable_name] = ACTIONS(2956), + [anon_sym_DOLLAR] = ACTIONS(2958), + [anon_sym_POUND] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2958), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_AT] = ACTIONS(2958), + [anon_sym_QMARK] = ACTIONS(2958), + [anon_sym_0] = ACTIONS(2964), + [anon_sym__] = ACTIONS(2964), }, [864] = { - [sym__terminated_statement] = STATE(1322), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1322), - [aux_sym_command_repeat1] = STATE(33), + [sym_for_statement] = STATE(1359), + [sym_c_style_for_statement] = STATE(1359), + [sym_while_statement] = STATE(1359), + [sym_if_statement] = STATE(1359), + [sym_case_statement] = STATE(1359), + [sym_function_definition] = STATE(1359), + [sym_subshell] = STATE(1359), + [sym_pipeline] = STATE(1359), + [sym_list] = STATE(1359), + [sym_negated_command] = STATE(1359), + [sym_test_command] = STATE(1359), + [sym_declaration_command] = STATE(1359), + [sym_unset_command] = STATE(1359), + [sym_command] = STATE(1359), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(1360), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -29106,96 +29875,127 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(303), }, [865] = { - [sym_file_redirect] = STATE(1324), - [sym_heredoc_redirect] = STATE(1324), - [sym_heredoc_body] = STATE(1323), - [sym_herestring_redirect] = STATE(1324), - [aux_sym_while_statement_repeat1] = STATE(1324), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_RPAREN] = ACTIONS(1183), - [anon_sym_PIPE_AMP] = ACTIONS(1183), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_PIPE_PIPE] = ACTIONS(1183), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(901), - [anon_sym_AMP_GT_GT] = ACTIONS(903), - [anon_sym_LT_AMP] = ACTIONS(903), - [anon_sym_GT_AMP] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(909), + [sym_for_statement] = STATE(1361), + [sym_c_style_for_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_case_statement] = STATE(1361), + [sym_function_definition] = STATE(1361), + [sym_subshell] = STATE(1361), + [sym_pipeline] = STATE(1361), + [sym_list] = STATE(1361), + [sym_negated_command] = STATE(1361), + [sym_test_command] = STATE(1361), + [sym_declaration_command] = STATE(1361), + [sym_unset_command] = STATE(1361), + [sym_command] = STATE(1361), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(1362), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), }, [866] = { - [sym__terminated_statement] = STATE(1327), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(1326), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1327), - [aux_sym_if_statement_repeat1] = STATE(1328), - [aux_sym_command_repeat1] = STATE(33), + [sym_for_statement] = STATE(1363), + [sym_c_style_for_statement] = STATE(1363), + [sym_while_statement] = STATE(1363), + [sym_if_statement] = STATE(1363), + [sym_case_statement] = STATE(1363), + [sym_function_definition] = STATE(1363), + [sym_subshell] = STATE(1363), + [sym_pipeline] = STATE(1363), + [sym_list] = STATE(1363), + [sym_negated_command] = STATE(1363), + [sym_test_command] = STATE(1363), + [sym_declaration_command] = STATE(1363), + [sym_unset_command] = STATE(1363), + [sym_command] = STATE(1363), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(1364), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(2933), - [anon_sym_elif] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -29203,4271 +30003,5893 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(303), }, [867] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2935), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym_LF] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_RBRACE] = ACTIONS(2954), + [sym_comment] = ACTIONS(53), }, [868] = { - [anon_sym_in] = ACTIONS(2939), + [sym_string] = STATE(1365), + [sym_simple_expansion] = STATE(1365), + [sym_string_expansion] = STATE(1365), + [sym_expansion] = STATE(1365), + [sym_command_substitution] = STATE(1365), + [sym_process_substitution] = STATE(1365), + [sym__special_characters] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(2966), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2966), }, [869] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2941), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2941), - [anon_sym_LF] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(731), + [anon_sym_POUND] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_COLON] = ACTIONS(733), + [anon_sym_COLON_QMARK] = ACTIONS(733), + [anon_sym_COLON_DASH] = ACTIONS(733), + [anon_sym_PERCENT] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(733), }, [870] = { - [anon_sym_in] = ACTIONS(2945), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_EQ] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(735), + [anon_sym_POUND] = ACTIONS(735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), + [anon_sym_COLON] = ACTIONS(737), + [anon_sym_COLON_QMARK] = ACTIONS(737), + [anon_sym_COLON_DASH] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), + [anon_sym_BQUOTE] = ACTIONS(735), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(737), }, [871] = { - [anon_sym_RPAREN] = ACTIONS(2947), - [sym_comment] = ACTIONS(53), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [872] = { - [sym__terminated_statement] = STATE(1335), - [sym_for_statement] = STATE(638), - [sym_while_statement] = STATE(638), - [sym_if_statement] = STATE(638), - [sym_case_statement] = STATE(638), - [sym_function_definition] = STATE(638), - [sym_subshell] = STATE(638), - [sym_pipeline] = STATE(638), - [sym_list] = STATE(638), - [sym_negated_command] = STATE(638), - [sym_test_command] = STATE(638), - [sym_declaration_command] = STATE(638), - [sym_unset_command] = STATE(638), - [sym_command] = STATE(638), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(639), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1335), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(2970), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [873] = { - [sym_file_redirect] = STATE(1338), - [sym_file_descriptor] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_RPAREN] = ACTIONS(1257), - [anon_sym_PIPE_AMP] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(2953), - [anon_sym_GT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_AMP_GT] = ACTIONS(2953), - [anon_sym_AMP_GT_GT] = ACTIONS(2955), - [anon_sym_LT_AMP] = ACTIONS(2955), - [anon_sym_GT_AMP] = ACTIONS(2955), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(769), + [sym__special_characters] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), + [anon_sym_COLON] = ACTIONS(769), + [anon_sym_COLON_QMARK] = ACTIONS(769), + [anon_sym_COLON_DASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(767), + [anon_sym_BQUOTE] = ACTIONS(767), + [anon_sym_LT_LPAREN] = ACTIONS(767), + [anon_sym_GT_LPAREN] = ACTIONS(767), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(769), }, [874] = { - [anon_sym_PIPE] = ACTIONS(1271), - [anon_sym_RPAREN] = ACTIONS(1273), - [anon_sym_PIPE_AMP] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1273), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(773), + [sym__special_characters] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(773), + [anon_sym_COLON_QMARK] = ACTIONS(773), + [anon_sym_COLON_DASH] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(771), + [anon_sym_LT_LPAREN] = ACTIONS(771), + [anon_sym_GT_LPAREN] = ACTIONS(771), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(773), }, [875] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(969), - [sym_raw_string] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(969), + [sym__concat] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(777), + [sym__special_characters] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), + [anon_sym_COLON] = ACTIONS(777), + [anon_sym_COLON_QMARK] = ACTIONS(777), + [anon_sym_COLON_DASH] = ACTIONS(777), + [anon_sym_PERCENT] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(775), + [anon_sym_GT_LPAREN] = ACTIONS(775), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(777), }, [876] = { - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_SEMI_SEMI] = ACTIONS(2961), - [anon_sym_PIPE_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(2972), + [sym_comment] = ACTIONS(53), }, [877] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_SEMI_SEMI] = ACTIONS(2961), - [anon_sym_PIPE_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), + [sym_concatenation] = STATE(1372), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1372), + [anon_sym_RBRACE] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2976), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2978), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2976), + [anon_sym_COLON_QMARK] = ACTIONS(2976), + [anon_sym_COLON_DASH] = ACTIONS(2976), + [anon_sym_PERCENT] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [878] = { + [sym_subscript] = STATE(1376), + [sym_variable_name] = ACTIONS(2982), + [anon_sym_DOLLAR] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(2984), + [anon_sym_AT] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_0] = ACTIONS(2988), + [anon_sym__] = ACTIONS(2988), + }, + [879] = { + [sym_concatenation] = STATE(1379), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1379), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2992), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(2994), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(2996), + [anon_sym_COLON] = ACTIONS(2992), + [anon_sym_COLON_QMARK] = ACTIONS(2992), + [anon_sym_COLON_DASH] = ACTIONS(2992), + [anon_sym_PERCENT] = ACTIONS(2992), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [880] = { + [sym_concatenation] = STATE(1382), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1382), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_EQ] = ACTIONS(3000), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3004), + [anon_sym_COLON] = ACTIONS(3000), + [anon_sym_COLON_QMARK] = ACTIONS(3000), + [anon_sym_COLON_DASH] = ACTIONS(3000), + [anon_sym_PERCENT] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [881] = { + [sym_concatenation] = STATE(1384), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1384), + [anon_sym_RBRACE] = ACTIONS(3006), + [anon_sym_EQ] = ACTIONS(3008), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3010), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(3008), + [anon_sym_COLON_QMARK] = ACTIONS(3008), + [anon_sym_COLON_DASH] = ACTIONS(3008), + [anon_sym_PERCENT] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [882] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3012), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [883] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3012), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), [anon_sym_AMP_GT_GT] = ACTIONS(371), [anon_sym_LT_AMP] = ACTIONS(371), [anon_sym_GT_AMP] = ACTIONS(371), [sym__special_characters] = ACTIONS(371), [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), [sym_raw_string] = ACTIONS(371), [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), [anon_sym_BQUOTE] = ACTIONS(371), [anon_sym_LT_LPAREN] = ACTIONS(371), [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), + [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2961), - }, - [878] = { - [sym_file_redirect] = STATE(1345), - [sym_heredoc_redirect] = STATE(1345), - [sym_herestring_redirect] = STATE(1345), - [aux_sym_while_statement_repeat1] = STATE(1345), - [sym_file_descriptor] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_RPAREN] = ACTIONS(1371), - [anon_sym_PIPE_AMP] = ACTIONS(1371), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_PIPE_PIPE] = ACTIONS(1371), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_GT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2969), - [anon_sym_AMP_GT] = ACTIONS(2967), - [anon_sym_AMP_GT_GT] = ACTIONS(2969), - [anon_sym_LT_AMP] = ACTIONS(2969), - [anon_sym_GT_AMP] = ACTIONS(2969), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_LT_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT_LT] = ACTIONS(2975), - [sym_comment] = ACTIONS(53), - }, - [879] = { - [sym_concatenation] = STATE(1346), - [sym_string] = STATE(1349), - [sym_array] = STATE(1346), - [sym_simple_expansion] = STATE(1349), - [sym_string_expansion] = STATE(1349), - [sym_expansion] = STATE(1349), - [sym_command_substitution] = STATE(1349), - [sym_process_substitution] = STATE(1349), - [sym__empty_value] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [sym__special_characters] = ACTIONS(2981), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(823), - [sym_raw_string] = ACTIONS(2983), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_LT_LPAREN] = ACTIONS(833), - [anon_sym_GT_LPAREN] = ACTIONS(833), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2983), - }, - [880] = { - [sym_string] = STATE(1350), - [sym_simple_expansion] = STATE(1350), - [sym_string_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1350), - [sym_process_substitution] = STATE(1350), - [sym__special_characters] = ACTIONS(2985), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(823), - [sym_raw_string] = ACTIONS(2985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_LT_LPAREN] = ACTIONS(833), - [anon_sym_GT_LPAREN] = ACTIONS(833), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2985), - }, - [881] = { - [aux_sym_concatenation_repeat1] = STATE(1351), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [sym__special_characters] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LT_LPAREN] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), - [sym_word] = ACTIONS(707), - }, - [882] = { - [sym__concat] = ACTIONS(709), - [sym_variable_name] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_PIPE_AMP] = ACTIONS(709), - [anon_sym_AMP_AMP] = ACTIONS(709), - [anon_sym_PIPE_PIPE] = ACTIONS(709), - [sym__special_characters] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(709), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(709), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(709), - [anon_sym_BQUOTE] = ACTIONS(709), - [anon_sym_LT_LPAREN] = ACTIONS(709), - [anon_sym_GT_LPAREN] = ACTIONS(709), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), - [sym_word] = ACTIONS(711), - }, - [883] = { - [anon_sym_DQUOTE] = ACTIONS(2987), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), }, [884] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(2987), - [anon_sym_DOLLAR] = ACTIONS(2989), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(3012), + [sym_comment] = ACTIONS(53), }, [885] = { - [sym__concat] = ACTIONS(741), - [sym_variable_name] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_PIPE_AMP] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(741), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [sym__special_characters] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), - [anon_sym_BQUOTE] = ACTIONS(741), - [anon_sym_LT_LPAREN] = ACTIONS(741), - [anon_sym_GT_LPAREN] = ACTIONS(741), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(3012), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), - [sym_word] = ACTIONS(743), + [sym_word] = ACTIONS(371), }, [886] = { - [sym__concat] = ACTIONS(745), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE_AMP] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(745), - [sym__special_characters] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(747), - [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), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3014), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [sym_word] = ACTIONS(747), }, [887] = { - [sym__concat] = ACTIONS(749), - [sym_variable_name] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [sym__special_characters] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [anon_sym_LT_LPAREN] = ACTIONS(749), - [anon_sym_GT_LPAREN] = ACTIONS(749), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3014), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), - [sym_word] = ACTIONS(751), + [sym_word] = ACTIONS(371), }, [888] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(2991), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(3016), + [sym__heredoc_body_beginning] = ACTIONS(3016), + [sym_file_descriptor] = ACTIONS(3016), + [sym__concat] = ACTIONS(3016), + [anon_sym_esac] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3018), + [anon_sym_SEMI_SEMI] = ACTIONS(3018), + [anon_sym_PIPE_AMP] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [anon_sym_EQ_TILDE] = ACTIONS(3018), + [anon_sym_EQ_EQ] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_GT_GT] = ACTIONS(3018), + [anon_sym_AMP_GT] = ACTIONS(3018), + [anon_sym_AMP_GT_GT] = ACTIONS(3018), + [anon_sym_LT_AMP] = ACTIONS(3018), + [anon_sym_GT_AMP] = ACTIONS(3018), + [anon_sym_LT_LT] = ACTIONS(3018), + [anon_sym_LT_LT_DASH] = ACTIONS(3018), + [anon_sym_LT_LT_LT] = ACTIONS(3018), + [sym__special_characters] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), + [anon_sym_BQUOTE] = ACTIONS(3018), + [anon_sym_LT_LPAREN] = ACTIONS(3018), + [anon_sym_GT_LPAREN] = ACTIONS(3018), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3018), }, [889] = { - [sym_concatenation] = STATE(1357), - [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), - [aux_sym_expansion_repeat1] = STATE(1357), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_EQ] = ACTIONS(2995), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_COLON] = ACTIONS(2995), - [anon_sym_COLON_QMARK] = ACTIONS(2995), - [anon_sym_COLON_DASH] = ACTIONS(2995), - [anon_sym_PERCENT] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(3022), + [sym__special_characters] = ACTIONS(3025), + [anon_sym_DQUOTE] = ACTIONS(3028), + [anon_sym_DOLLAR] = ACTIONS(3031), + [sym_raw_string] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(3037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_COLON] = ACTIONS(3022), + [anon_sym_COLON_QMARK] = ACTIONS(3022), + [anon_sym_COLON_DASH] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3043), + [anon_sym_BQUOTE] = ACTIONS(3046), + [anon_sym_LT_LPAREN] = ACTIONS(3049), + [anon_sym_GT_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3052), }, [890] = { - [sym_subscript] = STATE(1361), - [sym_variable_name] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), + [sym_concatenation] = STATE(1389), + [sym_string] = STATE(1388), + [sym_simple_expansion] = STATE(1388), + [sym_string_expansion] = STATE(1388), + [sym_expansion] = STATE(1388), + [sym_command_substitution] = STATE(1388), + [sym_process_substitution] = STATE(1388), + [anon_sym_RBRACE] = ACTIONS(2954), + [sym__special_characters] = ACTIONS(3055), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(3057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_AT] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_0] = ACTIONS(3007), - [anon_sym__] = ACTIONS(3007), + [sym_word] = ACTIONS(3057), }, [891] = { - [sym_concatenation] = STATE(1364), - [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), - [aux_sym_expansion_repeat1] = STATE(1364), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3011), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3013), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3011), - [anon_sym_COLON_QMARK] = ACTIONS(3011), - [anon_sym_COLON_DASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__simple_heredoc_body] = ACTIONS(3059), + [sym__heredoc_body_beginning] = ACTIONS(3059), + [sym_file_descriptor] = ACTIONS(3059), + [sym__concat] = ACTIONS(3059), + [anon_sym_esac] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_SEMI_SEMI] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [anon_sym_EQ_TILDE] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(3061), + [anon_sym_LT_AMP] = ACTIONS(3061), + [anon_sym_GT_AMP] = ACTIONS(3061), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_LT_LT_DASH] = ACTIONS(3061), + [anon_sym_LT_LT_LT] = ACTIONS(3061), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), + [anon_sym_BQUOTE] = ACTIONS(3061), + [anon_sym_LT_LPAREN] = ACTIONS(3061), + [anon_sym_GT_LPAREN] = ACTIONS(3061), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), }, [892] = { - [sym_concatenation] = STATE(1367), - [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), - [aux_sym_expansion_repeat1] = STATE(1367), - [anon_sym_RBRACE] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3019), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_DASH] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3063), }, [893] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [894] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym__simple_heredoc_body] = ACTIONS(3067), + [sym__heredoc_body_beginning] = ACTIONS(3067), + [sym_file_descriptor] = ACTIONS(3067), + [sym__concat] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_SEMI_SEMI] = ACTIONS(3069), + [anon_sym_PIPE_AMP] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_EQ_TILDE] = ACTIONS(3069), + [anon_sym_EQ_EQ] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_GT] = ACTIONS(3069), + [anon_sym_AMP_GT] = ACTIONS(3069), + [anon_sym_AMP_GT_GT] = ACTIONS(3069), + [anon_sym_LT_AMP] = ACTIONS(3069), + [anon_sym_GT_AMP] = ACTIONS(3069), + [anon_sym_LT_LT] = ACTIONS(3069), + [anon_sym_LT_LT_DASH] = ACTIONS(3069), + [anon_sym_LT_LT_LT] = ACTIONS(3069), + [sym__special_characters] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), + [anon_sym_BQUOTE] = ACTIONS(3069), + [anon_sym_LT_LPAREN] = ACTIONS(3069), + [anon_sym_GT_LPAREN] = ACTIONS(3069), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3069), }, [895] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3025), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3071), }, [896] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(3025), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [897] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3027), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3075), }, [898] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3027), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [899] = { - [sym_variable_assignment] = STATE(899), - [sym_subscript] = STATE(461), - [sym_concatenation] = STATE(899), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_declaration_command_repeat1] = STATE(899), - [sym_variable_name] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_RPAREN] = ACTIONS(1543), - [anon_sym_PIPE_AMP] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_PIPE_PIPE] = ACTIONS(1543), - [sym__special_characters] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3038), - [sym_raw_string] = ACTIONS(3041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3047), - [anon_sym_BQUOTE] = ACTIONS(3050), - [anon_sym_LT_LPAREN] = ACTIONS(3053), - [anon_sym_GT_LPAREN] = ACTIONS(3053), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), - [sym_word] = ACTIONS(3059), + [sym_concatenation] = STATE(1396), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1396), + [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3079), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(3079), + [anon_sym_COLON_QMARK] = ACTIONS(3079), + [anon_sym_COLON_DASH] = ACTIONS(3079), + [anon_sym_PERCENT] = ACTIONS(3079), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [900] = { - [sym_string] = STATE(1370), - [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__special_characters] = ACTIONS(3062), - [anon_sym_DQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(843), - [sym_raw_string] = ACTIONS(3062), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(851), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3062), + [sym__simple_heredoc_body] = ACTIONS(3083), + [sym__heredoc_body_beginning] = ACTIONS(3083), + [sym_file_descriptor] = ACTIONS(3083), + [sym__concat] = ACTIONS(3083), + [anon_sym_esac] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_RPAREN] = ACTIONS(3085), + [anon_sym_SEMI_SEMI] = ACTIONS(3085), + [anon_sym_PIPE_AMP] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_EQ_TILDE] = ACTIONS(3085), + [anon_sym_EQ_EQ] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_GT] = ACTIONS(3085), + [anon_sym_GT_GT] = ACTIONS(3085), + [anon_sym_AMP_GT] = ACTIONS(3085), + [anon_sym_AMP_GT_GT] = ACTIONS(3085), + [anon_sym_LT_AMP] = ACTIONS(3085), + [anon_sym_GT_AMP] = ACTIONS(3085), + [anon_sym_LT_LT] = ACTIONS(3085), + [anon_sym_LT_LT_DASH] = ACTIONS(3085), + [anon_sym_LT_LT_LT] = ACTIONS(3085), + [sym__special_characters] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), + [anon_sym_BQUOTE] = ACTIONS(3085), + [anon_sym_LT_LPAREN] = ACTIONS(3085), + [anon_sym_GT_LPAREN] = ACTIONS(3085), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), }, [901] = { - [aux_sym_concatenation_repeat1] = STATE(1371), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [sym__special_characters] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LT_LPAREN] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), - [sym_word] = ACTIONS(707), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1398), + [anon_sym_RBRACE] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3089), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(3089), + [anon_sym_COLON_QMARK] = ACTIONS(3089), + [anon_sym_COLON_DASH] = ACTIONS(3089), + [anon_sym_PERCENT] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [902] = { - [sym__concat] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_PIPE_AMP] = ACTIONS(709), - [anon_sym_AMP_AMP] = ACTIONS(709), - [anon_sym_PIPE_PIPE] = ACTIONS(709), - [sym__special_characters] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(709), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(709), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(709), - [anon_sym_BQUOTE] = ACTIONS(709), - [anon_sym_LT_LPAREN] = ACTIONS(709), - [anon_sym_GT_LPAREN] = ACTIONS(709), + [aux_sym_concatenation_repeat1] = STATE(1399), + [sym_file_descriptor] = ACTIONS(1173), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_RPAREN] = ACTIONS(1173), + [anon_sym_PIPE_AMP] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1173), + [anon_sym_PIPE_PIPE] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_AMP_GT] = ACTIONS(1177), + [anon_sym_AMP_GT_GT] = ACTIONS(1173), + [anon_sym_LT_AMP] = ACTIONS(1173), + [anon_sym_GT_AMP] = ACTIONS(1173), + [sym__special_characters] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1173), + [anon_sym_BQUOTE] = ACTIONS(1173), + [anon_sym_LT_LPAREN] = ACTIONS(1173), + [anon_sym_GT_LPAREN] = ACTIONS(1173), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), - [sym_word] = ACTIONS(711), + [sym_word] = ACTIONS(1173), }, [903] = { - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), + [aux_sym_concatenation_repeat1] = STATE(1399), + [sym_file_descriptor] = ACTIONS(1151), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_PIPE_AMP] = ACTIONS(1151), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT] = ACTIONS(1153), + [anon_sym_GT] = ACTIONS(1153), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1153), + [anon_sym_AMP_GT_GT] = ACTIONS(1151), + [anon_sym_LT_AMP] = ACTIONS(1151), + [anon_sym_GT_AMP] = ACTIONS(1151), + [sym__special_characters] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1151), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), + [anon_sym_BQUOTE] = ACTIONS(1151), + [anon_sym_LT_LPAREN] = ACTIONS(1151), + [anon_sym_GT_LPAREN] = ACTIONS(1151), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1151), }, [904] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [sym__expression] = STATE(1401), + [sym_binary_expression] = STATE(1401), + [sym_unary_expression] = STATE(1401), + [sym_parenthesized_expression] = STATE(1401), + [sym_concatenation] = STATE(1401), + [sym_string] = STATE(230), + [sym_simple_expansion] = STATE(230), + [sym_string_expansion] = STATE(230), + [sym_expansion] = STATE(230), + [sym_command_substitution] = STATE(230), + [sym_process_substitution] = STATE(230), + [anon_sym_SEMI_SEMI] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [sym__special_characters] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(417), + [sym_raw_string] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(419), + [sym_test_operator] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3093), }, [905] = { - [sym__concat] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_PIPE_AMP] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(741), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [sym__special_characters] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), - [anon_sym_BQUOTE] = ACTIONS(741), - [anon_sym_LT_LPAREN] = ACTIONS(741), - [anon_sym_GT_LPAREN] = ACTIONS(741), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), - [sym_word] = ACTIONS(743), + [anon_sym_SEMI_SEMI] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym_LF] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3097), }, [906] = { - [sym__concat] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE_AMP] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(745), - [sym__special_characters] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(747), - [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_concatenation] = STATE(1403), + [sym_string] = STATE(640), + [sym_simple_expansion] = STATE(640), + [sym_string_expansion] = STATE(640), + [sym_expansion] = STATE(640), + [sym_command_substitution] = STATE(640), + [sym_process_substitution] = STATE(640), + [aux_sym_for_statement_repeat1] = STATE(1403), + [sym__special_characters] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(73), + [sym_raw_string] = ACTIONS(1257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(81), + [anon_sym_LT_LPAREN] = ACTIONS(83), + [anon_sym_GT_LPAREN] = ACTIONS(83), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [sym_word] = ACTIONS(747), + [sym_word] = ACTIONS(1257), }, [907] = { - [sym__concat] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [sym__special_characters] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [anon_sym_LT_LPAREN] = ACTIONS(749), - [anon_sym_GT_LPAREN] = ACTIONS(749), + [sym_do_group] = STATE(1405), + [anon_sym_do] = ACTIONS(3101), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), - [sym_word] = ACTIONS(751), }, [908] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(3068), + [sym__terminated_statement] = STATE(1407), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1407), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [909] = { - [sym_concatenation] = STATE(1377), - [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), - [aux_sym_expansion_repeat1] = STATE(1377), - [anon_sym_RBRACE] = ACTIONS(3070), - [anon_sym_EQ] = ACTIONS(3072), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3076), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_COLON_DASH] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_redirect] = STATE(1409), + [sym_heredoc_redirect] = STATE(1409), + [sym_heredoc_body] = STATE(1408), + [sym_herestring_redirect] = STATE(1409), + [aux_sym_while_statement_repeat1] = STATE(1409), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_PIPE_AMP] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(937), + [sym_comment] = ACTIONS(53), }, [910] = { - [sym_subscript] = STATE(1381), - [sym_variable_name] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), + [sym__terminated_statement] = STATE(1412), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(1413), + [sym_else_clause] = STATE(1411), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1412), + [aux_sym_if_statement_repeat1] = STATE(1413), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(3105), + [anon_sym_elif] = ACTIONS(1269), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AT] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3080), - [anon_sym_0] = ACTIONS(3084), - [anon_sym__] = ACTIONS(3084), + [sym_word] = ACTIONS(55), }, [911] = { - [sym_concatenation] = STATE(1384), - [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), - [aux_sym_expansion_repeat1] = STATE(1384), - [anon_sym_RBRACE] = ACTIONS(3086), - [anon_sym_EQ] = ACTIONS(3088), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3092), - [anon_sym_COLON] = ACTIONS(3088), - [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_DASH] = ACTIONS(3088), - [anon_sym_PERCENT] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(3107), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_LF] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), }, [912] = { - [sym_concatenation] = STATE(1387), - [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), - [aux_sym_expansion_repeat1] = STATE(1387), - [anon_sym_RBRACE] = ACTIONS(3094), - [anon_sym_EQ] = ACTIONS(3096), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3098), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_COLON] = ACTIONS(3096), - [anon_sym_COLON_QMARK] = ACTIONS(3096), - [anon_sym_COLON_DASH] = ACTIONS(3096), - [anon_sym_PERCENT] = ACTIONS(3096), - [anon_sym_DASH] = ACTIONS(3096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_in] = ACTIONS(3111), + [sym_comment] = ACTIONS(53), }, [913] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3102), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI_SEMI] = ACTIONS(3113), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_LF] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), }, [914] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3102), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [anon_sym_in] = ACTIONS(3117), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [915] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3102), + [anon_sym_RPAREN] = ACTIONS(3119), [sym_comment] = ACTIONS(53), }, [916] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(3102), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym__terminated_statement] = STATE(1420), + [sym_for_statement] = STATE(680), + [sym_c_style_for_statement] = STATE(680), + [sym_while_statement] = STATE(680), + [sym_if_statement] = STATE(680), + [sym_case_statement] = STATE(680), + [sym_function_definition] = STATE(680), + [sym_subshell] = STATE(680), + [sym_pipeline] = STATE(680), + [sym_list] = STATE(680), + [sym_negated_command] = STATE(680), + [sym_test_command] = STATE(680), + [sym_declaration_command] = STATE(680), + [sym_unset_command] = STATE(680), + [sym_command] = STATE(680), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(681), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1420), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_word] = ACTIONS(55), }, [917] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3104), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_file_redirect] = STATE(1423), + [sym_file_descriptor] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_RPAREN] = ACTIONS(1339), + [anon_sym_PIPE_AMP] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_GT_GT] = ACTIONS(3127), + [anon_sym_AMP_GT] = ACTIONS(3125), + [anon_sym_AMP_GT_GT] = ACTIONS(3127), + [anon_sym_LT_AMP] = ACTIONS(3127), + [anon_sym_GT_AMP] = ACTIONS(3127), [sym_comment] = ACTIONS(53), }, [918] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3104), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(1353), + [anon_sym_RPAREN] = ACTIONS(1355), + [anon_sym_PIPE_AMP] = ACTIONS(1355), + [anon_sym_AMP_AMP] = ACTIONS(1355), + [anon_sym_PIPE_PIPE] = ACTIONS(1355), + [anon_sym_BQUOTE] = ACTIONS(1355), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [919] = { - [sym_concatenation] = STATE(919), - [sym_string] = STATE(466), - [sym_simple_expansion] = STATE(466), - [sym_string_expansion] = STATE(466), - [sym_expansion] = STATE(466), - [sym_command_substitution] = STATE(466), - [sym_process_substitution] = STATE(466), - [aux_sym_unset_command_repeat1] = STATE(919), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(1626), - [anon_sym_PIPE_AMP] = ACTIONS(1626), - [anon_sym_AMP_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1626), - [sym__special_characters] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3112), - [sym_raw_string] = ACTIONS(3115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), - [anon_sym_BQUOTE] = ACTIONS(3124), - [anon_sym_LT_LPAREN] = ACTIONS(3127), - [anon_sym_GT_LPAREN] = ACTIONS(3127), + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(997), + [sym_raw_string] = ACTIONS(995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), + [anon_sym_BQUOTE] = ACTIONS(995), + [anon_sym_LT_LPAREN] = ACTIONS(995), + [anon_sym_GT_LPAREN] = ACTIONS(995), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3130), - [sym_word] = ACTIONS(3133), + [sym_word] = ACTIONS(997), }, [920] = { - [sym__simple_heredoc_body] = ACTIONS(1672), - [sym__heredoc_body_beginning] = ACTIONS(1672), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_EQ_TILDE] = ACTIONS(1674), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1672), - [anon_sym_LT_AMP] = ACTIONS(1672), - [anon_sym_GT_AMP] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1672), - [anon_sym_LT_LT_LT] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(3131), + [anon_sym_SEMI_SEMI] = ACTIONS(3133), + [anon_sym_PIPE_AMP] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym_LF] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3133), }, [921] = { - [aux_sym_concatenation_repeat1] = STATE(921), - [sym__simple_heredoc_body] = ACTIONS(1672), - [sym__heredoc_body_beginning] = ACTIONS(1672), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(3136), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_EQ_TILDE] = ACTIONS(1674), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1672), - [anon_sym_LT_AMP] = ACTIONS(1672), - [anon_sym_GT_AMP] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1672), - [anon_sym_LT_LT_LT] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1674), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(3131), + [anon_sym_SEMI_SEMI] = ACTIONS(3133), + [anon_sym_PIPE_AMP] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym_LF] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3133), }, [922] = { - [sym__simple_heredoc_body] = ACTIONS(1679), - [sym__heredoc_body_beginning] = ACTIONS(1679), - [sym_file_descriptor] = ACTIONS(1679), - [sym__concat] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_PIPE_AMP] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_PIPE_PIPE] = ACTIONS(1679), - [anon_sym_EQ_TILDE] = ACTIONS(1681), - [anon_sym_EQ_EQ] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1679), - [anon_sym_AMP_GT] = ACTIONS(1681), - [anon_sym_AMP_GT_GT] = ACTIONS(1679), - [anon_sym_LT_AMP] = ACTIONS(1679), - [anon_sym_GT_AMP] = ACTIONS(1679), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1679), - [anon_sym_LT_LT_LT] = ACTIONS(1679), - [sym__special_characters] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1679), - [anon_sym_BQUOTE] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1679), - [anon_sym_GT_LPAREN] = ACTIONS(1679), + [sym_file_redirect] = STATE(1430), + [sym_heredoc_redirect] = STATE(1430), + [sym_herestring_redirect] = STATE(1430), + [aux_sym_while_statement_repeat1] = STATE(1430), + [sym_file_descriptor] = ACTIONS(3137), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_RPAREN] = ACTIONS(1453), + [anon_sym_PIPE_AMP] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3139), + [anon_sym_GT_GT] = ACTIONS(3141), + [anon_sym_AMP_GT] = ACTIONS(3139), + [anon_sym_AMP_GT_GT] = ACTIONS(3141), + [anon_sym_LT_AMP] = ACTIONS(3141), + [anon_sym_GT_AMP] = ACTIONS(3141), + [anon_sym_LT_LT] = ACTIONS(3143), + [anon_sym_LT_LT_DASH] = ACTIONS(3145), + [anon_sym_LT_LT_LT] = ACTIONS(3147), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1681), }, [923] = { - [anon_sym_DQUOTE] = ACTIONS(3139), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), + [sym_concatenation] = STATE(1431), + [sym_string] = STATE(1434), + [sym_array] = STATE(1431), + [sym_simple_expansion] = STATE(1434), + [sym_string_expansion] = STATE(1434), + [sym_expansion] = STATE(1434), + [sym_command_substitution] = STATE(1434), + [sym_process_substitution] = STATE(1434), + [sym__empty_value] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3151), + [sym__special_characters] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(3155), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), + [anon_sym_BQUOTE] = ACTIONS(859), + [anon_sym_LT_LPAREN] = ACTIONS(861), + [anon_sym_GT_LPAREN] = ACTIONS(861), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3155), }, [924] = { - [sym_concatenation] = STATE(1394), - [sym_string] = STATE(1393), - [sym_simple_expansion] = STATE(1393), - [sym_string_expansion] = STATE(1393), - [sym_expansion] = STATE(1393), - [sym_command_substitution] = STATE(1393), - [sym_process_substitution] = STATE(1393), - [anon_sym_RBRACE] = ACTIONS(3141), - [sym__special_characters] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(3145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_string] = STATE(1435), + [sym_simple_expansion] = STATE(1435), + [sym_string_expansion] = STATE(1435), + [sym_expansion] = STATE(1435), + [sym_command_substitution] = STATE(1435), + [sym_process_substitution] = STATE(1435), + [sym__special_characters] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(3157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), + [anon_sym_BQUOTE] = ACTIONS(859), + [anon_sym_LT_LPAREN] = ACTIONS(861), + [anon_sym_GT_LPAREN] = ACTIONS(861), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3145), + [sym_word] = ACTIONS(3157), }, [925] = { - [sym__simple_heredoc_body] = ACTIONS(1764), - [sym__heredoc_body_beginning] = ACTIONS(1764), - [sym_file_descriptor] = ACTIONS(1764), - [sym__concat] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1764), - [anon_sym_PIPE_AMP] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_EQ_TILDE] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_GT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1764), - [anon_sym_AMP_GT] = ACTIONS(1766), - [anon_sym_AMP_GT_GT] = ACTIONS(1764), - [anon_sym_LT_AMP] = ACTIONS(1764), - [anon_sym_GT_AMP] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_LT_LT_DASH] = ACTIONS(1764), - [anon_sym_LT_LT_LT] = ACTIONS(1764), - [sym__special_characters] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1764), - [anon_sym_BQUOTE] = ACTIONS(1764), - [anon_sym_LT_LPAREN] = ACTIONS(1764), - [anon_sym_GT_LPAREN] = ACTIONS(1764), + [aux_sym_concatenation_repeat1] = STATE(1436), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [sym__special_characters] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1766), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), + [sym_word] = ACTIONS(733), }, [926] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3147), + [sym__concat] = ACTIONS(735), + [sym_variable_name] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_PIPE_AMP] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [sym__special_characters] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), + [anon_sym_BQUOTE] = ACTIONS(735), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), + [sym_word] = ACTIONS(737), }, [927] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3149), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [928] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(3151), - [sym_comment] = ACTIONS(53), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_DOLLAR] = ACTIONS(3161), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [929] = { - [sym_concatenation] = STATE(1400), - [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), - [aux_sym_expansion_repeat1] = STATE(1400), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_EQ] = ACTIONS(3155), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), + [sym__concat] = ACTIONS(767), + [sym_variable_name] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [sym__special_characters] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(769), [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_COLON] = ACTIONS(3155), - [anon_sym_COLON_QMARK] = ACTIONS(3155), - [anon_sym_COLON_DASH] = ACTIONS(3155), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(767), + [anon_sym_BQUOTE] = ACTIONS(767), + [anon_sym_LT_LPAREN] = ACTIONS(767), + [anon_sym_GT_LPAREN] = ACTIONS(767), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(769), + [sym_word] = ACTIONS(769), }, [930] = { - [sym_concatenation] = STATE(1403), - [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), - [aux_sym_expansion_repeat1] = STATE(1403), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3165), + [sym__concat] = ACTIONS(771), + [sym_variable_name] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [sym__special_characters] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(771), [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3163), - [anon_sym_COLON_QMARK] = ACTIONS(3163), - [anon_sym_COLON_DASH] = ACTIONS(3163), - [anon_sym_PERCENT] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(771), + [anon_sym_LT_LPAREN] = ACTIONS(771), + [anon_sym_GT_LPAREN] = ACTIONS(771), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), + [sym_word] = ACTIONS(773), }, [931] = { - [sym_concatenation] = STATE(1405), - [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), - [aux_sym_expansion_repeat1] = STATE(1405), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_EQ] = ACTIONS(3169), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3171), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_COLON] = ACTIONS(3169), - [anon_sym_COLON_QMARK] = ACTIONS(3169), - [anon_sym_COLON_DASH] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), + [sym__concat] = ACTIONS(775), + [sym_variable_name] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_PIPE_AMP] = ACTIONS(775), + [anon_sym_AMP_AMP] = ACTIONS(775), + [anon_sym_PIPE_PIPE] = ACTIONS(775), + [sym__special_characters] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(775), + [anon_sym_GT_LPAREN] = ACTIONS(775), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(777), + [sym_word] = ACTIONS(777), }, [932] = { - [sym__simple_heredoc_body] = ACTIONS(1832), - [sym__heredoc_body_beginning] = ACTIONS(1832), - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_EQ_TILDE] = ACTIONS(1834), - [anon_sym_EQ_EQ] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1832), - [anon_sym_LT_AMP] = ACTIONS(1832), - [anon_sym_GT_AMP] = ACTIONS(1832), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1832), - [anon_sym_LT_LT_LT] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(3163), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1834), }, [933] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3175), + [sym_concatenation] = STATE(1442), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1442), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_EQ] = ACTIONS(3167), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_COLON_QMARK] = ACTIONS(3167), + [anon_sym_COLON_DASH] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [934] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_subscript] = STATE(1446), + [sym_variable_name] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_0] = ACTIONS(3179), + [anon_sym__] = ACTIONS(3179), }, [935] = { - [sym__simple_heredoc_body] = ACTIONS(1840), - [sym__heredoc_body_beginning] = ACTIONS(1840), - [sym_file_descriptor] = ACTIONS(1840), - [sym__concat] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_PIPE_AMP] = ACTIONS(1840), - [anon_sym_AMP_AMP] = ACTIONS(1840), - [anon_sym_PIPE_PIPE] = ACTIONS(1840), - [anon_sym_EQ_TILDE] = ACTIONS(1842), - [anon_sym_EQ_EQ] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_GT] = ACTIONS(1842), - [anon_sym_GT_GT] = ACTIONS(1840), - [anon_sym_AMP_GT] = ACTIONS(1842), - [anon_sym_AMP_GT_GT] = ACTIONS(1840), - [anon_sym_LT_AMP] = ACTIONS(1840), - [anon_sym_GT_AMP] = ACTIONS(1840), - [anon_sym_LT_LT] = ACTIONS(1842), - [anon_sym_LT_LT_DASH] = ACTIONS(1840), - [anon_sym_LT_LT_LT] = ACTIONS(1840), - [sym__special_characters] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1840), - [anon_sym_LT_LPAREN] = ACTIONS(1840), - [anon_sym_GT_LPAREN] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1842), + [sym_concatenation] = STATE(1449), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1449), + [anon_sym_RBRACE] = ACTIONS(3181), + [anon_sym_EQ] = ACTIONS(3183), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_COLON] = ACTIONS(3183), + [anon_sym_COLON_QMARK] = ACTIONS(3183), + [anon_sym_COLON_DASH] = ACTIONS(3183), + [anon_sym_PERCENT] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [936] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3179), + [sym_concatenation] = STATE(1452), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1452), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_EQ] = ACTIONS(3191), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3193), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_COLON] = ACTIONS(3191), + [anon_sym_COLON_QMARK] = ACTIONS(3191), + [anon_sym_COLON_DASH] = ACTIONS(3191), + [anon_sym_PERCENT] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [937] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3197), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), }, [938] = { - [sym__simple_heredoc_body] = ACTIONS(1980), - [sym__heredoc_body_beginning] = ACTIONS(1980), - [sym_file_descriptor] = ACTIONS(1980), - [sym__concat] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_EQ_TILDE] = ACTIONS(1982), - [anon_sym_EQ_EQ] = ACTIONS(1982), - [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__special_characters] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_LT_LPAREN] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1980), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3197), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1982), + [sym_word] = ACTIONS(371), }, [939] = { - [sym__simple_heredoc_body] = ACTIONS(2046), - [sym__heredoc_body_beginning] = ACTIONS(2046), - [sym_file_descriptor] = ACTIONS(2046), - [sym__concat] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2046), - [anon_sym_PIPE_AMP] = ACTIONS(2046), - [anon_sym_AMP_AMP] = ACTIONS(2046), - [anon_sym_PIPE_PIPE] = ACTIONS(2046), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2048), - [anon_sym_LT] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2046), - [anon_sym_AMP_GT] = ACTIONS(2048), - [anon_sym_AMP_GT_GT] = ACTIONS(2046), - [anon_sym_LT_AMP] = ACTIONS(2046), - [anon_sym_GT_AMP] = ACTIONS(2046), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_LT_LT_DASH] = ACTIONS(2046), - [anon_sym_LT_LT_LT] = ACTIONS(2046), - [sym__special_characters] = ACTIONS(2046), - [anon_sym_DQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2046), - [anon_sym_BQUOTE] = ACTIONS(2046), - [anon_sym_LT_LPAREN] = ACTIONS(2046), - [anon_sym_GT_LPAREN] = ACTIONS(2046), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(3197), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2048), }, [940] = { - [sym_compound_statement] = STATE(1409), - [anon_sym_LBRACE] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(3197), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [941] = { - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_PIPE_AMP] = ACTIONS(2052), - [anon_sym_AMP_AMP] = ACTIONS(2052), - [anon_sym_PIPE_PIPE] = ACTIONS(2052), - [anon_sym_BQUOTE] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), [sym_comment] = ACTIONS(53), }, [942] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_PIPE_AMP] = ACTIONS(2052), - [anon_sym_AMP_AMP] = ACTIONS(2052), - [anon_sym_PIPE_PIPE] = ACTIONS(2052), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_word] = ACTIONS(371), }, [943] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(2056), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(2056), - [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [sym_variable_assignment] = STATE(476), + [sym_subscript] = STATE(477), + [sym_concatenation] = STATE(476), + [sym_string] = STATE(470), + [sym_simple_expansion] = STATE(470), + [sym_string_expansion] = STATE(470), + [sym_expansion] = STATE(470), + [sym_command_substitution] = STATE(470), + [sym_process_substitution] = STATE(470), + [aux_sym_declaration_command_repeat1] = STATE(943), + [sym_variable_name] = ACTIONS(3201), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_PIPE_AMP] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1625), + [sym__special_characters] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3207), + [anon_sym_DOLLAR] = ACTIONS(3210), + [sym_raw_string] = ACTIONS(3213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3219), + [anon_sym_BQUOTE] = ACTIONS(3222), + [anon_sym_LT_LPAREN] = ACTIONS(3225), + [anon_sym_GT_LPAREN] = ACTIONS(3225), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3228), + [sym_word] = ACTIONS(3231), }, [944] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(2056), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(2056), - [anon_sym_PIPE_PIPE] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_string] = STATE(1455), + [sym_simple_expansion] = STATE(1455), + [sym_string_expansion] = STATE(1455), + [sym_expansion] = STATE(1455), + [sym_command_substitution] = STATE(1455), + [sym_process_substitution] = STATE(1455), + [sym__special_characters] = ACTIONS(3234), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(871), + [sym_raw_string] = ACTIONS(3234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), + [anon_sym_BQUOTE] = ACTIONS(879), + [anon_sym_LT_LPAREN] = ACTIONS(881), + [anon_sym_GT_LPAREN] = ACTIONS(881), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_word] = ACTIONS(3234), }, [945] = { - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_PIPE_AMP] = ACTIONS(2060), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_PIPE_PIPE] = ACTIONS(2060), - [anon_sym_BQUOTE] = ACTIONS(2060), + [aux_sym_concatenation_repeat1] = STATE(1456), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [sym__special_characters] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), + [sym_word] = ACTIONS(733), }, [946] = { - [sym_simple_expansion] = STATE(999), - [sym_expansion] = STATE(999), - [aux_sym_heredoc_body_repeat1] = STATE(999), - [sym__heredoc_body_middle] = ACTIONS(2078), - [sym__heredoc_body_end] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_PIPE_AMP] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [sym__special_characters] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), + [anon_sym_BQUOTE] = ACTIONS(735), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), + [sym_word] = ACTIONS(737), }, [947] = { - [sym_concatenation] = STATE(1413), - [sym_string] = STATE(1412), - [sym_simple_expansion] = STATE(1412), - [sym_string_expansion] = STATE(1412), - [sym_expansion] = STATE(1412), - [sym_command_substitution] = STATE(1412), - [sym_process_substitution] = STATE(1412), - [sym__special_characters] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(3185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3236), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [948] = { - [aux_sym_concatenation_repeat1] = STATE(474), - [sym__simple_heredoc_body] = ACTIONS(2086), - [sym__heredoc_body_beginning] = ACTIONS(2086), - [sym_file_descriptor] = ACTIONS(2086), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2086), - [anon_sym_PIPE_AMP] = ACTIONS(2086), - [anon_sym_AMP_AMP] = ACTIONS(2086), - [anon_sym_PIPE_PIPE] = ACTIONS(2086), - [anon_sym_EQ_TILDE] = ACTIONS(2088), - [anon_sym_EQ_EQ] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_GT] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(2086), - [anon_sym_AMP_GT] = ACTIONS(2088), - [anon_sym_AMP_GT_GT] = ACTIONS(2086), - [anon_sym_LT_AMP] = ACTIONS(2086), - [anon_sym_GT_AMP] = ACTIONS(2086), - [anon_sym_LT_LT] = ACTIONS(2088), - [anon_sym_LT_LT_DASH] = ACTIONS(2086), - [anon_sym_LT_LT_LT] = 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(53), - [sym_word] = ACTIONS(2088), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(3236), + [anon_sym_DOLLAR] = ACTIONS(3238), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [949] = { - [aux_sym_concatenation_repeat1] = STATE(474), - [sym__simple_heredoc_body] = ACTIONS(2090), - [sym__heredoc_body_beginning] = ACTIONS(2090), - [sym_file_descriptor] = ACTIONS(2090), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_PIPE_AMP] = ACTIONS(2090), - [anon_sym_AMP_AMP] = ACTIONS(2090), - [anon_sym_PIPE_PIPE] = ACTIONS(2090), - [anon_sym_EQ_TILDE] = ACTIONS(2092), - [anon_sym_EQ_EQ] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2090), - [anon_sym_AMP_GT] = ACTIONS(2092), - [anon_sym_AMP_GT_GT] = ACTIONS(2090), - [anon_sym_LT_AMP] = ACTIONS(2090), - [anon_sym_GT_AMP] = ACTIONS(2090), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2090), - [anon_sym_LT_LT_LT] = ACTIONS(2090), - [sym__special_characters] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2090), - [anon_sym_DOLLAR] = ACTIONS(2092), - [sym_raw_string] = ACTIONS(2090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2090), - [anon_sym_LT_LPAREN] = ACTIONS(2090), - [anon_sym_GT_LPAREN] = ACTIONS(2090), + [sym__concat] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [sym__special_characters] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym_raw_string] = ACTIONS(767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(767), + [anon_sym_BQUOTE] = ACTIONS(767), + [anon_sym_LT_LPAREN] = ACTIONS(767), + [anon_sym_GT_LPAREN] = ACTIONS(767), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2092), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(769), + [sym_word] = ACTIONS(769), }, [950] = { - [sym__simple_heredoc_body] = ACTIONS(2090), - [sym__heredoc_body_beginning] = ACTIONS(2090), - [sym_file_descriptor] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_PIPE_AMP] = ACTIONS(2090), - [anon_sym_AMP_AMP] = ACTIONS(2090), - [anon_sym_PIPE_PIPE] = ACTIONS(2090), - [anon_sym_EQ_TILDE] = ACTIONS(2092), - [anon_sym_EQ_EQ] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2090), - [anon_sym_AMP_GT] = ACTIONS(2092), - [anon_sym_AMP_GT_GT] = ACTIONS(2090), - [anon_sym_LT_AMP] = ACTIONS(2090), - [anon_sym_GT_AMP] = ACTIONS(2090), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2090), - [anon_sym_LT_LT_LT] = ACTIONS(2090), - [sym__special_characters] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2090), - [anon_sym_DOLLAR] = ACTIONS(2092), - [sym_raw_string] = ACTIONS(2090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2090), - [anon_sym_LT_LPAREN] = ACTIONS(2090), - [anon_sym_GT_LPAREN] = ACTIONS(2090), + [sym__concat] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [sym__special_characters] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(771), + [anon_sym_LT_LPAREN] = ACTIONS(771), + [anon_sym_GT_LPAREN] = ACTIONS(771), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2092), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), + [sym_word] = ACTIONS(773), }, [951] = { - [aux_sym_concatenation_repeat1] = STATE(1414), - [sym__simple_heredoc_body] = ACTIONS(671), - [sym__heredoc_body_beginning] = ACTIONS(671), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(671), - [anon_sym_PIPE_AMP] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_AMP_GT] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(671), - [anon_sym_GT_AMP] = ACTIONS(671), - [anon_sym_LT_LT] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(671), - [anon_sym_LT_LT_LT] = ACTIONS(671), + [sym__concat] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_PIPE_AMP] = ACTIONS(775), + [anon_sym_AMP_AMP] = ACTIONS(775), + [anon_sym_PIPE_PIPE] = ACTIONS(775), + [sym__special_characters] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(775), + [anon_sym_GT_LPAREN] = ACTIONS(775), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(777), + [sym_word] = ACTIONS(777), }, [952] = { - [aux_sym_concatenation_repeat1] = STATE(1414), - [sym__simple_heredoc_body] = ACTIONS(689), - [sym__heredoc_body_beginning] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_PIPE_AMP] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_AMP] = ACTIONS(689), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(689), - [anon_sym_LT_LT_LT] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(3240), [sym_comment] = ACTIONS(53), }, [953] = { - [sym__simple_heredoc_body] = ACTIONS(689), - [sym__heredoc_body_beginning] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_PIPE_AMP] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_AMP] = ACTIONS(689), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(689), - [anon_sym_LT_LT_LT] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1462), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1462), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3246), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_COLON_QMARK] = ACTIONS(3244), + [anon_sym_COLON_DASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [954] = { - [sym__simple_heredoc_body] = ACTIONS(2094), - [sym__heredoc_body_beginning] = ACTIONS(2094), - [sym_file_descriptor] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2094), - [anon_sym_PIPE_AMP] = ACTIONS(2094), - [anon_sym_AMP_AMP] = ACTIONS(2094), - [anon_sym_PIPE_PIPE] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2094), - [anon_sym_AMP_GT] = ACTIONS(2096), - [anon_sym_AMP_GT_GT] = ACTIONS(2094), - [anon_sym_LT_AMP] = ACTIONS(2094), - [anon_sym_GT_AMP] = ACTIONS(2094), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_LT_LT_DASH] = ACTIONS(2094), - [anon_sym_LT_LT_LT] = ACTIONS(2094), - [anon_sym_BQUOTE] = ACTIONS(2094), + [sym_subscript] = STATE(1466), + [sym_variable_name] = ACTIONS(3250), + [anon_sym_DOLLAR] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3252), + [anon_sym_0] = ACTIONS(3256), + [anon_sym__] = ACTIONS(3256), }, [955] = { - [aux_sym_concatenation_repeat1] = STATE(1414), - [sym__simple_heredoc_body] = ACTIONS(2098), - [sym__heredoc_body_beginning] = ACTIONS(2098), - [sym_file_descriptor] = ACTIONS(2098), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_PIPE_AMP] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_AMP_GT] = ACTIONS(2100), - [anon_sym_AMP_GT_GT] = ACTIONS(2098), - [anon_sym_LT_AMP] = ACTIONS(2098), - [anon_sym_GT_AMP] = ACTIONS(2098), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_LT_LT_DASH] = ACTIONS(2098), - [anon_sym_LT_LT_LT] = ACTIONS(2098), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1469), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1469), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_EQ] = ACTIONS(3260), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_COLON_QMARK] = ACTIONS(3260), + [anon_sym_COLON_DASH] = ACTIONS(3260), + [anon_sym_PERCENT] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [956] = { - [aux_sym_concatenation_repeat1] = STATE(1414), - [sym__simple_heredoc_body] = ACTIONS(2102), - [sym__heredoc_body_beginning] = ACTIONS(2102), - [sym_file_descriptor] = ACTIONS(2102), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2102), - [anon_sym_PIPE_AMP] = ACTIONS(2102), - [anon_sym_AMP_AMP] = ACTIONS(2102), - [anon_sym_PIPE_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2102), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2102), - [anon_sym_LT_AMP] = ACTIONS(2102), - [anon_sym_GT_AMP] = ACTIONS(2102), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2102), - [anon_sym_LT_LT_LT] = ACTIONS(2102), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1472), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1472), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_EQ] = ACTIONS(3268), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3270), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_COLON_QMARK] = ACTIONS(3268), + [anon_sym_COLON_DASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [957] = { - [sym__simple_heredoc_body] = ACTIONS(2102), - [sym__heredoc_body_beginning] = ACTIONS(2102), - [sym_file_descriptor] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2102), - [anon_sym_PIPE_AMP] = ACTIONS(2102), - [anon_sym_AMP_AMP] = ACTIONS(2102), - [anon_sym_PIPE_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2102), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2102), - [anon_sym_LT_AMP] = ACTIONS(2102), - [anon_sym_GT_AMP] = ACTIONS(2102), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2102), - [anon_sym_LT_LT_LT] = ACTIONS(2102), - [anon_sym_BQUOTE] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), [sym_comment] = ACTIONS(53), }, [958] = { - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_RPAREN] = ACTIONS(2108), - [anon_sym_PIPE_AMP] = ACTIONS(2108), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_BQUOTE] = ACTIONS(2108), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [959] = { - [sym_file_redirect] = STATE(959), - [sym_heredoc_redirect] = STATE(959), - [sym_herestring_redirect] = STATE(959), - [aux_sym_while_statement_repeat1] = STATE(959), - [sym__simple_heredoc_body] = ACTIONS(2110), - [sym__heredoc_body_beginning] = ACTIONS(2110), - [sym_file_descriptor] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_RPAREN] = ACTIONS(2110), - [anon_sym_PIPE_AMP] = ACTIONS(2110), - [anon_sym_AMP_AMP] = ACTIONS(2110), - [anon_sym_PIPE_PIPE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_GT] = ACTIONS(3190), - [anon_sym_GT_GT] = ACTIONS(3193), - [anon_sym_AMP_GT] = ACTIONS(3190), - [anon_sym_AMP_GT_GT] = ACTIONS(3193), - [anon_sym_LT_AMP] = ACTIONS(3193), - [anon_sym_GT_AMP] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3196), - [anon_sym_LT_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT_LT] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(3274), [sym_comment] = ACTIONS(53), }, [960] = { - [sym_file_redirect] = STATE(959), - [sym_heredoc_redirect] = STATE(959), - [sym_heredoc_body] = STATE(1415), - [sym_herestring_redirect] = STATE(959), - [aux_sym_while_statement_repeat1] = STATE(959), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_RPAREN] = ACTIONS(2108), - [anon_sym_PIPE_AMP] = ACTIONS(2108), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(901), - [anon_sym_AMP_GT_GT] = ACTIONS(903), - [anon_sym_LT_AMP] = ACTIONS(903), - [anon_sym_GT_AMP] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(909), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(3274), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [961] = { - [sym_concatenation] = STATE(961), - [sym_string] = STATE(504), - [sym_simple_expansion] = STATE(504), - [sym_string_expansion] = STATE(504), - [sym_expansion] = STATE(504), - [sym_command_substitution] = STATE(504), - [sym_process_substitution] = STATE(504), - [aux_sym_command_repeat2] = STATE(961), - [sym__simple_heredoc_body] = ACTIONS(2090), - [sym__heredoc_body_beginning] = ACTIONS(2090), - [sym_file_descriptor] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_PIPE_AMP] = ACTIONS(2090), - [anon_sym_AMP_AMP] = ACTIONS(2090), - [anon_sym_PIPE_PIPE] = ACTIONS(2090), - [anon_sym_EQ_TILDE] = ACTIONS(3205), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2090), - [anon_sym_AMP_GT] = ACTIONS(2092), - [anon_sym_AMP_GT_GT] = ACTIONS(2090), - [anon_sym_LT_AMP] = ACTIONS(2090), - [anon_sym_GT_AMP] = ACTIONS(2090), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2090), - [anon_sym_LT_LT_LT] = ACTIONS(2090), - [sym__special_characters] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(3211), - [anon_sym_DOLLAR] = ACTIONS(3214), - [sym_raw_string] = ACTIONS(3217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3223), - [anon_sym_BQUOTE] = ACTIONS(3226), - [anon_sym_LT_LPAREN] = ACTIONS(3229), - [anon_sym_GT_LPAREN] = ACTIONS(3229), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3232), }, [962] = { - [sym_file_redirect] = STATE(1416), - [sym_heredoc_redirect] = STATE(1416), - [sym_heredoc_body] = STATE(1415), - [sym_herestring_redirect] = STATE(1416), - [sym_concatenation] = STATE(961), - [sym_string] = STATE(504), - [sym_simple_expansion] = STATE(504), - [sym_string_expansion] = STATE(504), - [sym_expansion] = STATE(504), - [sym_command_substitution] = STATE(504), - [sym_process_substitution] = STATE(504), - [aux_sym_while_statement_repeat1] = STATE(1416), - [aux_sym_command_repeat2] = STATE(961), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_RPAREN] = ACTIONS(2108), - [anon_sym_PIPE_AMP] = ACTIONS(2108), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_EQ_TILDE] = ACTIONS(899), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(901), - [anon_sym_AMP_GT_GT] = ACTIONS(903), - [anon_sym_LT_AMP] = ACTIONS(903), - [anon_sym_GT_AMP] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(909), - [sym__special_characters] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(915), + [sym_word] = ACTIONS(371), }, [963] = { - [aux_sym_concatenation_repeat1] = STATE(1417), - [sym_file_descriptor] = ACTIONS(1145), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_PIPE_AMP] = ACTIONS(1145), - [anon_sym_AMP_AMP] = ACTIONS(1145), - [anon_sym_PIPE_PIPE] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_GT] = ACTIONS(1149), - [anon_sym_GT_GT] = ACTIONS(1145), - [anon_sym_AMP_GT] = ACTIONS(1149), - [anon_sym_AMP_GT_GT] = ACTIONS(1145), - [anon_sym_LT_AMP] = ACTIONS(1145), - [anon_sym_GT_AMP] = ACTIONS(1145), - [sym__special_characters] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [anon_sym_DOLLAR] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1145), - [anon_sym_BQUOTE] = ACTIONS(1145), - [anon_sym_LT_LPAREN] = ACTIONS(1145), - [anon_sym_GT_LPAREN] = ACTIONS(1145), + [sym_concatenation] = STATE(963), + [sym_string] = STATE(482), + [sym_simple_expansion] = STATE(482), + [sym_string_expansion] = STATE(482), + [sym_expansion] = STATE(482), + [sym_command_substitution] = STATE(482), + [sym_process_substitution] = STATE(482), + [aux_sym_unset_command_repeat1] = STATE(963), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__special_characters] = ACTIONS(3278), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_DOLLAR] = ACTIONS(3284), + [sym_raw_string] = ACTIONS(3287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3296), + [anon_sym_LT_LPAREN] = ACTIONS(3299), + [anon_sym_GT_LPAREN] = ACTIONS(3299), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1145), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3302), + [sym_word] = ACTIONS(3305), }, [964] = { - [aux_sym_concatenation_repeat1] = STATE(1417), - [sym_file_descriptor] = ACTIONS(1123), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_PIPE_AMP] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1123), - [anon_sym_AMP_GT] = ACTIONS(1125), - [anon_sym_AMP_GT_GT] = ACTIONS(1123), - [anon_sym_LT_AMP] = ACTIONS(1123), - [anon_sym_GT_AMP] = ACTIONS(1123), - [sym__special_characters] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), - [anon_sym_BQUOTE] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(1123), - [anon_sym_GT_LPAREN] = ACTIONS(1123), + [sym__simple_heredoc_body] = ACTIONS(1754), + [sym__heredoc_body_beginning] = ACTIONS(1754), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_EQ_TILDE] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1754), + [anon_sym_LT_AMP] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1754), + [anon_sym_LT_LT_LT] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1123), + [sym_word] = ACTIONS(1756), }, [965] = { - [sym_file_redirect] = STATE(1418), - [sym_heredoc_redirect] = STATE(1418), - [sym_heredoc_body] = STATE(1323), - [sym_herestring_redirect] = STATE(1418), - [aux_sym_while_statement_repeat1] = STATE(1418), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_PIPE_AMP] = ACTIONS(1183), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_PIPE_PIPE] = ACTIONS(1183), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(949), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(1183), + [aux_sym_concatenation_repeat1] = STATE(965), + [sym__simple_heredoc_body] = ACTIONS(1754), + [sym__heredoc_body_beginning] = ACTIONS(1754), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(3308), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_EQ_TILDE] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1754), + [anon_sym_LT_AMP] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1754), + [anon_sym_LT_LT_LT] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1756), }, [966] = { - [anon_sym_RPAREN] = ACTIONS(3235), + [sym__simple_heredoc_body] = ACTIONS(1761), + [sym__heredoc_body_beginning] = ACTIONS(1761), + [sym_file_descriptor] = ACTIONS(1761), + [sym__concat] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_PIPE_AMP] = ACTIONS(1761), + [anon_sym_AMP_AMP] = ACTIONS(1761), + [anon_sym_PIPE_PIPE] = ACTIONS(1761), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_GT] = ACTIONS(1761), + [anon_sym_AMP_GT] = ACTIONS(1763), + [anon_sym_AMP_GT_GT] = ACTIONS(1761), + [anon_sym_LT_AMP] = ACTIONS(1761), + [anon_sym_GT_AMP] = ACTIONS(1761), + [anon_sym_LT_LT] = ACTIONS(1763), + [anon_sym_LT_LT_DASH] = ACTIONS(1761), + [anon_sym_LT_LT_LT] = ACTIONS(1761), + [sym__special_characters] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), + [anon_sym_BQUOTE] = ACTIONS(1761), + [anon_sym_LT_LPAREN] = ACTIONS(1761), + [anon_sym_GT_LPAREN] = ACTIONS(1761), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1763), }, [967] = { - [sym_file_redirect] = STATE(1338), - [sym_file_descriptor] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_PIPE_AMP] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3241), - [anon_sym_AMP_GT] = ACTIONS(3239), - [anon_sym_AMP_GT_GT] = ACTIONS(3241), - [anon_sym_LT_AMP] = ACTIONS(3241), - [anon_sym_GT_AMP] = ACTIONS(3241), - [anon_sym_BQUOTE] = ACTIONS(1257), - [sym_comment] = ACTIONS(53), + [anon_sym_DQUOTE] = ACTIONS(3311), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [968] = { - [sym_file_redirect] = STATE(1425), - [sym_heredoc_redirect] = STATE(1425), - [sym_herestring_redirect] = STATE(1425), - [aux_sym_while_statement_repeat1] = STATE(1425), - [sym_file_descriptor] = ACTIONS(3243), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_PIPE_AMP] = ACTIONS(1371), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_PIPE_PIPE] = ACTIONS(1371), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_GT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3247), - [anon_sym_AMP_GT] = ACTIONS(3245), - [anon_sym_AMP_GT_GT] = ACTIONS(3247), - [anon_sym_LT_AMP] = ACTIONS(3247), - [anon_sym_GT_AMP] = ACTIONS(3247), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_LT_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT_LT] = ACTIONS(3249), - [anon_sym_BQUOTE] = ACTIONS(1371), + [sym_concatenation] = STATE(1479), + [sym_string] = STATE(1478), + [sym_simple_expansion] = STATE(1478), + [sym_string_expansion] = STATE(1478), + [sym_expansion] = STATE(1478), + [sym_command_substitution] = STATE(1478), + [sym_process_substitution] = STATE(1478), + [anon_sym_RBRACE] = ACTIONS(3313), + [sym__special_characters] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(3317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3317), }, [969] = { - [sym_concatenation] = STATE(1346), - [sym_string] = STATE(1427), - [sym_array] = STATE(1346), - [sym_simple_expansion] = STATE(1427), - [sym_string_expansion] = STATE(1427), - [sym_expansion] = STATE(1427), - [sym_command_substitution] = STATE(1427), - [sym_process_substitution] = STATE(1427), - [sym__empty_value] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [sym__special_characters] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(823), - [sym_raw_string] = ACTIONS(3253), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_LT_LPAREN] = ACTIONS(833), - [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym__simple_heredoc_body] = ACTIONS(1846), + [sym__heredoc_body_beginning] = ACTIONS(1846), + [sym_file_descriptor] = ACTIONS(1846), + [sym__concat] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_PIPE_AMP] = ACTIONS(1846), + [anon_sym_AMP_AMP] = ACTIONS(1846), + [anon_sym_PIPE_PIPE] = ACTIONS(1846), + [anon_sym_EQ_TILDE] = ACTIONS(1848), + [anon_sym_EQ_EQ] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_GT_GT] = ACTIONS(1846), + [anon_sym_AMP_GT] = ACTIONS(1848), + [anon_sym_AMP_GT_GT] = ACTIONS(1846), + [anon_sym_LT_AMP] = ACTIONS(1846), + [anon_sym_GT_AMP] = ACTIONS(1846), + [anon_sym_LT_LT] = ACTIONS(1848), + [anon_sym_LT_LT_DASH] = ACTIONS(1846), + [anon_sym_LT_LT_LT] = ACTIONS(1846), + [sym__special_characters] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), + [anon_sym_BQUOTE] = ACTIONS(1846), + [anon_sym_LT_LPAREN] = ACTIONS(1846), + [anon_sym_GT_LPAREN] = ACTIONS(1846), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3253), + [sym_word] = ACTIONS(1848), }, [970] = { - [aux_sym_concatenation_repeat1] = STATE(1428), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [sym__special_characters] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LT_LPAREN] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), - [sym_word] = ACTIONS(707), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3319), }, [971] = { - [sym_variable_assignment] = STATE(971), - [sym_subscript] = STATE(517), - [sym_concatenation] = STATE(971), - [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), - [aux_sym_declaration_command_repeat1] = STATE(971), - [sym_variable_name] = ACTIONS(3255), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_PIPE_AMP] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_PIPE_PIPE] = ACTIONS(1543), - [sym__special_characters] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3038), - [sym_raw_string] = ACTIONS(3261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3047), - [anon_sym_BQUOTE] = ACTIONS(3050), - [anon_sym_LT_LPAREN] = ACTIONS(3053), - [anon_sym_GT_LPAREN] = ACTIONS(3053), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), - [sym_word] = ACTIONS(3264), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [972] = { - [aux_sym_concatenation_repeat1] = STATE(1429), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [sym__special_characters] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LT_LPAREN] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(3323), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), - [sym_word] = ACTIONS(707), }, [973] = { - [sym_concatenation] = STATE(973), + [sym_concatenation] = STATE(1485), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1485), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_EQ] = ACTIONS(3327), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3331), + [anon_sym_COLON] = ACTIONS(3327), + [anon_sym_COLON_QMARK] = ACTIONS(3327), + [anon_sym_COLON_DASH] = ACTIONS(3327), + [anon_sym_PERCENT] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [974] = { + [sym_concatenation] = STATE(1488), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1488), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_EQ] = ACTIONS(3335), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3337), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_COLON] = ACTIONS(3335), + [anon_sym_COLON_QMARK] = ACTIONS(3335), + [anon_sym_COLON_DASH] = ACTIONS(3335), + [anon_sym_PERCENT] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [975] = { + [sym_concatenation] = STATE(1490), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1490), + [anon_sym_RBRACE] = ACTIONS(3313), + [anon_sym_EQ] = ACTIONS(3341), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3345), + [anon_sym_COLON] = ACTIONS(3341), + [anon_sym_COLON_QMARK] = ACTIONS(3341), + [anon_sym_COLON_DASH] = ACTIONS(3341), + [anon_sym_PERCENT] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [976] = { + [sym__simple_heredoc_body] = ACTIONS(1914), + [sym__heredoc_body_beginning] = ACTIONS(1914), + [sym_file_descriptor] = ACTIONS(1914), + [sym__concat] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_PIPE_AMP] = ACTIONS(1914), + [anon_sym_AMP_AMP] = ACTIONS(1914), + [anon_sym_PIPE_PIPE] = ACTIONS(1914), + [anon_sym_EQ_TILDE] = ACTIONS(1916), + [anon_sym_EQ_EQ] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_GT] = ACTIONS(1916), + [anon_sym_GT_GT] = ACTIONS(1914), + [anon_sym_AMP_GT] = ACTIONS(1916), + [anon_sym_AMP_GT_GT] = ACTIONS(1914), + [anon_sym_LT_AMP] = ACTIONS(1914), + [anon_sym_GT_AMP] = ACTIONS(1914), + [anon_sym_LT_LT] = ACTIONS(1916), + [anon_sym_LT_LT_DASH] = ACTIONS(1914), + [anon_sym_LT_LT_LT] = ACTIONS(1914), + [sym__special_characters] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1914), + [anon_sym_LT_LPAREN] = ACTIONS(1914), + [anon_sym_GT_LPAREN] = ACTIONS(1914), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1916), + }, + [977] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3347), + }, + [978] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [979] = { + [sym__simple_heredoc_body] = ACTIONS(1922), + [sym__heredoc_body_beginning] = ACTIONS(1922), + [sym_file_descriptor] = ACTIONS(1922), + [sym__concat] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_PIPE_AMP] = ACTIONS(1922), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [anon_sym_EQ_TILDE] = ACTIONS(1924), + [anon_sym_EQ_EQ] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_GT] = ACTIONS(1924), + [anon_sym_GT_GT] = ACTIONS(1922), + [anon_sym_AMP_GT] = ACTIONS(1924), + [anon_sym_AMP_GT_GT] = ACTIONS(1922), + [anon_sym_LT_AMP] = ACTIONS(1922), + [anon_sym_GT_AMP] = ACTIONS(1922), + [anon_sym_LT_LT] = ACTIONS(1924), + [anon_sym_LT_LT_DASH] = ACTIONS(1922), + [anon_sym_LT_LT_LT] = ACTIONS(1922), + [sym__special_characters] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [anon_sym_LT_LPAREN] = ACTIONS(1922), + [anon_sym_GT_LPAREN] = ACTIONS(1922), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1924), + }, + [980] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3351), + }, + [981] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3313), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [982] = { + [sym__simple_heredoc_body] = ACTIONS(2066), + [sym__heredoc_body_beginning] = ACTIONS(2066), + [sym_file_descriptor] = ACTIONS(2066), + [sym__concat] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), + [anon_sym_EQ_TILDE] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2066), + [anon_sym_AMP_GT] = ACTIONS(2068), + [anon_sym_AMP_GT_GT] = ACTIONS(2066), + [anon_sym_LT_AMP] = ACTIONS(2066), + [anon_sym_GT_AMP] = ACTIONS(2066), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_LT_LT_DASH] = ACTIONS(2066), + [anon_sym_LT_LT_LT] = ACTIONS(2066), + [sym__special_characters] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), + [anon_sym_BQUOTE] = ACTIONS(2066), + [anon_sym_LT_LPAREN] = ACTIONS(2066), + [anon_sym_GT_LPAREN] = ACTIONS(2066), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2068), + }, + [983] = { + [sym__simple_heredoc_body] = ACTIONS(2132), + [sym__heredoc_body_beginning] = ACTIONS(2132), + [sym_file_descriptor] = ACTIONS(2132), + [sym__concat] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_PIPE_AMP] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_EQ_TILDE] = ACTIONS(2134), + [anon_sym_EQ_EQ] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(2132), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(2132), + [anon_sym_LT_AMP] = ACTIONS(2132), + [anon_sym_GT_AMP] = ACTIONS(2132), + [anon_sym_LT_LT] = ACTIONS(2134), + [anon_sym_LT_LT_DASH] = ACTIONS(2132), + [anon_sym_LT_LT_LT] = ACTIONS(2132), + [sym__special_characters] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2132), + [anon_sym_BQUOTE] = ACTIONS(2132), + [anon_sym_LT_LPAREN] = ACTIONS(2132), + [anon_sym_GT_LPAREN] = ACTIONS(2132), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2134), + }, + [984] = { + [sym_compound_statement] = STATE(1494), + [anon_sym_LBRACE] = ACTIONS(1960), + [sym_comment] = ACTIONS(53), + }, + [985] = { + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(2138), + [anon_sym_PIPE_AMP] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2138), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_comment] = ACTIONS(53), + }, + [986] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(2138), + [anon_sym_PIPE_AMP] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [987] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2142), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(2142), + [anon_sym_PIPE_PIPE] = ACTIONS(2142), + [sym_comment] = ACTIONS(53), + }, + [988] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(2142), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(2142), + [anon_sym_PIPE_PIPE] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [989] = { + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_RPAREN] = ACTIONS(2146), + [anon_sym_PIPE_AMP] = ACTIONS(2146), + [anon_sym_AMP_AMP] = ACTIONS(2146), + [anon_sym_PIPE_PIPE] = ACTIONS(2146), + [anon_sym_BQUOTE] = ACTIONS(2146), + [sym_comment] = ACTIONS(53), + }, + [990] = { + [sym_simple_expansion] = STATE(1043), + [sym_expansion] = STATE(1043), + [aux_sym_heredoc_body_repeat1] = STATE(1043), + [sym__heredoc_body_middle] = ACTIONS(2164), + [sym__heredoc_body_end] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1009), + [sym_comment] = ACTIONS(53), + }, + [991] = { + [sym_concatenation] = STATE(1498), + [sym_string] = STATE(1497), + [sym_simple_expansion] = STATE(1497), + [sym_string_expansion] = STATE(1497), + [sym_expansion] = STATE(1497), + [sym_command_substitution] = STATE(1497), + [sym_process_substitution] = STATE(1497), + [sym__special_characters] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3357), + }, + [992] = { + [aux_sym_concatenation_repeat1] = STATE(490), + [sym__simple_heredoc_body] = ACTIONS(2172), + [sym__heredoc_body_beginning] = ACTIONS(2172), + [sym_file_descriptor] = ACTIONS(2172), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_PIPE_AMP] = ACTIONS(2172), + [anon_sym_AMP_AMP] = ACTIONS(2172), + [anon_sym_PIPE_PIPE] = ACTIONS(2172), + [anon_sym_EQ_TILDE] = ACTIONS(2174), + [anon_sym_EQ_EQ] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_GT_GT] = ACTIONS(2172), + [anon_sym_AMP_GT] = ACTIONS(2174), + [anon_sym_AMP_GT_GT] = ACTIONS(2172), + [anon_sym_LT_AMP] = ACTIONS(2172), + [anon_sym_GT_AMP] = ACTIONS(2172), + [anon_sym_LT_LT] = ACTIONS(2174), + [anon_sym_LT_LT_DASH] = ACTIONS(2172), + [anon_sym_LT_LT_LT] = ACTIONS(2172), + [sym__special_characters] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_DOLLAR] = ACTIONS(2174), + [sym_raw_string] = ACTIONS(2172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2172), + [anon_sym_BQUOTE] = ACTIONS(2172), + [anon_sym_LT_LPAREN] = ACTIONS(2172), + [anon_sym_GT_LPAREN] = ACTIONS(2172), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2174), + }, + [993] = { + [aux_sym_concatenation_repeat1] = STATE(490), + [sym__simple_heredoc_body] = ACTIONS(2176), + [sym__heredoc_body_beginning] = ACTIONS(2176), + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(2176), + [anon_sym_EQ_TILDE] = ACTIONS(2178), + [anon_sym_EQ_EQ] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2176), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2176), + [anon_sym_LT_AMP] = ACTIONS(2176), + [anon_sym_GT_AMP] = ACTIONS(2176), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2176), + [anon_sym_LT_LT_LT] = ACTIONS(2176), + [sym__special_characters] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(2178), + [sym_raw_string] = ACTIONS(2176), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_LT_LPAREN] = ACTIONS(2176), + [anon_sym_GT_LPAREN] = ACTIONS(2176), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2178), + }, + [994] = { + [sym__simple_heredoc_body] = ACTIONS(2176), + [sym__heredoc_body_beginning] = ACTIONS(2176), + [sym_file_descriptor] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(2176), + [anon_sym_EQ_TILDE] = ACTIONS(2178), + [anon_sym_EQ_EQ] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2176), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2176), + [anon_sym_LT_AMP] = ACTIONS(2176), + [anon_sym_GT_AMP] = ACTIONS(2176), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2176), + [anon_sym_LT_LT_LT] = ACTIONS(2176), + [sym__special_characters] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(2178), + [sym_raw_string] = ACTIONS(2176), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_LT_LPAREN] = ACTIONS(2176), + [anon_sym_GT_LPAREN] = ACTIONS(2176), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2178), + }, + [995] = { + [aux_sym_concatenation_repeat1] = STATE(1499), + [sym__simple_heredoc_body] = ACTIONS(697), + [sym__heredoc_body_beginning] = ACTIONS(697), + [sym_file_descriptor] = ACTIONS(697), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(697), + [anon_sym_PIPE_AMP] = ACTIONS(697), + [anon_sym_AMP_AMP] = ACTIONS(697), + [anon_sym_PIPE_PIPE] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(697), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(697), + [anon_sym_LT_AMP] = ACTIONS(697), + [anon_sym_GT_AMP] = ACTIONS(697), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(697), + [anon_sym_LT_LT_LT] = ACTIONS(697), + [sym_comment] = ACTIONS(53), + }, + [996] = { + [aux_sym_concatenation_repeat1] = STATE(1499), + [sym__simple_heredoc_body] = ACTIONS(715), + [sym__heredoc_body_beginning] = ACTIONS(715), + [sym_file_descriptor] = ACTIONS(715), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(715), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(715), + [anon_sym_LT_AMP] = ACTIONS(715), + [anon_sym_GT_AMP] = ACTIONS(715), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(715), + [anon_sym_LT_LT_LT] = ACTIONS(715), + [sym_comment] = ACTIONS(53), + }, + [997] = { + [sym__simple_heredoc_body] = ACTIONS(715), + [sym__heredoc_body_beginning] = ACTIONS(715), + [sym_file_descriptor] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(715), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(715), + [anon_sym_LT_AMP] = ACTIONS(715), + [anon_sym_GT_AMP] = ACTIONS(715), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(715), + [anon_sym_LT_LT_LT] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_comment] = ACTIONS(53), + }, + [998] = { + [sym__simple_heredoc_body] = ACTIONS(2180), + [sym__heredoc_body_beginning] = ACTIONS(2180), + [sym_file_descriptor] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2182), + [anon_sym_RPAREN] = ACTIONS(2180), + [anon_sym_PIPE_AMP] = ACTIONS(2180), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_PIPE_PIPE] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_GT] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(2180), + [anon_sym_AMP_GT] = ACTIONS(2182), + [anon_sym_AMP_GT_GT] = ACTIONS(2180), + [anon_sym_LT_AMP] = ACTIONS(2180), + [anon_sym_GT_AMP] = ACTIONS(2180), + [anon_sym_LT_LT] = ACTIONS(2182), + [anon_sym_LT_LT_DASH] = ACTIONS(2180), + [anon_sym_LT_LT_LT] = ACTIONS(2180), + [anon_sym_BQUOTE] = ACTIONS(2180), + [sym_comment] = ACTIONS(53), + }, + [999] = { + [aux_sym_concatenation_repeat1] = STATE(1499), + [sym__simple_heredoc_body] = ACTIONS(2184), + [sym__heredoc_body_beginning] = ACTIONS(2184), + [sym_file_descriptor] = ACTIONS(2184), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_RPAREN] = ACTIONS(2184), + [anon_sym_PIPE_AMP] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_PIPE_PIPE] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_GT] = ACTIONS(2186), + [anon_sym_GT_GT] = ACTIONS(2184), + [anon_sym_AMP_GT] = ACTIONS(2186), + [anon_sym_AMP_GT_GT] = ACTIONS(2184), + [anon_sym_LT_AMP] = ACTIONS(2184), + [anon_sym_GT_AMP] = ACTIONS(2184), + [anon_sym_LT_LT] = ACTIONS(2186), + [anon_sym_LT_LT_DASH] = ACTIONS(2184), + [anon_sym_LT_LT_LT] = ACTIONS(2184), + [sym_comment] = ACTIONS(53), + }, + [1000] = { + [aux_sym_concatenation_repeat1] = STATE(1499), + [sym__simple_heredoc_body] = ACTIONS(2188), + [sym__heredoc_body_beginning] = ACTIONS(2188), + [sym_file_descriptor] = ACTIONS(2188), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_PIPE_AMP] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_PIPE_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2188), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2188), + [anon_sym_LT_AMP] = ACTIONS(2188), + [anon_sym_GT_AMP] = ACTIONS(2188), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2188), + [anon_sym_LT_LT_LT] = ACTIONS(2188), + [sym_comment] = ACTIONS(53), + }, + [1001] = { + [sym__simple_heredoc_body] = ACTIONS(2188), + [sym__heredoc_body_beginning] = ACTIONS(2188), + [sym_file_descriptor] = ACTIONS(2188), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_PIPE_AMP] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_PIPE_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2188), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2188), + [anon_sym_LT_AMP] = ACTIONS(2188), + [anon_sym_GT_AMP] = ACTIONS(2188), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2188), + [anon_sym_LT_LT_LT] = ACTIONS(2188), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_comment] = ACTIONS(53), + }, + [1002] = { + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [sym_comment] = ACTIONS(53), + }, + [1003] = { + [sym_file_redirect] = STATE(1003), + [sym_heredoc_redirect] = STATE(1003), + [sym_herestring_redirect] = STATE(1003), + [aux_sym_while_statement_repeat1] = STATE(1003), + [sym__simple_heredoc_body] = ACTIONS(2196), + [sym__heredoc_body_beginning] = ACTIONS(2196), + [sym_file_descriptor] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_GT_GT] = ACTIONS(3365), + [anon_sym_AMP_GT] = ACTIONS(3362), + [anon_sym_AMP_GT_GT] = ACTIONS(3365), + [anon_sym_LT_AMP] = ACTIONS(3365), + [anon_sym_GT_AMP] = ACTIONS(3365), + [anon_sym_LT_LT] = ACTIONS(3368), + [anon_sym_LT_LT_DASH] = ACTIONS(3371), + [anon_sym_LT_LT_LT] = ACTIONS(3374), + [sym_comment] = ACTIONS(53), + }, + [1004] = { + [sym_file_redirect] = STATE(1003), + [sym_heredoc_redirect] = STATE(1003), + [sym_heredoc_body] = STATE(1500), + [sym_herestring_redirect] = STATE(1003), + [aux_sym_while_statement_repeat1] = STATE(1003), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(937), + [sym_comment] = ACTIONS(53), + }, + [1005] = { + [sym_concatenation] = STATE(522), [sym_string] = STATE(520), [sym_simple_expansion] = STATE(520), [sym_string_expansion] = STATE(520), [sym_expansion] = STATE(520), [sym_command_substitution] = STATE(520), [sym_process_substitution] = STATE(520), - [aux_sym_unset_command_repeat1] = STATE(973), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_PIPE_AMP] = ACTIONS(1626), - [anon_sym_AMP_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1626), - [sym__special_characters] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3112), - [sym_raw_string] = ACTIONS(3270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), - [anon_sym_BQUOTE] = ACTIONS(3124), - [anon_sym_LT_LPAREN] = ACTIONS(3127), - [anon_sym_GT_LPAREN] = ACTIONS(3127), + [aux_sym_command_repeat2] = STATE(1005), + [sym__simple_heredoc_body] = ACTIONS(2176), + [sym__heredoc_body_beginning] = ACTIONS(2176), + [sym_file_descriptor] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(2176), + [anon_sym_EQ_TILDE] = ACTIONS(3377), + [anon_sym_EQ_EQ] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2176), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2176), + [anon_sym_LT_AMP] = ACTIONS(2176), + [anon_sym_GT_AMP] = ACTIONS(2176), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2176), + [anon_sym_LT_LT_LT] = ACTIONS(2176), + [sym__special_characters] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3383), + [anon_sym_DOLLAR] = ACTIONS(3386), + [sym_raw_string] = ACTIONS(3389), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3395), + [anon_sym_BQUOTE] = ACTIONS(3398), + [anon_sym_LT_LPAREN] = ACTIONS(3401), + [anon_sym_GT_LPAREN] = ACTIONS(3401), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3130), - [sym_word] = ACTIONS(3273), - }, - [974] = { - [aux_sym_concatenation_repeat1] = STATE(974), - [sym__simple_heredoc_body] = ACTIONS(1672), - [sym__heredoc_body_beginning] = ACTIONS(1672), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(3136), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_EQ_TILDE] = ACTIONS(1674), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1672), - [anon_sym_LT_AMP] = ACTIONS(1672), - [anon_sym_GT_AMP] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1672), - [anon_sym_LT_LT_LT] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1674), - }, - [975] = { - [sym_compound_statement] = STATE(1430), - [anon_sym_LBRACE] = ACTIONS(1874), - [sym_comment] = ACTIONS(53), - }, - [976] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_PIPE_AMP] = ACTIONS(2052), - [anon_sym_AMP_AMP] = ACTIONS(2052), - [anon_sym_PIPE_PIPE] = ACTIONS(2052), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(2052), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [977] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(2056), - [anon_sym_PIPE_PIPE] = ACTIONS(2056), - [anon_sym_BQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(53), - }, - [978] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(2056), - [anon_sym_PIPE_PIPE] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [979] = { - [sym_concatenation] = STATE(1413), - [sym_string] = STATE(1432), - [sym_simple_expansion] = STATE(1432), - [sym_string_expansion] = STATE(1432), - [sym_expansion] = STATE(1432), - [sym_command_substitution] = STATE(1432), - [sym_process_substitution] = STATE(1432), - [sym__special_characters] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(3278), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3278), - }, - [980] = { - [aux_sym_concatenation_repeat1] = STATE(522), - [sym__simple_heredoc_body] = ACTIONS(2086), - [sym__heredoc_body_beginning] = ACTIONS(2086), - [sym_file_descriptor] = ACTIONS(2086), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_PIPE_AMP] = ACTIONS(2086), - [anon_sym_AMP_AMP] = ACTIONS(2086), - [anon_sym_PIPE_PIPE] = ACTIONS(2086), - [anon_sym_EQ_TILDE] = ACTIONS(2088), - [anon_sym_EQ_EQ] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_GT] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(2086), - [anon_sym_AMP_GT] = ACTIONS(2088), - [anon_sym_AMP_GT_GT] = ACTIONS(2086), - [anon_sym_LT_AMP] = ACTIONS(2086), - [anon_sym_GT_AMP] = ACTIONS(2086), - [anon_sym_LT_LT] = ACTIONS(2088), - [anon_sym_LT_LT_DASH] = ACTIONS(2086), - [anon_sym_LT_LT_LT] = 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(53), - [sym_word] = ACTIONS(2088), - }, - [981] = { - [aux_sym_concatenation_repeat1] = STATE(522), - [sym__simple_heredoc_body] = ACTIONS(2090), - [sym__heredoc_body_beginning] = ACTIONS(2090), - [sym_file_descriptor] = ACTIONS(2090), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_PIPE_AMP] = ACTIONS(2090), - [anon_sym_AMP_AMP] = ACTIONS(2090), - [anon_sym_PIPE_PIPE] = ACTIONS(2090), - [anon_sym_EQ_TILDE] = ACTIONS(2092), - [anon_sym_EQ_EQ] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2090), - [anon_sym_AMP_GT] = ACTIONS(2092), - [anon_sym_AMP_GT_GT] = ACTIONS(2090), - [anon_sym_LT_AMP] = ACTIONS(2090), - [anon_sym_GT_AMP] = ACTIONS(2090), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2090), - [anon_sym_LT_LT_LT] = ACTIONS(2090), - [sym__special_characters] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2090), - [anon_sym_DOLLAR] = ACTIONS(2092), - [sym_raw_string] = ACTIONS(2090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2090), - [anon_sym_LT_LPAREN] = ACTIONS(2090), - [anon_sym_GT_LPAREN] = ACTIONS(2090), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2092), - }, - [982] = { - [aux_sym_concatenation_repeat1] = STATE(1433), - [sym__simple_heredoc_body] = ACTIONS(671), - [sym__heredoc_body_beginning] = ACTIONS(671), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_AMP_GT] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(671), - [anon_sym_GT_AMP] = ACTIONS(671), - [anon_sym_LT_LT] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(671), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_BQUOTE] = ACTIONS(671), - [sym_comment] = ACTIONS(53), - }, - [983] = { - [aux_sym_concatenation_repeat1] = STATE(1433), - [sym__simple_heredoc_body] = ACTIONS(689), - [sym__heredoc_body_beginning] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_AMP] = ACTIONS(689), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(689), - [anon_sym_LT_LT_LT] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - }, - [984] = { - [aux_sym_concatenation_repeat1] = STATE(1433), - [sym__simple_heredoc_body] = ACTIONS(2098), - [sym__heredoc_body_beginning] = ACTIONS(2098), - [sym_file_descriptor] = ACTIONS(2098), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_PIPE_AMP] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_AMP_GT] = ACTIONS(2100), - [anon_sym_AMP_GT_GT] = ACTIONS(2098), - [anon_sym_LT_AMP] = ACTIONS(2098), - [anon_sym_GT_AMP] = ACTIONS(2098), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_LT_LT_DASH] = ACTIONS(2098), - [anon_sym_LT_LT_LT] = ACTIONS(2098), - [anon_sym_BQUOTE] = ACTIONS(2098), - [sym_comment] = ACTIONS(53), - }, - [985] = { - [aux_sym_concatenation_repeat1] = STATE(1433), - [sym__simple_heredoc_body] = ACTIONS(2102), - [sym__heredoc_body_beginning] = ACTIONS(2102), - [sym_file_descriptor] = ACTIONS(2102), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_PIPE_AMP] = ACTIONS(2102), - [anon_sym_AMP_AMP] = ACTIONS(2102), - [anon_sym_PIPE_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2102), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2102), - [anon_sym_LT_AMP] = ACTIONS(2102), - [anon_sym_GT_AMP] = ACTIONS(2102), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2102), - [anon_sym_LT_LT_LT] = ACTIONS(2102), - [anon_sym_BQUOTE] = ACTIONS(2102), - [sym_comment] = ACTIONS(53), - }, - [986] = { - [sym_file_redirect] = STATE(986), - [sym_heredoc_redirect] = STATE(986), - [sym_herestring_redirect] = STATE(986), - [aux_sym_while_statement_repeat1] = STATE(986), - [sym__simple_heredoc_body] = ACTIONS(2110), - [sym__heredoc_body_beginning] = ACTIONS(2110), - [sym_file_descriptor] = ACTIONS(3280), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_PIPE_AMP] = ACTIONS(2110), - [anon_sym_AMP_AMP] = ACTIONS(2110), - [anon_sym_PIPE_PIPE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_GT] = ACTIONS(3283), - [anon_sym_GT_GT] = ACTIONS(3286), - [anon_sym_AMP_GT] = ACTIONS(3283), - [anon_sym_AMP_GT_GT] = ACTIONS(3286), - [anon_sym_LT_AMP] = ACTIONS(3286), - [anon_sym_GT_AMP] = ACTIONS(3286), - [anon_sym_LT_LT] = ACTIONS(3196), - [anon_sym_LT_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT_LT] = ACTIONS(3289), - [anon_sym_BQUOTE] = ACTIONS(2110), - [sym_comment] = ACTIONS(53), - }, - [987] = { - [sym_file_redirect] = STATE(986), - [sym_heredoc_redirect] = STATE(986), - [sym_heredoc_body] = STATE(1415), - [sym_herestring_redirect] = STATE(986), - [aux_sym_while_statement_repeat1] = STATE(986), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_PIPE_AMP] = ACTIONS(2108), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(949), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(2108), - [sym_comment] = ACTIONS(53), - }, - [988] = { - [sym_concatenation] = STATE(988), - [sym_string] = STATE(531), - [sym_simple_expansion] = STATE(531), - [sym_string_expansion] = STATE(531), - [sym_expansion] = STATE(531), - [sym_command_substitution] = STATE(531), - [sym_process_substitution] = STATE(531), - [aux_sym_command_repeat2] = STATE(988), - [sym__simple_heredoc_body] = ACTIONS(2090), - [sym__heredoc_body_beginning] = ACTIONS(2090), - [sym_file_descriptor] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_PIPE_AMP] = ACTIONS(2090), - [anon_sym_AMP_AMP] = ACTIONS(2090), - [anon_sym_PIPE_PIPE] = ACTIONS(2090), - [anon_sym_EQ_TILDE] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2090), - [anon_sym_AMP_GT] = ACTIONS(2092), - [anon_sym_AMP_GT_GT] = ACTIONS(2090), - [anon_sym_LT_AMP] = ACTIONS(2090), - [anon_sym_GT_AMP] = ACTIONS(2090), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2090), - [anon_sym_LT_LT_LT] = ACTIONS(2090), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3211), - [anon_sym_DOLLAR] = ACTIONS(3214), - [sym_raw_string] = ACTIONS(3298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3223), - [anon_sym_BQUOTE] = ACTIONS(3226), - [anon_sym_LT_LPAREN] = ACTIONS(3229), - [anon_sym_GT_LPAREN] = ACTIONS(3229), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3301), - }, - [989] = { - [sym_file_redirect] = STATE(1434), - [sym_heredoc_redirect] = STATE(1434), - [sym_heredoc_body] = STATE(1415), - [sym_herestring_redirect] = STATE(1434), - [sym_concatenation] = STATE(988), - [sym_string] = STATE(531), - [sym_simple_expansion] = STATE(531), - [sym_string_expansion] = STATE(531), - [sym_expansion] = STATE(531), - [sym_command_substitution] = STATE(531), - [sym_process_substitution] = STATE(531), - [aux_sym_while_statement_repeat1] = STATE(1434), - [aux_sym_command_repeat2] = STATE(988), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_PIPE_AMP] = ACTIONS(2108), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(949), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [sym__special_characters] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(2108), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(959), - }, - [990] = { - [sym_file_redirect] = STATE(1435), - [sym_file_descriptor] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_SEMI_SEMI] = ACTIONS(2380), - [anon_sym_PIPE_AMP] = ACTIONS(2380), - [anon_sym_AMP_AMP] = ACTIONS(2380), - [anon_sym_PIPE_PIPE] = ACTIONS(2380), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_AMP_GT] = ACTIONS(1255), - [anon_sym_AMP_GT_GT] = ACTIONS(1255), - [anon_sym_LT_AMP] = ACTIONS(1255), - [anon_sym_GT_AMP] = ACTIONS(1255), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_LF] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2380), - }, - [991] = { - [sym__heredoc_body_middle] = ACTIONS(741), - [sym__heredoc_body_end] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), - [sym_comment] = ACTIONS(53), - }, - [992] = { - [sym__heredoc_body_middle] = ACTIONS(749), - [sym__heredoc_body_end] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - }, - [993] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(3304), - [sym_comment] = ACTIONS(53), - }, - [994] = { - [sym_concatenation] = STATE(1439), - [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), - [aux_sym_expansion_repeat1] = STATE(1439), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_EQ] = ACTIONS(3308), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_COLON] = ACTIONS(3308), - [anon_sym_COLON_QMARK] = ACTIONS(3308), - [anon_sym_COLON_DASH] = ACTIONS(3308), - [anon_sym_PERCENT] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [995] = { - [sym_subscript] = STATE(1443), - [sym_variable_name] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_AT] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_0] = ACTIONS(3320), - [anon_sym__] = ACTIONS(3320), - }, - [996] = { - [sym_concatenation] = STATE(1446), - [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), - [aux_sym_expansion_repeat1] = STATE(1446), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_EQ] = ACTIONS(3324), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3324), - [anon_sym_COLON_QMARK] = ACTIONS(3324), - [anon_sym_COLON_DASH] = ACTIONS(3324), - [anon_sym_PERCENT] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [997] = { - [sym_concatenation] = STATE(1449), - [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), - [aux_sym_expansion_repeat1] = STATE(1449), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_EQ] = ACTIONS(3332), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_COLON] = ACTIONS(3332), - [anon_sym_COLON_QMARK] = ACTIONS(3332), - [anon_sym_COLON_DASH] = ACTIONS(3332), - [anon_sym_PERCENT] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [998] = { - [anon_sym_esac] = ACTIONS(3338), - [anon_sym_PIPE] = ACTIONS(3338), - [anon_sym_RPAREN] = ACTIONS(3338), - [anon_sym_SEMI_SEMI] = ACTIONS(3338), - [anon_sym_PIPE_AMP] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3338), - [anon_sym_PIPE_PIPE] = ACTIONS(3338), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_LF] = ACTIONS(3340), - [anon_sym_AMP] = ACTIONS(3338), - }, - [999] = { - [sym_simple_expansion] = STATE(999), - [sym_expansion] = STATE(999), - [aux_sym_heredoc_body_repeat1] = STATE(999), - [sym__heredoc_body_middle] = ACTIONS(3342), - [sym__heredoc_body_end] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), - [sym_comment] = ACTIONS(53), - }, - [1000] = { - [aux_sym_concatenation_repeat1] = STATE(1003), - [sym__simple_heredoc_body] = ACTIONS(1105), - [sym__heredoc_body_beginning] = ACTIONS(1105), - [sym_file_descriptor] = ACTIONS(1105), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_SEMI_SEMI] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_AMP_GT] = ACTIONS(1107), - [anon_sym_AMP_GT_GT] = ACTIONS(1107), - [anon_sym_LT_AMP] = ACTIONS(1107), - [anon_sym_GT_AMP] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_LT_LT_DASH] = ACTIONS(1107), - [anon_sym_LT_LT_LT] = ACTIONS(1107), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - }, - [1001] = { - [aux_sym_concatenation_repeat1] = STATE(1003), - [sym__simple_heredoc_body] = ACTIONS(1109), - [sym__heredoc_body_beginning] = ACTIONS(1109), - [sym_file_descriptor] = ACTIONS(1109), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = 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(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_LF] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1111), - }, - [1002] = { - [sym__simple_heredoc_body] = ACTIONS(1109), - [sym__heredoc_body_beginning] = ACTIONS(1109), - [sym_file_descriptor] = ACTIONS(1109), - [anon_sym_esac] = ACTIONS(1111), - [anon_sym_PIPE] = ACTIONS(1111), - [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(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_LF] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1111), - }, - [1003] = { - [aux_sym_concatenation_repeat1] = STATE(1450), - [sym__simple_heredoc_body] = ACTIONS(705), - [sym__heredoc_body_beginning] = ACTIONS(705), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = 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(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(707), - [anon_sym_LT_AMP] = ACTIONS(707), - [anon_sym_GT_AMP] = ACTIONS(707), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_LT_LT_DASH] = ACTIONS(707), - [anon_sym_LT_LT_LT] = ACTIONS(707), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [1004] = { - [anon_sym_esac] = ACTIONS(3353), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_RPAREN] = ACTIONS(3353), - [anon_sym_SEMI_SEMI] = ACTIONS(3353), - [anon_sym_PIPE_AMP] = ACTIONS(3353), - [anon_sym_AMP_AMP] = ACTIONS(3353), - [anon_sym_PIPE_PIPE] = ACTIONS(3353), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_LF] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3353), - }, - [1005] = { - [sym_file_redirect] = STATE(557), - [sym_heredoc_redirect] = STATE(557), - [sym_heredoc_body] = STATE(1451), - [sym_herestring_redirect] = STATE(557), - [aux_sym_while_statement_repeat1] = STATE(557), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_SEMI_SEMI] = ACTIONS(3353), - [anon_sym_PIPE_AMP] = ACTIONS(3353), - [anon_sym_AMP_AMP] = ACTIONS(3353), - [anon_sym_PIPE_PIPE] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(351), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_LF] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3353), + [sym_word] = ACTIONS(3404), }, [1006] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_EQ] = ACTIONS(3359), - [anon_sym_PLUS_EQ] = ACTIONS(3359), + [sym_file_redirect] = STATE(1501), + [sym_heredoc_redirect] = STATE(1501), + [sym_heredoc_body] = STATE(1500), + [sym_herestring_redirect] = STATE(1501), + [sym_concatenation] = STATE(522), + [sym_string] = STATE(520), + [sym_simple_expansion] = STATE(520), + [sym_string_expansion] = STATE(520), + [sym_expansion] = STATE(520), + [sym_command_substitution] = STATE(520), + [sym_process_substitution] = STATE(520), + [aux_sym_while_statement_repeat1] = STATE(1501), + [aux_sym_command_repeat2] = STATE(1005), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(937), + [sym__special_characters] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(943), }, [1007] = { - [anon_sym_EQ] = ACTIONS(3359), - [anon_sym_PLUS_EQ] = ACTIONS(3359), + [aux_sym_concatenation_repeat1] = STATE(1502), + [sym_file_descriptor] = ACTIONS(1173), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_PIPE_AMP] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1173), + [anon_sym_PIPE_PIPE] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_AMP_GT] = ACTIONS(1177), + [anon_sym_AMP_GT_GT] = ACTIONS(1173), + [anon_sym_LT_AMP] = ACTIONS(1173), + [anon_sym_GT_AMP] = ACTIONS(1173), + [sym__special_characters] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1173), + [anon_sym_BQUOTE] = ACTIONS(1173), + [anon_sym_LT_LPAREN] = ACTIONS(1173), + [anon_sym_GT_LPAREN] = ACTIONS(1173), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1173), }, [1008] = { - [aux_sym_concatenation_repeat1] = STATE(1008), - [sym__concat] = ACTIONS(2451), - [anon_sym_RBRACK] = ACTIONS(1672), + [aux_sym_concatenation_repeat1] = STATE(1502), + [sym_file_descriptor] = ACTIONS(1151), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(1151), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT] = ACTIONS(1153), + [anon_sym_GT] = ACTIONS(1153), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1153), + [anon_sym_AMP_GT_GT] = ACTIONS(1151), + [anon_sym_LT_AMP] = ACTIONS(1151), + [anon_sym_GT_AMP] = ACTIONS(1151), + [sym__special_characters] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1151), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), + [anon_sym_BQUOTE] = ACTIONS(1151), + [anon_sym_LT_LPAREN] = ACTIONS(1151), + [anon_sym_GT_LPAREN] = ACTIONS(1151), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1151), }, [1009] = { - [sym__concat] = ACTIONS(3361), - [anon_sym_EQ] = ACTIONS(3363), - [anon_sym_PLUS_EQ] = ACTIONS(3363), + [sym_file_redirect] = STATE(1503), + [sym_heredoc_redirect] = STATE(1503), + [sym_heredoc_body] = STATE(1408), + [sym_herestring_redirect] = STATE(1503), + [aux_sym_while_statement_repeat1] = STATE(1503), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(977), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(1265), [sym_comment] = ACTIONS(53), }, [1010] = { - [anon_sym_EQ] = ACTIONS(3363), - [anon_sym_PLUS_EQ] = ACTIONS(3363), + [anon_sym_RPAREN] = ACTIONS(3407), [sym_comment] = ACTIONS(53), }, [1011] = { - [sym_string] = STATE(1454), - [sym_simple_expansion] = STATE(1454), - [sym_string_expansion] = STATE(1454), - [sym_expansion] = STATE(1454), - [sym_command_substitution] = STATE(1454), - [sym_process_substitution] = STATE(1454), - [sym__special_characters] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(3365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), + [sym_file_redirect] = STATE(1423), + [sym_file_descriptor] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_PIPE_AMP] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_GT] = ACTIONS(3411), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_AMP_GT] = ACTIONS(3411), + [anon_sym_AMP_GT_GT] = ACTIONS(3413), + [anon_sym_LT_AMP] = ACTIONS(3413), + [anon_sym_GT_AMP] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(1339), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3365), }, [1012] = { - [aux_sym_concatenation_repeat1] = STATE(1455), - [sym__concat] = ACTIONS(2171), - [anon_sym_RPAREN] = ACTIONS(705), - [sym__special_characters] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LT_LPAREN] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(705), + [sym_file_redirect] = STATE(1510), + [sym_heredoc_redirect] = STATE(1510), + [sym_herestring_redirect] = STATE(1510), + [aux_sym_while_statement_repeat1] = STATE(1510), + [sym_file_descriptor] = ACTIONS(3415), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_PIPE_AMP] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_GT] = ACTIONS(3417), + [anon_sym_GT_GT] = ACTIONS(3419), + [anon_sym_AMP_GT] = ACTIONS(3417), + [anon_sym_AMP_GT_GT] = ACTIONS(3419), + [anon_sym_LT_AMP] = ACTIONS(3419), + [anon_sym_GT_AMP] = ACTIONS(3419), + [anon_sym_LT_LT] = ACTIONS(3143), + [anon_sym_LT_LT_DASH] = ACTIONS(3145), + [anon_sym_LT_LT_LT] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(1453), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(705), }, [1013] = { - [sym__concat] = ACTIONS(709), - [anon_sym_RPAREN] = ACTIONS(709), - [sym__special_characters] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(709), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(709), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(709), - [anon_sym_BQUOTE] = ACTIONS(709), - [anon_sym_LT_LPAREN] = ACTIONS(709), - [anon_sym_GT_LPAREN] = ACTIONS(709), + [sym_concatenation] = STATE(1431), + [sym_string] = STATE(1512), + [sym_array] = STATE(1431), + [sym_simple_expansion] = STATE(1512), + [sym_string_expansion] = STATE(1512), + [sym_expansion] = STATE(1512), + [sym_command_substitution] = STATE(1512), + [sym_process_substitution] = STATE(1512), + [sym__empty_value] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3151), + [sym__special_characters] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(3425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), + [anon_sym_BQUOTE] = ACTIONS(859), + [anon_sym_LT_LPAREN] = ACTIONS(861), + [anon_sym_GT_LPAREN] = ACTIONS(861), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(709), + [sym_word] = ACTIONS(3425), }, [1014] = { - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), + [aux_sym_concatenation_repeat1] = STATE(1513), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [sym__special_characters] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), + [sym_word] = ACTIONS(733), }, [1015] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [sym_variable_assignment] = STATE(476), + [sym_subscript] = STATE(534), + [sym_concatenation] = STATE(476), + [sym_string] = STATE(533), + [sym_simple_expansion] = STATE(533), + [sym_string_expansion] = STATE(533), + [sym_expansion] = STATE(533), + [sym_command_substitution] = STATE(533), + [sym_process_substitution] = STATE(533), + [aux_sym_declaration_command_repeat1] = STATE(1015), + [sym_variable_name] = ACTIONS(3427), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_PIPE_AMP] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1625), + [sym__special_characters] = ACTIONS(3430), + [anon_sym_DQUOTE] = ACTIONS(3207), + [anon_sym_DOLLAR] = ACTIONS(3210), + [sym_raw_string] = ACTIONS(3433), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3219), + [anon_sym_BQUOTE] = ACTIONS(3222), + [anon_sym_LT_LPAREN] = ACTIONS(3225), + [anon_sym_GT_LPAREN] = ACTIONS(3225), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3228), + [sym_word] = ACTIONS(3436), }, [1016] = { - [sym__concat] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [sym__special_characters] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), - [anon_sym_BQUOTE] = ACTIONS(741), - [anon_sym_LT_LPAREN] = ACTIONS(741), - [anon_sym_GT_LPAREN] = ACTIONS(741), + [aux_sym_concatenation_repeat1] = STATE(1514), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [sym__special_characters] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(741), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), + [sym_word] = ACTIONS(733), }, [1017] = { - [sym__concat] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(745), - [sym__special_characters] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(747), - [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_concatenation] = STATE(1017), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_unset_command_repeat1] = STATE(1017), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__special_characters] = ACTIONS(3439), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_DOLLAR] = ACTIONS(3284), + [sym_raw_string] = ACTIONS(3442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3296), + [anon_sym_LT_LPAREN] = ACTIONS(3299), + [anon_sym_GT_LPAREN] = ACTIONS(3299), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(745), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3302), + [sym_word] = ACTIONS(3445), }, [1018] = { - [sym__concat] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [sym__special_characters] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [anon_sym_LT_LPAREN] = ACTIONS(749), - [anon_sym_GT_LPAREN] = ACTIONS(749), + [aux_sym_concatenation_repeat1] = STATE(1018), + [sym__simple_heredoc_body] = ACTIONS(1754), + [sym__heredoc_body_beginning] = ACTIONS(1754), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(3308), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_EQ_TILDE] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1754), + [anon_sym_LT_AMP] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1754), + [anon_sym_LT_LT_LT] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(749), + [sym_word] = ACTIONS(1756), }, [1019] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(3371), + [sym_compound_statement] = STATE(1515), + [anon_sym_LBRACE] = ACTIONS(1960), [sym_comment] = ACTIONS(53), }, [1020] = { - [sym_concatenation] = STATE(1461), - [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), - [aux_sym_expansion_repeat1] = STATE(1461), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_EQ] = ACTIONS(3375), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_DASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_PIPE_AMP] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(2138), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [1021] = { - [sym_subscript] = STATE(1465), - [sym_variable_name] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(2142), + [anon_sym_PIPE_PIPE] = ACTIONS(2142), + [anon_sym_BQUOTE] = ACTIONS(2142), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_AT] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_0] = ACTIONS(3387), - [anon_sym__] = ACTIONS(3387), }, [1022] = { - [sym_concatenation] = STATE(1468), - [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), - [aux_sym_expansion_repeat1] = STATE(1468), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_EQ] = ACTIONS(3391), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3393), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_COLON_QMARK] = ACTIONS(3391), - [anon_sym_COLON_DASH] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(2142), + [anon_sym_PIPE_PIPE] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [1023] = { - [sym_concatenation] = STATE(1471), - [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), - [aux_sym_expansion_repeat1] = STATE(1471), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3401), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3399), - [anon_sym_COLON_QMARK] = ACTIONS(3399), - [anon_sym_COLON_DASH] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(1498), + [sym_string] = STATE(1517), + [sym_simple_expansion] = STATE(1517), + [sym_string_expansion] = STATE(1517), + [sym_expansion] = STATE(1517), + [sym_command_substitution] = STATE(1517), + [sym_process_substitution] = STATE(1517), + [sym__special_characters] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(3450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3450), }, [1024] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3405), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), + [aux_sym_concatenation_repeat1] = STATE(539), + [sym__simple_heredoc_body] = ACTIONS(2172), + [sym__heredoc_body_beginning] = ACTIONS(2172), + [sym_file_descriptor] = ACTIONS(2172), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_PIPE_AMP] = ACTIONS(2172), + [anon_sym_AMP_AMP] = ACTIONS(2172), + [anon_sym_PIPE_PIPE] = ACTIONS(2172), + [anon_sym_EQ_TILDE] = ACTIONS(2174), + [anon_sym_EQ_EQ] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_GT_GT] = ACTIONS(2172), + [anon_sym_AMP_GT] = ACTIONS(2174), + [anon_sym_AMP_GT_GT] = ACTIONS(2172), + [anon_sym_LT_AMP] = ACTIONS(2172), + [anon_sym_GT_AMP] = ACTIONS(2172), + [anon_sym_LT_LT] = ACTIONS(2174), + [anon_sym_LT_LT_DASH] = ACTIONS(2172), + [anon_sym_LT_LT_LT] = ACTIONS(2172), + [sym__special_characters] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_DOLLAR] = ACTIONS(2174), + [sym_raw_string] = ACTIONS(2172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2172), + [anon_sym_BQUOTE] = ACTIONS(2172), + [anon_sym_LT_LPAREN] = ACTIONS(2172), + [anon_sym_GT_LPAREN] = ACTIONS(2172), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2174), }, [1025] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3405), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [aux_sym_concatenation_repeat1] = STATE(539), + [sym__simple_heredoc_body] = ACTIONS(2176), + [sym__heredoc_body_beginning] = ACTIONS(2176), + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(2176), + [anon_sym_EQ_TILDE] = ACTIONS(2178), + [anon_sym_EQ_EQ] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2176), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2176), + [anon_sym_LT_AMP] = ACTIONS(2176), + [anon_sym_GT_AMP] = ACTIONS(2176), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2176), + [anon_sym_LT_LT_LT] = ACTIONS(2176), + [sym__special_characters] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(2178), + [sym_raw_string] = ACTIONS(2176), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_LT_LPAREN] = ACTIONS(2176), + [anon_sym_GT_LPAREN] = ACTIONS(2176), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_word] = ACTIONS(2178), }, [1026] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3405), + [aux_sym_concatenation_repeat1] = STATE(1518), + [sym__simple_heredoc_body] = ACTIONS(697), + [sym__heredoc_body_beginning] = ACTIONS(697), + [sym_file_descriptor] = ACTIONS(697), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PIPE_AMP] = ACTIONS(697), + [anon_sym_AMP_AMP] = ACTIONS(697), + [anon_sym_PIPE_PIPE] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(697), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(697), + [anon_sym_LT_AMP] = ACTIONS(697), + [anon_sym_GT_AMP] = ACTIONS(697), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(697), + [anon_sym_LT_LT_LT] = ACTIONS(697), + [anon_sym_BQUOTE] = ACTIONS(697), [sym_comment] = ACTIONS(53), }, [1027] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(3405), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [aux_sym_concatenation_repeat1] = STATE(1518), + [sym__simple_heredoc_body] = ACTIONS(715), + [sym__heredoc_body_beginning] = ACTIONS(715), + [sym_file_descriptor] = ACTIONS(715), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(715), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(715), + [anon_sym_LT_AMP] = ACTIONS(715), + [anon_sym_GT_AMP] = ACTIONS(715), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(715), + [anon_sym_LT_LT_LT] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [1028] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), + [aux_sym_concatenation_repeat1] = STATE(1518), + [sym__simple_heredoc_body] = ACTIONS(2184), + [sym__heredoc_body_beginning] = ACTIONS(2184), + [sym_file_descriptor] = ACTIONS(2184), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_PIPE_PIPE] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_GT] = ACTIONS(2186), + [anon_sym_GT_GT] = ACTIONS(2184), + [anon_sym_AMP_GT] = ACTIONS(2186), + [anon_sym_AMP_GT_GT] = ACTIONS(2184), + [anon_sym_LT_AMP] = ACTIONS(2184), + [anon_sym_GT_AMP] = ACTIONS(2184), + [anon_sym_LT_LT] = ACTIONS(2186), + [anon_sym_LT_LT_DASH] = ACTIONS(2184), + [anon_sym_LT_LT_LT] = ACTIONS(2184), + [anon_sym_BQUOTE] = ACTIONS(2184), [sym_comment] = ACTIONS(53), }, [1029] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [aux_sym_concatenation_repeat1] = STATE(1518), + [sym__simple_heredoc_body] = ACTIONS(2188), + [sym__heredoc_body_beginning] = ACTIONS(2188), + [sym_file_descriptor] = ACTIONS(2188), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_PIPE_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2188), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2188), + [anon_sym_LT_AMP] = ACTIONS(2188), + [anon_sym_GT_AMP] = ACTIONS(2188), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2188), + [anon_sym_LT_LT_LT] = ACTIONS(2188), + [anon_sym_BQUOTE] = ACTIONS(2188), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [1030] = { - [sym_file_descriptor] = ACTIONS(3409), - [sym_variable_name] = ACTIONS(3409), - [anon_sym_esac] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_RPAREN] = ACTIONS(3411), - [anon_sym_SEMI_SEMI] = ACTIONS(3411), - [anon_sym_PIPE_AMP] = ACTIONS(3411), - [anon_sym_AMP_AMP] = ACTIONS(3411), - [anon_sym_PIPE_PIPE] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_GT_GT] = ACTIONS(3411), - [anon_sym_AMP_GT] = ACTIONS(3411), - [anon_sym_AMP_GT_GT] = ACTIONS(3411), - [anon_sym_LT_AMP] = ACTIONS(3411), - [anon_sym_GT_AMP] = ACTIONS(3411), - [sym__special_characters] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3411), - [sym_raw_string] = ACTIONS(3411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3411), - [anon_sym_BQUOTE] = ACTIONS(3411), - [anon_sym_LT_LPAREN] = ACTIONS(3411), - [anon_sym_GT_LPAREN] = ACTIONS(3411), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_LF] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3411), + [sym_file_redirect] = STATE(1030), + [sym_heredoc_redirect] = STATE(1030), + [sym_herestring_redirect] = STATE(1030), + [aux_sym_while_statement_repeat1] = STATE(1030), + [sym__simple_heredoc_body] = ACTIONS(2196), + [sym__heredoc_body_beginning] = ACTIONS(2196), + [sym_file_descriptor] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_GT] = ACTIONS(3455), + [anon_sym_GT_GT] = ACTIONS(3458), + [anon_sym_AMP_GT] = ACTIONS(3455), + [anon_sym_AMP_GT_GT] = ACTIONS(3458), + [anon_sym_LT_AMP] = ACTIONS(3458), + [anon_sym_GT_AMP] = ACTIONS(3458), + [anon_sym_LT_LT] = ACTIONS(3368), + [anon_sym_LT_LT_DASH] = ACTIONS(3371), + [anon_sym_LT_LT_LT] = ACTIONS(3461), + [anon_sym_BQUOTE] = ACTIONS(2196), + [sym_comment] = ACTIONS(53), }, [1031] = { - [sym_concatenation] = STATE(1031), - [sym_string] = STATE(571), - [sym_simple_expansion] = STATE(571), - [sym_string_expansion] = STATE(571), - [sym_expansion] = STATE(571), - [sym_command_substitution] = STATE(571), - [sym_process_substitution] = STATE(571), - [aux_sym_for_statement_repeat1] = STATE(1031), - [anon_sym_RPAREN] = ACTIONS(3413), - [sym__special_characters] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3418), - [anon_sym_DOLLAR] = ACTIONS(3421), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3427), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3430), - [anon_sym_BQUOTE] = ACTIONS(3433), - [anon_sym_LT_LPAREN] = ACTIONS(3436), - [anon_sym_GT_LPAREN] = ACTIONS(3436), + [sym_file_redirect] = STATE(1030), + [sym_heredoc_redirect] = STATE(1030), + [sym_heredoc_body] = STATE(1500), + [sym_herestring_redirect] = STATE(1030), + [aux_sym_while_statement_repeat1] = STATE(1030), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(977), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(2194), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3424), }, [1032] = { - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(1672), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), + [sym_concatenation] = STATE(522), + [sym_string] = STATE(548), + [sym_simple_expansion] = STATE(548), + [sym_string_expansion] = STATE(548), + [sym_expansion] = STATE(548), + [sym_command_substitution] = STATE(548), + [sym_process_substitution] = STATE(548), + [aux_sym_command_repeat2] = STATE(1032), + [sym__simple_heredoc_body] = ACTIONS(2176), + [sym__heredoc_body_beginning] = ACTIONS(2176), + [sym_file_descriptor] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(2176), + [anon_sym_EQ_TILDE] = ACTIONS(3464), + [anon_sym_EQ_EQ] = ACTIONS(3464), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2176), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2176), + [anon_sym_LT_AMP] = ACTIONS(2176), + [anon_sym_GT_AMP] = ACTIONS(2176), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2176), + [anon_sym_LT_LT_LT] = ACTIONS(2176), + [sym__special_characters] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3383), + [anon_sym_DOLLAR] = ACTIONS(3386), + [sym_raw_string] = ACTIONS(3470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3395), + [anon_sym_BQUOTE] = ACTIONS(3398), + [anon_sym_LT_LPAREN] = ACTIONS(3401), + [anon_sym_GT_LPAREN] = ACTIONS(3401), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3473), }, [1033] = { - [aux_sym_concatenation_repeat1] = STATE(1033), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(3439), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), + [sym_file_redirect] = STATE(1519), + [sym_heredoc_redirect] = STATE(1519), + [sym_heredoc_body] = STATE(1500), + [sym_herestring_redirect] = STATE(1519), + [sym_concatenation] = STATE(522), + [sym_string] = STATE(548), + [sym_simple_expansion] = STATE(548), + [sym_string_expansion] = STATE(548), + [sym_expansion] = STATE(548), + [sym_command_substitution] = STATE(548), + [sym_process_substitution] = STATE(548), + [aux_sym_while_statement_repeat1] = STATE(1519), + [aux_sym_command_repeat2] = STATE(1032), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_EQ_TILDE] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(977), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym__special_characters] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(987), }, [1034] = { - [sym_file_descriptor] = ACTIONS(1679), - [sym__concat] = ACTIONS(1679), - [sym_variable_name] = ACTIONS(1679), - [anon_sym_esac] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [sym__special_characters] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), + [sym_file_redirect] = STATE(1520), + [sym_file_descriptor] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_SEMI_SEMI] = ACTIONS(2544), + [anon_sym_PIPE_AMP] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_LT] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_GT_GT] = ACTIONS(1337), + [anon_sym_AMP_GT] = ACTIONS(1337), + [anon_sym_AMP_GT_GT] = ACTIONS(1337), + [anon_sym_LT_AMP] = ACTIONS(1337), + [anon_sym_GT_AMP] = ACTIONS(1337), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_LF] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), }, [1035] = { - [anon_sym_DQUOTE] = ACTIONS(3442), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), + [sym__heredoc_body_middle] = ACTIONS(767), + [sym__heredoc_body_end] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), + [sym_comment] = ACTIONS(53), }, [1036] = { - [sym_concatenation] = STATE(1478), - [sym_string] = STATE(1477), - [sym_simple_expansion] = STATE(1477), - [sym_string_expansion] = STATE(1477), - [sym_expansion] = STATE(1477), - [sym_command_substitution] = STATE(1477), - [sym_process_substitution] = STATE(1477), - [anon_sym_RBRACE] = ACTIONS(3444), - [sym__special_characters] = ACTIONS(3446), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(3448), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym__heredoc_body_middle] = ACTIONS(775), + [sym__heredoc_body_end] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3448), }, [1037] = { - [sym_file_descriptor] = ACTIONS(1764), - [sym__concat] = ACTIONS(1764), - [sym_variable_name] = ACTIONS(1764), - [anon_sym_esac] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_SEMI_SEMI] = ACTIONS(1766), - [anon_sym_PIPE_AMP] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_GT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_AMP_GT] = ACTIONS(1766), - [anon_sym_AMP_GT_GT] = ACTIONS(1766), - [anon_sym_LT_AMP] = ACTIONS(1766), - [anon_sym_GT_AMP] = ACTIONS(1766), - [sym__special_characters] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1766), - }, - [1038] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3450), - }, - [1039] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1040] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(3476), [sym_comment] = ACTIONS(53), }, + [1038] = { + [sym_concatenation] = STATE(1524), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1524), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_EQ] = ACTIONS(3480), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3482), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3484), + [anon_sym_COLON] = ACTIONS(3480), + [anon_sym_COLON_QMARK] = ACTIONS(3480), + [anon_sym_COLON_DASH] = ACTIONS(3480), + [anon_sym_PERCENT] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1039] = { + [sym_subscript] = STATE(1528), + [sym_variable_name] = ACTIONS(3486), + [anon_sym_DOLLAR] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3490), + [anon_sym_STAR] = ACTIONS(3488), + [anon_sym_AT] = ACTIONS(3488), + [anon_sym_QMARK] = ACTIONS(3488), + [anon_sym_0] = ACTIONS(3492), + [anon_sym__] = ACTIONS(3492), + }, + [1040] = { + [sym_concatenation] = STATE(1531), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1531), + [anon_sym_RBRACE] = ACTIONS(3494), + [anon_sym_EQ] = ACTIONS(3496), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3498), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_COLON] = ACTIONS(3496), + [anon_sym_COLON_QMARK] = ACTIONS(3496), + [anon_sym_COLON_DASH] = ACTIONS(3496), + [anon_sym_PERCENT] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3496), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, [1041] = { - [sym_concatenation] = STATE(1484), - [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), - [aux_sym_expansion_repeat1] = STATE(1484), - [anon_sym_RBRACE] = ACTIONS(3456), - [anon_sym_EQ] = ACTIONS(3458), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3460), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3462), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_DASH] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(1534), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1534), + [anon_sym_RBRACE] = ACTIONS(3502), + [anon_sym_EQ] = ACTIONS(3504), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3506), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3508), + [anon_sym_COLON] = ACTIONS(3504), + [anon_sym_COLON_QMARK] = ACTIONS(3504), + [anon_sym_COLON_DASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3504), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1042] = { - [sym_concatenation] = STATE(1487), - [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), - [aux_sym_expansion_repeat1] = STATE(1487), - [anon_sym_RBRACE] = ACTIONS(3464), - [anon_sym_EQ] = ACTIONS(3466), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3468), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3470), - [anon_sym_COLON] = ACTIONS(3466), - [anon_sym_COLON_QMARK] = ACTIONS(3466), - [anon_sym_COLON_DASH] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_esac] = ACTIONS(3510), + [anon_sym_PIPE] = ACTIONS(3510), + [anon_sym_RPAREN] = ACTIONS(3510), + [anon_sym_SEMI_SEMI] = ACTIONS(3510), + [anon_sym_PIPE_AMP] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3510), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_LF] = ACTIONS(3512), + [anon_sym_AMP] = ACTIONS(3510), }, [1043] = { - [sym_concatenation] = STATE(1489), - [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), - [aux_sym_expansion_repeat1] = STATE(1489), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_EQ] = ACTIONS(3472), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3476), - [anon_sym_COLON] = ACTIONS(3472), - [anon_sym_COLON_QMARK] = ACTIONS(3472), - [anon_sym_COLON_DASH] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3472), - [anon_sym_DASH] = ACTIONS(3472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_simple_expansion] = STATE(1043), + [sym_expansion] = STATE(1043), + [aux_sym_heredoc_body_repeat1] = STATE(1043), + [sym__heredoc_body_middle] = ACTIONS(3514), + [sym__heredoc_body_end] = ACTIONS(3517), + [anon_sym_DOLLAR] = ACTIONS(3519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3522), + [sym_comment] = ACTIONS(53), }, [1044] = { - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [sym_variable_name] = ACTIONS(1832), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [sym__special_characters] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), + [aux_sym_concatenation_repeat1] = STATE(1047), + [sym__simple_heredoc_body] = ACTIONS(1133), + [sym__heredoc_body_beginning] = ACTIONS(1133), + [sym_file_descriptor] = ACTIONS(1133), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(1135), + [anon_sym_PIPE_AMP] = ACTIONS(1135), + [anon_sym_AMP_AMP] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1135), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1135), + [anon_sym_AMP_GT] = ACTIONS(1135), + [anon_sym_AMP_GT_GT] = ACTIONS(1135), + [anon_sym_LT_AMP] = ACTIONS(1135), + [anon_sym_GT_AMP] = ACTIONS(1135), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_LT_LT_DASH] = ACTIONS(1135), + [anon_sym_LT_LT_LT] = ACTIONS(1135), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), }, [1045] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3478), + [aux_sym_concatenation_repeat1] = STATE(1047), + [sym__simple_heredoc_body] = ACTIONS(1137), + [sym__heredoc_body_beginning] = ACTIONS(1137), + [sym_file_descriptor] = ACTIONS(1137), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_SEMI_SEMI] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1139), + [anon_sym_LT_AMP] = ACTIONS(1139), + [anon_sym_GT_AMP] = ACTIONS(1139), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1139), + [anon_sym_LT_LT_LT] = ACTIONS(1139), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), }, [1046] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__simple_heredoc_body] = ACTIONS(1137), + [sym__heredoc_body_beginning] = ACTIONS(1137), + [sym_file_descriptor] = ACTIONS(1137), + [anon_sym_esac] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_SEMI_SEMI] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1139), + [anon_sym_LT_AMP] = ACTIONS(1139), + [anon_sym_GT_AMP] = ACTIONS(1139), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1139), + [anon_sym_LT_LT_LT] = ACTIONS(1139), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), }, [1047] = { - [sym_file_descriptor] = ACTIONS(1840), - [sym__concat] = ACTIONS(1840), - [sym_variable_name] = ACTIONS(1840), - [anon_sym_esac] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_SEMI_SEMI] = ACTIONS(1842), - [anon_sym_PIPE_AMP] = ACTIONS(1842), - [anon_sym_AMP_AMP] = ACTIONS(1842), - [anon_sym_PIPE_PIPE] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_GT] = ACTIONS(1842), - [anon_sym_GT_GT] = ACTIONS(1842), - [anon_sym_AMP_GT] = ACTIONS(1842), - [anon_sym_AMP_GT_GT] = ACTIONS(1842), - [anon_sym_LT_AMP] = ACTIONS(1842), - [anon_sym_GT_AMP] = ACTIONS(1842), - [sym__special_characters] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1842), - [anon_sym_GT_LPAREN] = ACTIONS(1842), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LF] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1842), + [aux_sym_concatenation_repeat1] = STATE(1535), + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_LT_LT_LT] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, [1048] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3482), + [anon_sym_esac] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(3525), + [anon_sym_SEMI_SEMI] = ACTIONS(3525), + [anon_sym_PIPE_AMP] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3525), + [anon_sym_LF] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), }, [1049] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_redirect] = STATE(574), + [sym_heredoc_redirect] = STATE(574), + [sym_heredoc_body] = STATE(1536), + [sym_herestring_redirect] = STATE(574), + [aux_sym_while_statement_repeat1] = STATE(574), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(3525), + [anon_sym_SEMI_SEMI] = ACTIONS(3525), + [anon_sym_PIPE_AMP] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(349), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3525), + [anon_sym_LF] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), }, [1050] = { - [sym_file_descriptor] = ACTIONS(1980), - [sym__concat] = ACTIONS(1980), - [sym_variable_name] = ACTIONS(1980), - [anon_sym_esac] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1982), - [anon_sym_PIPE_AMP] = ACTIONS(1982), - [anon_sym_AMP_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_GT] = ACTIONS(1982), - [anon_sym_GT_GT] = ACTIONS(1982), - [anon_sym_AMP_GT] = ACTIONS(1982), - [anon_sym_AMP_GT_GT] = ACTIONS(1982), - [anon_sym_LT_AMP] = ACTIONS(1982), - [anon_sym_GT_AMP] = ACTIONS(1982), - [sym__special_characters] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), - [anon_sym_BQUOTE] = ACTIONS(1982), - [anon_sym_LT_LPAREN] = ACTIONS(1982), - [anon_sym_GT_LPAREN] = ACTIONS(1982), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), + [sym__concat] = ACTIONS(3529), + [anon_sym_EQ] = ACTIONS(3531), + [anon_sym_PLUS_EQ] = ACTIONS(3531), + [sym_comment] = ACTIONS(53), }, [1051] = { - [sym_file_descriptor] = ACTIONS(2046), - [sym__concat] = ACTIONS(2046), - [sym_variable_name] = ACTIONS(2046), - [anon_sym_esac] = ACTIONS(2048), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2048), - [anon_sym_SEMI_SEMI] = ACTIONS(2048), - [anon_sym_PIPE_AMP] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_LT] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_AMP_GT] = ACTIONS(2048), - [anon_sym_AMP_GT_GT] = ACTIONS(2048), - [anon_sym_LT_AMP] = ACTIONS(2048), - [anon_sym_GT_AMP] = ACTIONS(2048), - [sym__special_characters] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2048), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2048), - [anon_sym_BQUOTE] = ACTIONS(2048), - [anon_sym_LT_LPAREN] = ACTIONS(2048), - [anon_sym_GT_LPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LF] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_EQ] = ACTIONS(3531), + [anon_sym_PLUS_EQ] = ACTIONS(3531), + [sym_comment] = ACTIONS(53), }, [1052] = { - [aux_sym_concatenation_repeat1] = STATE(1493), - [sym__concat] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(707), - [sym__special_characters] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(707), - [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(177), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), + [aux_sym_concatenation_repeat1] = STATE(1052), + [sym__concat] = ACTIONS(2615), + [anon_sym_RBRACK] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), }, [1053] = { - [sym_do_group] = STATE(1494), - [anon_sym_do] = ACTIONS(1177), + [sym__concat] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_PLUS_EQ] = ACTIONS(3535), [sym_comment] = ACTIONS(53), }, [1054] = { - [sym_concatenation] = STATE(1054), - [sym_string] = STATE(597), - [sym_simple_expansion] = STATE(597), - [sym_string_expansion] = STATE(597), - [sym_expansion] = STATE(597), - [sym_command_substitution] = STATE(597), - [sym_process_substitution] = STATE(597), - [aux_sym_for_statement_repeat1] = STATE(1054), - [anon_sym_SEMI_SEMI] = ACTIONS(3484), - [sym__special_characters] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3492), - [sym_raw_string] = ACTIONS(3495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3498), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3501), - [anon_sym_BQUOTE] = ACTIONS(3504), - [anon_sym_LT_LPAREN] = ACTIONS(3507), - [anon_sym_GT_LPAREN] = ACTIONS(3507), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3495), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_LF] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3484), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_PLUS_EQ] = ACTIONS(3535), + [sym_comment] = ACTIONS(53), }, [1055] = { - [anon_sym_esac] = ACTIONS(2275), - [anon_sym_PIPE] = ACTIONS(2275), - [anon_sym_RPAREN] = ACTIONS(2275), - [anon_sym_SEMI_SEMI] = ACTIONS(2275), - [anon_sym_PIPE_AMP] = ACTIONS(2275), - [anon_sym_AMP_AMP] = ACTIONS(2275), - [anon_sym_PIPE_PIPE] = ACTIONS(2275), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2275), + [sym_string] = STATE(1539), + [sym_simple_expansion] = STATE(1539), + [sym_string_expansion] = STATE(1539), + [sym_expansion] = STATE(1539), + [sym_command_substitution] = STATE(1539), + [sym_process_substitution] = STATE(1539), + [sym__special_characters] = ACTIONS(3537), + [anon_sym_DQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym_raw_string] = ACTIONS(3537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3537), }, [1056] = { - [sym__terminated_statement] = STATE(1058), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1058), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [aux_sym_concatenation_repeat1] = STATE(1540), + [sym__concat] = ACTIONS(2257), + [anon_sym_RPAREN] = ACTIONS(731), + [sym__special_characters] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(731), }, [1057] = { - [sym__simple_heredoc_body] = ACTIONS(3512), - [sym__heredoc_body_beginning] = ACTIONS(3512), - [sym_file_descriptor] = ACTIONS(3512), - [anon_sym_esac] = ACTIONS(3514), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_RPAREN] = ACTIONS(3514), - [anon_sym_SEMI_SEMI] = ACTIONS(3514), - [anon_sym_PIPE_AMP] = ACTIONS(3514), - [anon_sym_AMP_AMP] = ACTIONS(3514), - [anon_sym_PIPE_PIPE] = ACTIONS(3514), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_GT] = ACTIONS(3514), - [anon_sym_GT_GT] = ACTIONS(3514), - [anon_sym_AMP_GT] = ACTIONS(3514), - [anon_sym_AMP_GT_GT] = ACTIONS(3514), - [anon_sym_LT_AMP] = ACTIONS(3514), - [anon_sym_GT_AMP] = ACTIONS(3514), - [anon_sym_LT_LT] = ACTIONS(3514), - [anon_sym_LT_LT_DASH] = ACTIONS(3514), - [anon_sym_LT_LT_LT] = ACTIONS(3514), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3514), - [anon_sym_LF] = ACTIONS(3512), - [anon_sym_AMP] = ACTIONS(3514), + [sym__concat] = ACTIONS(735), + [anon_sym_RPAREN] = ACTIONS(735), + [sym__special_characters] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), + [anon_sym_BQUOTE] = ACTIONS(735), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(735), }, [1058] = { - [sym__terminated_statement] = STATE(1058), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1058), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1015), - [sym_variable_name] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_done] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_function] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), - [anon_sym_declare] = ACTIONS(1050), - [anon_sym_typeset] = ACTIONS(1050), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_readonly] = ACTIONS(1050), - [anon_sym_local] = ACTIONS(1050), - [anon_sym_unset] = ACTIONS(1053), - [anon_sym_unsetenv] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1056), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1056), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1083), - [anon_sym_GT_LPAREN] = ACTIONS(1083), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [1059] = { - [anon_sym_esac] = ACTIONS(3518), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_SEMI_SEMI] = ACTIONS(3518), - [anon_sym_PIPE_AMP] = ACTIONS(3518), - [anon_sym_AMP_AMP] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3518), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_AMP] = ACTIONS(3518), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR] = ACTIONS(3541), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [1060] = { - [anon_sym_then] = ACTIONS(3522), + [sym__concat] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [sym__special_characters] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym_raw_string] = ACTIONS(767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(767), + [anon_sym_BQUOTE] = ACTIONS(767), + [anon_sym_LT_LPAREN] = ACTIONS(767), + [anon_sym_GT_LPAREN] = ACTIONS(767), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(767), }, [1061] = { - [sym__terminated_statement] = STATE(1497), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1497), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym__concat] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [sym__special_characters] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(771), + [anon_sym_LT_LPAREN] = ACTIONS(771), + [anon_sym_GT_LPAREN] = ACTIONS(771), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(771), }, [1062] = { - [anon_sym_esac] = ACTIONS(3526), - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_RPAREN] = ACTIONS(3526), - [anon_sym_SEMI_SEMI] = ACTIONS(3526), - [anon_sym_PIPE_AMP] = ACTIONS(3526), - [anon_sym_AMP_AMP] = ACTIONS(3526), - [anon_sym_PIPE_PIPE] = ACTIONS(3526), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym_LF] = ACTIONS(3528), - [anon_sym_AMP] = ACTIONS(3526), + [sym__concat] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [sym__special_characters] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(775), + [anon_sym_GT_LPAREN] = ACTIONS(775), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(775), }, [1063] = { - [anon_sym_fi] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(3543), [sym_comment] = ACTIONS(53), }, [1064] = { - [sym__terminated_statement] = STATE(1064), + [sym_concatenation] = STATE(1546), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1546), + [anon_sym_RBRACE] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3547), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3551), + [anon_sym_COLON] = ACTIONS(3547), + [anon_sym_COLON_QMARK] = ACTIONS(3547), + [anon_sym_COLON_DASH] = ACTIONS(3547), + [anon_sym_PERCENT] = ACTIONS(3547), + [anon_sym_DASH] = ACTIONS(3547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1065] = { + [sym_subscript] = STATE(1550), + [sym_variable_name] = ACTIONS(3553), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3555), + [anon_sym_AT] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_0] = ACTIONS(3559), + [anon_sym__] = ACTIONS(3559), + }, + [1066] = { + [sym_concatenation] = STATE(1553), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1553), + [anon_sym_RBRACE] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(3563), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3567), + [anon_sym_COLON] = ACTIONS(3563), + [anon_sym_COLON_QMARK] = ACTIONS(3563), + [anon_sym_COLON_DASH] = ACTIONS(3563), + [anon_sym_PERCENT] = ACTIONS(3563), + [anon_sym_DASH] = ACTIONS(3563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1067] = { + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1556), + [anon_sym_RBRACE] = ACTIONS(3569), + [anon_sym_EQ] = ACTIONS(3571), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3573), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3575), + [anon_sym_COLON] = ACTIONS(3571), + [anon_sym_COLON_QMARK] = ACTIONS(3571), + [anon_sym_COLON_DASH] = ACTIONS(3571), + [anon_sym_PERCENT] = ACTIONS(3571), + [anon_sym_DASH] = ACTIONS(3571), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1068] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3577), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [1069] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3577), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [1070] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(3577), + [sym_comment] = ACTIONS(53), + }, + [1071] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(3577), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [1072] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3579), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [1073] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(3579), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [1074] = { + [sym_file_descriptor] = ACTIONS(3581), + [sym_variable_name] = ACTIONS(3581), + [anon_sym_esac] = ACTIONS(3583), + [anon_sym_PIPE] = ACTIONS(3583), + [anon_sym_RPAREN] = ACTIONS(3583), + [anon_sym_SEMI_SEMI] = ACTIONS(3583), + [anon_sym_PIPE_AMP] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_PIPE_PIPE] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_GT] = ACTIONS(3583), + [anon_sym_GT_GT] = ACTIONS(3583), + [anon_sym_AMP_GT] = ACTIONS(3583), + [anon_sym_AMP_GT_GT] = ACTIONS(3583), + [anon_sym_LT_AMP] = ACTIONS(3583), + [anon_sym_GT_AMP] = ACTIONS(3583), + [sym__special_characters] = ACTIONS(3583), + [anon_sym_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3583), + [sym_raw_string] = ACTIONS(3583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3583), + [anon_sym_BQUOTE] = ACTIONS(3583), + [anon_sym_LT_LPAREN] = ACTIONS(3583), + [anon_sym_GT_LPAREN] = ACTIONS(3583), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3583), + [anon_sym_SEMI] = ACTIONS(3583), + [anon_sym_LF] = ACTIONS(3581), + [anon_sym_AMP] = ACTIONS(3583), + }, + [1075] = { + [sym_concatenation] = STATE(1075), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1075), + [anon_sym_RPAREN] = ACTIONS(3585), + [sym__special_characters] = ACTIONS(3587), + [anon_sym_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3593), + [sym_raw_string] = ACTIONS(3596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3599), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3602), + [anon_sym_BQUOTE] = ACTIONS(3605), + [anon_sym_LT_LPAREN] = ACTIONS(3608), + [anon_sym_GT_LPAREN] = ACTIONS(3608), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3596), + }, + [1076] = { + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(1754), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [1077] = { + [aux_sym_concatenation_repeat1] = STATE(1077), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(3611), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [1078] = { + [sym_file_descriptor] = ACTIONS(1761), + [sym__concat] = ACTIONS(1761), + [sym_variable_name] = ACTIONS(1761), + [anon_sym_esac] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1763), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1763), + }, + [1079] = { + [anon_sym_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [1080] = { + [sym_concatenation] = STATE(1563), + [sym_string] = STATE(1562), + [sym_simple_expansion] = STATE(1562), + [sym_string_expansion] = STATE(1562), + [sym_expansion] = STATE(1562), + [sym_command_substitution] = STATE(1562), + [sym_process_substitution] = STATE(1562), + [anon_sym_RBRACE] = ACTIONS(3616), + [sym__special_characters] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(3620), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3620), + }, + [1081] = { + [sym_file_descriptor] = ACTIONS(1846), + [sym__concat] = ACTIONS(1846), + [sym_variable_name] = ACTIONS(1846), + [anon_sym_esac] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = ACTIONS(1848), + [anon_sym_PIPE_AMP] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_GT_GT] = ACTIONS(1848), + [anon_sym_AMP_GT] = ACTIONS(1848), + [anon_sym_AMP_GT_GT] = ACTIONS(1848), + [anon_sym_LT_AMP] = ACTIONS(1848), + [anon_sym_GT_AMP] = ACTIONS(1848), + [sym__special_characters] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), + [anon_sym_BQUOTE] = ACTIONS(1848), + [anon_sym_LT_LPAREN] = ACTIONS(1848), + [anon_sym_GT_LPAREN] = ACTIONS(1848), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [1082] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3622), + }, + [1083] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1084] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(3626), + [sym_comment] = ACTIONS(53), + }, + [1085] = { + [sym_concatenation] = STATE(1569), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1569), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_EQ] = ACTIONS(3630), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3632), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_COLON] = ACTIONS(3630), + [anon_sym_COLON_QMARK] = ACTIONS(3630), + [anon_sym_COLON_DASH] = ACTIONS(3630), + [anon_sym_PERCENT] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1086] = { + [sym_concatenation] = STATE(1572), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1572), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_EQ] = ACTIONS(3638), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3640), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_DASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1087] = { + [sym_concatenation] = STATE(1574), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1574), + [anon_sym_RBRACE] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3644), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COLON_QMARK] = ACTIONS(3644), + [anon_sym_COLON_DASH] = ACTIONS(3644), + [anon_sym_PERCENT] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1088] = { + [sym_file_descriptor] = ACTIONS(1914), + [sym__concat] = ACTIONS(1914), + [sym_variable_name] = ACTIONS(1914), + [anon_sym_esac] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(1916), + [anon_sym_AMP_AMP] = ACTIONS(1916), + [anon_sym_PIPE_PIPE] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_GT] = ACTIONS(1916), + [anon_sym_GT_GT] = ACTIONS(1916), + [anon_sym_AMP_GT] = ACTIONS(1916), + [anon_sym_AMP_GT_GT] = ACTIONS(1916), + [anon_sym_LT_AMP] = ACTIONS(1916), + [anon_sym_GT_AMP] = ACTIONS(1916), + [sym__special_characters] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_LT_LPAREN] = ACTIONS(1916), + [anon_sym_GT_LPAREN] = ACTIONS(1916), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1916), + }, + [1089] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3650), + }, + [1090] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1091] = { + [sym_file_descriptor] = ACTIONS(1922), + [sym__concat] = ACTIONS(1922), + [sym_variable_name] = ACTIONS(1922), + [anon_sym_esac] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_GT] = ACTIONS(1924), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1924), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1924), + }, + [1092] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3654), + }, + [1093] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1094] = { + [sym_file_descriptor] = ACTIONS(2066), + [sym__concat] = ACTIONS(2066), + [sym_variable_name] = ACTIONS(2066), + [anon_sym_esac] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_SEMI_SEMI] = ACTIONS(2068), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_AMP_GT] = ACTIONS(2068), + [anon_sym_AMP_GT_GT] = ACTIONS(2068), + [anon_sym_LT_AMP] = ACTIONS(2068), + [anon_sym_GT_AMP] = ACTIONS(2068), + [sym__special_characters] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), + [anon_sym_BQUOTE] = ACTIONS(2068), + [anon_sym_LT_LPAREN] = ACTIONS(2068), + [anon_sym_GT_LPAREN] = ACTIONS(2068), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_LF] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2068), + }, + [1095] = { + [sym_file_descriptor] = ACTIONS(2132), + [sym__concat] = ACTIONS(2132), + [sym_variable_name] = ACTIONS(2132), + [anon_sym_esac] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_SEMI_SEMI] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(2134), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(2134), + [anon_sym_LT_AMP] = ACTIONS(2134), + [anon_sym_GT_AMP] = ACTIONS(2134), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), + [anon_sym_BQUOTE] = ACTIONS(2134), + [anon_sym_LT_LPAREN] = ACTIONS(2134), + [anon_sym_GT_LPAREN] = ACTIONS(2134), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + }, + [1096] = { + [sym_do_group] = STATE(1579), + [sym_compound_statement] = STATE(1579), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(3656), + [sym_comment] = ACTIONS(53), + }, + [1097] = { + [sym__expression] = STATE(1580), + [sym_binary_expression] = STATE(1580), + [sym_unary_expression] = STATE(1580), + [sym_parenthesized_expression] = STATE(1580), + [sym_concatenation] = STATE(1580), + [sym_string] = STATE(302), + [sym_simple_expansion] = STATE(302), + [sym_string_expansion] = STATE(302), + [sym_expansion] = STATE(302), + [sym_command_substitution] = STATE(302), + [sym_process_substitution] = STATE(302), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(531), + [sym__special_characters] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(537), + [sym_test_operator] = ACTIONS(539), + }, + [1098] = { + [sym__expression] = STATE(1581), + [sym_binary_expression] = STATE(1581), + [sym_unary_expression] = STATE(1581), + [sym_parenthesized_expression] = STATE(1581), + [sym_concatenation] = STATE(1581), + [sym_string] = STATE(1102), + [sym_simple_expansion] = STATE(1102), + [sym_string_expansion] = STATE(1102), + [sym_expansion] = STATE(1102), + [sym_command_substitution] = STATE(1102), + [sym_process_substitution] = STATE(1102), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [sym__special_characters] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [sym_raw_string] = ACTIONS(2347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), + [anon_sym_BQUOTE] = ACTIONS(2353), + [anon_sym_LT_LPAREN] = ACTIONS(2355), + [anon_sym_GT_LPAREN] = ACTIONS(2355), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2357), + [sym_test_operator] = ACTIONS(2359), + }, + [1099] = { + [aux_sym_concatenation_repeat1] = STATE(1583), + [sym__concat] = ACTIONS(3658), + [anon_sym_RPAREN_RPAREN] = ACTIONS(543), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE_PIPE] = ACTIONS(543), + [anon_sym_EQ_TILDE] = ACTIONS(543), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(543), + }, + [1100] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(1586), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_DOLLAR] = ACTIONS(3662), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [1101] = { + [sym_string] = STATE(1588), + [anon_sym_DQUOTE] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(3664), + [sym_raw_string] = ACTIONS(3666), + [anon_sym_POUND] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AT] = ACTIONS(3664), + [anon_sym_QMARK] = ACTIONS(3664), + [anon_sym_0] = ACTIONS(3670), + [anon_sym__] = ACTIONS(3670), + }, + [1102] = { + [aux_sym_concatenation_repeat1] = STATE(1583), + [sym__concat] = ACTIONS(3658), + [anon_sym_RPAREN_RPAREN] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_EQ_TILDE] = ACTIONS(559), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(559), + }, + [1103] = { + [sym_subscript] = STATE(1594), + [sym_variable_name] = ACTIONS(3672), + [anon_sym_DOLLAR] = ACTIONS(3674), + [anon_sym_POUND] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3674), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AT] = ACTIONS(3674), + [anon_sym_QMARK] = ACTIONS(3674), + [anon_sym_0] = ACTIONS(3680), + [anon_sym__] = ACTIONS(3680), + }, + [1104] = { + [sym_for_statement] = STATE(1595), + [sym_c_style_for_statement] = STATE(1595), + [sym_while_statement] = STATE(1595), + [sym_if_statement] = STATE(1595), + [sym_case_statement] = STATE(1595), + [sym_function_definition] = STATE(1595), + [sym_subshell] = STATE(1595), + [sym_pipeline] = STATE(1595), + [sym_list] = STATE(1595), + [sym_negated_command] = STATE(1595), + [sym_test_command] = STATE(1595), + [sym_declaration_command] = STATE(1595), + [sym_unset_command] = STATE(1595), + [sym_command] = STATE(1595), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(1596), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [1105] = { + [sym_for_statement] = STATE(1597), + [sym_c_style_for_statement] = STATE(1597), + [sym_while_statement] = STATE(1597), + [sym_if_statement] = STATE(1597), + [sym_case_statement] = STATE(1597), + [sym_function_definition] = STATE(1597), + [sym_subshell] = STATE(1597), + [sym_pipeline] = STATE(1597), + [sym_list] = STATE(1597), + [sym_negated_command] = STATE(1597), + [sym_test_command] = STATE(1597), + [sym_declaration_command] = STATE(1597), + [sym_unset_command] = STATE(1597), + [sym_command] = STATE(1597), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(1598), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [1106] = { + [sym_for_statement] = STATE(1599), + [sym_c_style_for_statement] = STATE(1599), + [sym_while_statement] = STATE(1599), + [sym_if_statement] = STATE(1599), + [sym_case_statement] = STATE(1599), + [sym_function_definition] = STATE(1599), + [sym_subshell] = STATE(1599), + [sym_pipeline] = STATE(1599), + [sym_list] = STATE(1599), + [sym_negated_command] = STATE(1599), + [sym_test_command] = STATE(1599), + [sym_declaration_command] = STATE(1599), + [sym_unset_command] = STATE(1599), + [sym_command] = STATE(1599), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(1600), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [1107] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_EQ_TILDE] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3688), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3684), + }, + [1108] = { + [sym__expression] = STATE(1604), + [sym_binary_expression] = STATE(1604), + [sym_unary_expression] = STATE(1604), + [sym_parenthesized_expression] = STATE(1604), + [sym_concatenation] = STATE(1604), + [sym_string] = STATE(1102), + [sym_simple_expansion] = STATE(1102), + [sym_string_expansion] = STATE(1102), + [sym_expansion] = STATE(1102), + [sym_command_substitution] = STATE(1102), + [sym_process_substitution] = STATE(1102), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [sym__special_characters] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [sym_raw_string] = ACTIONS(2347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), + [anon_sym_BQUOTE] = ACTIONS(2353), + [anon_sym_LT_LPAREN] = ACTIONS(2355), + [anon_sym_GT_LPAREN] = ACTIONS(2355), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2357), + [sym_test_operator] = ACTIONS(2359), + }, + [1109] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2611), + [anon_sym_AMP_AMP] = ACTIONS(2611), + [anon_sym_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_EQ_TILDE] = ACTIONS(2611), + [anon_sym_EQ_EQ] = ACTIONS(2611), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2611), + [anon_sym_GT] = ACTIONS(2611), + [anon_sym_BANG_EQ] = ACTIONS(2611), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_LF] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2611), + }, + [1110] = { + [sym__concat] = ACTIONS(1754), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_EQ_TILDE] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [1111] = { + [aux_sym_concatenation_repeat1] = STATE(1111), + [sym__concat] = ACTIONS(3690), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_EQ_TILDE] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [1112] = { + [sym__concat] = ACTIONS(1761), + [anon_sym_esac] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1763), + }, + [1113] = { + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [1114] = { + [sym_concatenation] = STATE(1609), + [sym_string] = STATE(1608), + [sym_simple_expansion] = STATE(1608), + [sym_string_expansion] = STATE(1608), + [sym_expansion] = STATE(1608), + [sym_command_substitution] = STATE(1608), + [sym_process_substitution] = STATE(1608), + [anon_sym_RBRACE] = ACTIONS(3695), + [sym__special_characters] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(3699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3699), + }, + [1115] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_esac] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = ACTIONS(1848), + [anon_sym_PIPE_AMP] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [anon_sym_EQ_TILDE] = ACTIONS(1848), + [anon_sym_EQ_EQ] = ACTIONS(1848), + [anon_sym_EQ] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_BANG_EQ] = ACTIONS(1848), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [1116] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3701), + }, + [1117] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3703), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1118] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(3705), + [sym_comment] = ACTIONS(53), + }, + [1119] = { + [sym_concatenation] = STATE(1615), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1615), + [anon_sym_RBRACE] = ACTIONS(3707), + [anon_sym_EQ] = ACTIONS(3709), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COLON_QMARK] = ACTIONS(3709), + [anon_sym_COLON_DASH] = ACTIONS(3709), + [anon_sym_PERCENT] = ACTIONS(3709), + [anon_sym_DASH] = ACTIONS(3709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1120] = { + [sym_concatenation] = STATE(1618), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1618), + [anon_sym_RBRACE] = ACTIONS(3715), + [anon_sym_EQ] = ACTIONS(3717), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_DASH] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1121] = { + [sym_concatenation] = STATE(1620), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1620), + [anon_sym_RBRACE] = ACTIONS(3695), + [anon_sym_EQ] = ACTIONS(3723), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(3727), + [anon_sym_COLON] = ACTIONS(3723), + [anon_sym_COLON_QMARK] = ACTIONS(3723), + [anon_sym_COLON_DASH] = ACTIONS(3723), + [anon_sym_PERCENT] = ACTIONS(3723), + [anon_sym_DASH] = ACTIONS(3723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1122] = { + [sym__concat] = ACTIONS(1914), + [anon_sym_esac] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(1916), + [anon_sym_AMP_AMP] = ACTIONS(1916), + [anon_sym_PIPE_PIPE] = ACTIONS(1916), + [anon_sym_EQ_TILDE] = ACTIONS(1916), + [anon_sym_EQ_EQ] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_GT] = ACTIONS(1916), + [anon_sym_BANG_EQ] = ACTIONS(1916), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1916), + }, + [1123] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3729), + }, + [1124] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1125] = { + [sym__concat] = ACTIONS(1922), + [anon_sym_esac] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_EQ_TILDE] = ACTIONS(1924), + [anon_sym_EQ_EQ] = ACTIONS(1924), + [anon_sym_EQ] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_GT] = ACTIONS(1924), + [anon_sym_BANG_EQ] = ACTIONS(1924), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1924), + }, + [1126] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3733), + }, + [1127] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3695), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1128] = { + [sym__concat] = ACTIONS(2066), + [anon_sym_esac] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_SEMI_SEMI] = ACTIONS(2068), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_EQ_TILDE] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_LF] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2068), + }, + [1129] = { + [sym__concat] = ACTIONS(2132), + [anon_sym_esac] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_SEMI_SEMI] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [anon_sym_EQ_TILDE] = ACTIONS(2134), + [anon_sym_EQ_EQ] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_BANG_EQ] = ACTIONS(2134), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + }, + [1130] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3735), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(3735), + [anon_sym_LF] = ACTIONS(3737), + [anon_sym_AMP] = ACTIONS(3735), + }, + [1131] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_EQ_TILDE] = ACTIONS(2662), + [anon_sym_EQ_EQ] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_GT] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2662), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_LF] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2662), + }, + [1132] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_EQ_TILDE] = ACTIONS(2662), + [anon_sym_EQ_EQ] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_GT] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2662), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_LF] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2662), + }, + [1133] = { + [aux_sym_concatenation_repeat1] = STATE(1625), + [sym__concat] = ACTIONS(445), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [1134] = { + [sym_do_group] = STATE(1626), + [anon_sym_do] = ACTIONS(1259), + [sym_comment] = ACTIONS(53), + }, + [1135] = { + [sym_concatenation] = STATE(1135), + [sym_string] = STATE(640), + [sym_simple_expansion] = STATE(640), + [sym_string_expansion] = STATE(640), + [sym_expansion] = STATE(640), + [sym_command_substitution] = STATE(640), + [sym_process_substitution] = STATE(640), + [aux_sym_for_statement_repeat1] = STATE(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(3739), + [sym__special_characters] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3747), + [sym_raw_string] = ACTIONS(3750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3756), + [anon_sym_BQUOTE] = ACTIONS(3759), + [anon_sym_LT_LPAREN] = ACTIONS(3762), + [anon_sym_GT_LPAREN] = ACTIONS(3762), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3739), + [anon_sym_LF] = ACTIONS(3585), + [anon_sym_AMP] = ACTIONS(3739), + }, + [1136] = { + [anon_sym_esac] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_SEMI_SEMI] = ACTIONS(2441), + [anon_sym_PIPE_AMP] = ACTIONS(2441), + [anon_sym_AMP_AMP] = ACTIONS(2441), + [anon_sym_PIPE_PIPE] = ACTIONS(2441), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2441), + [anon_sym_LF] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2441), + }, + [1137] = { + [sym__terminated_statement] = STATE(1139), [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), [sym_case_statement] = STATE(26), @@ -33483,8602 +35905,5427 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1064), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1015), - [sym_variable_name] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_fi] = ACTIONS(3516), - [anon_sym_elif] = ACTIONS(3516), - [anon_sym_else] = ACTIONS(3516), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_function] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), - [anon_sym_declare] = ACTIONS(1050), - [anon_sym_typeset] = ACTIONS(1050), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_readonly] = ACTIONS(1050), - [anon_sym_local] = ACTIONS(1050), - [anon_sym_unset] = ACTIONS(1053), - [anon_sym_unsetenv] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1056), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1056), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1083), - [anon_sym_GT_LPAREN] = ACTIONS(1083), + [aux_sym_program_repeat1] = STATE(1139), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(3765), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1086), - }, - [1065] = { - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(1499), - [aux_sym_if_statement_repeat1] = STATE(1066), - [anon_sym_fi] = ACTIONS(3530), - [anon_sym_elif] = ACTIONS(2295), - [anon_sym_else] = ACTIONS(2297), - [sym_comment] = ACTIONS(53), - }, - [1066] = { - [sym_elif_clause] = STATE(608), - [aux_sym_if_statement_repeat1] = STATE(1066), - [anon_sym_fi] = ACTIONS(3532), - [anon_sym_elif] = ACTIONS(3534), - [anon_sym_else] = ACTIONS(3532), - [sym_comment] = ACTIONS(53), - }, - [1067] = { - [anon_sym_esac] = ACTIONS(3537), - [anon_sym_PIPE] = ACTIONS(3537), - [anon_sym_RPAREN] = ACTIONS(3537), - [anon_sym_SEMI_SEMI] = ACTIONS(3537), - [anon_sym_PIPE_AMP] = ACTIONS(3537), - [anon_sym_AMP_AMP] = ACTIONS(3537), - [anon_sym_PIPE_PIPE] = ACTIONS(3537), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3537), - [anon_sym_LF] = ACTIONS(3539), - [anon_sym_AMP] = ACTIONS(3537), - }, - [1068] = { - [aux_sym_case_item_repeat1] = STATE(1502), - [aux_sym_concatenation_repeat1] = STATE(1503), - [sym__concat] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(3543), - [sym_comment] = ACTIONS(53), - }, - [1069] = { - [aux_sym_case_item_repeat1] = STATE(1505), - [aux_sym_concatenation_repeat1] = STATE(1503), - [sym__concat] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(3545), - [sym_comment] = ACTIONS(53), - }, - [1070] = { - [anon_sym_esac] = ACTIONS(3547), - [sym_comment] = ACTIONS(53), - }, - [1071] = { - [aux_sym_case_item_repeat1] = STATE(1505), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(3545), - [sym_comment] = ACTIONS(53), - }, - [1072] = { - [sym_case_item] = STATE(1508), - [sym_last_case_item] = STATE(1507), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1508), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), - }, - [1073] = { - [sym_case_item] = STATE(1510), - [sym_last_case_item] = STATE(1507), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1510), - [anon_sym_esac] = ACTIONS(3549), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2305), - }, - [1074] = { - [sym__concat] = ACTIONS(2756), - [anon_sym_in] = ACTIONS(2758), - [anon_sym_SEMI_SEMI] = ACTIONS(2758), - [sym__special_characters] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), - [anon_sym_LT_LPAREN] = ACTIONS(2758), - [anon_sym_GT_LPAREN] = ACTIONS(2758), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2758), - }, - [1075] = { - [anon_sym_esac] = ACTIONS(3551), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_RPAREN] = ACTIONS(3551), - [anon_sym_SEMI_SEMI] = ACTIONS(3551), - [anon_sym_PIPE_AMP] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3551), - [anon_sym_LF] = ACTIONS(3553), - [anon_sym_AMP] = ACTIONS(3551), - }, - [1076] = { - [anon_sym_esac] = ACTIONS(3555), - [sym_comment] = ACTIONS(53), - }, - [1077] = { - [sym_case_item] = STATE(1508), - [sym_last_case_item] = STATE(1512), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1508), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), - }, - [1078] = { - [sym_case_item] = STATE(1514), - [sym_last_case_item] = STATE(1512), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1514), - [anon_sym_esac] = ACTIONS(3557), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2305), - }, - [1079] = { - [sym__concat] = ACTIONS(2770), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_SEMI_SEMI] = ACTIONS(2772), - [sym__special_characters] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), - [anon_sym_BQUOTE] = ACTIONS(2772), - [anon_sym_LT_LPAREN] = ACTIONS(2772), - [anon_sym_GT_LPAREN] = ACTIONS(2772), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), - }, - [1080] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3559), - [sym_comment] = ACTIONS(53), - }, - [1081] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3561), - [sym_comment] = ACTIONS(53), - }, - [1082] = { - [anon_sym_RBRACE] = ACTIONS(3561), - [sym_comment] = ACTIONS(53), - }, - [1083] = { - [sym_concatenation] = STATE(1518), - [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), - [aux_sym_expansion_repeat1] = STATE(1518), - [anon_sym_RBRACE] = ACTIONS(3563), - [anon_sym_EQ] = ACTIONS(3565), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_DASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1084] = { - [sym__concat] = ACTIONS(2852), - [anon_sym_in] = ACTIONS(2854), - [anon_sym_SEMI_SEMI] = ACTIONS(2854), - [sym__special_characters] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), - [anon_sym_BQUOTE] = ACTIONS(2854), - [anon_sym_LT_LPAREN] = ACTIONS(2854), - [anon_sym_GT_LPAREN] = ACTIONS(2854), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2854), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - }, - [1085] = { - [sym_concatenation] = STATE(1521), - [sym_string] = STATE(1520), - [sym_simple_expansion] = STATE(1520), - [sym_string_expansion] = STATE(1520), - [sym_expansion] = STATE(1520), - [sym_command_substitution] = STATE(1520), - [sym_process_substitution] = STATE(1520), - [anon_sym_RBRACE] = ACTIONS(3561), - [sym__special_characters] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(3571), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3571), - }, - [1086] = { - [sym__concat] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(2897), - [anon_sym_SEMI_SEMI] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2897), - }, - [1087] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3573), - }, - [1088] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3575), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1089] = { - [sym__concat] = ACTIONS(2903), - [anon_sym_in] = ACTIONS(2905), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [sym__special_characters] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), - [anon_sym_BQUOTE] = ACTIONS(2905), - [anon_sym_LT_LPAREN] = ACTIONS(2905), - [anon_sym_GT_LPAREN] = ACTIONS(2905), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2905), - }, - [1090] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3577), - }, - [1091] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3579), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1092] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3581), - }, - [1093] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1094] = { - [sym_concatenation] = STATE(1528), - [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), - [aux_sym_expansion_repeat1] = STATE(1528), - [anon_sym_RBRACE] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3585), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3587), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3585), - [anon_sym_COLON_QMARK] = ACTIONS(3585), - [anon_sym_COLON_DASH] = ACTIONS(3585), - [anon_sym_PERCENT] = ACTIONS(3585), - [anon_sym_DASH] = ACTIONS(3585), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1095] = { - [sym__concat] = ACTIONS(2919), - [anon_sym_in] = ACTIONS(2921), - [anon_sym_SEMI_SEMI] = ACTIONS(2921), - [sym__special_characters] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), - [anon_sym_BQUOTE] = ACTIONS(2921), - [anon_sym_LT_LPAREN] = ACTIONS(2921), - [anon_sym_GT_LPAREN] = ACTIONS(2921), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2921), - }, - [1096] = { - [sym_concatenation] = STATE(1530), - [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), - [aux_sym_expansion_repeat1] = STATE(1530), - [anon_sym_RBRACE] = ACTIONS(3589), - [anon_sym_EQ] = ACTIONS(3591), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3593), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_DASH] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1097] = { - [sym_file_redirect] = STATE(1531), - [sym_file_descriptor] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_SEMI_SEMI] = ACTIONS(3595), - [anon_sym_PIPE_AMP] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_AMP_GT] = ACTIONS(1255), - [anon_sym_AMP_GT_GT] = ACTIONS(1255), - [anon_sym_LT_AMP] = ACTIONS(1255), - [anon_sym_GT_AMP] = ACTIONS(1255), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3595), - [anon_sym_LF] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - }, - [1098] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(969), - [sym_raw_string] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(969), - }, - [1099] = { - [sym_file_descriptor] = ACTIONS(3599), - [anon_sym_esac] = ACTIONS(3601), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_RPAREN] = ACTIONS(3601), - [anon_sym_SEMI_SEMI] = ACTIONS(3601), - [anon_sym_PIPE_AMP] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_PIPE_PIPE] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_AMP_GT] = ACTIONS(3601), - [anon_sym_AMP_GT_GT] = ACTIONS(3601), - [anon_sym_LT_AMP] = ACTIONS(3601), - [anon_sym_GT_AMP] = ACTIONS(3601), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3601), - [anon_sym_LF] = ACTIONS(3599), - [anon_sym_AMP] = ACTIONS(3601), - }, - [1100] = { - [sym__terminated_statement] = STATE(1100), - [sym_for_statement] = STATE(638), - [sym_while_statement] = STATE(638), - [sym_if_statement] = STATE(638), - [sym_case_statement] = STATE(638), - [sym_function_definition] = STATE(638), - [sym_subshell] = STATE(638), - [sym_pipeline] = STATE(638), - [sym_list] = STATE(638), - [sym_negated_command] = STATE(638), - [sym_test_command] = STATE(638), - [sym_declaration_command] = STATE(638), - [sym_unset_command] = STATE(638), - [sym_command] = STATE(638), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(639), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1100), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1015), - [sym_variable_name] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_function] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), - [anon_sym_declare] = ACTIONS(1050), - [anon_sym_typeset] = ACTIONS(1050), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_readonly] = ACTIONS(1050), - [anon_sym_local] = ACTIONS(1050), - [anon_sym_unset] = ACTIONS(1053), - [anon_sym_unsetenv] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1056), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1056), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1083), - [anon_sym_GT_LPAREN] = ACTIONS(1083), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1086), - }, - [1101] = { - [sym_concatenation] = STATE(1534), - [sym_string] = STATE(1533), - [sym_simple_expansion] = STATE(1533), - [sym_string_expansion] = STATE(1533), - [sym_expansion] = STATE(1533), - [sym_command_substitution] = STATE(1533), - [sym_process_substitution] = STATE(1533), - [sym__special_characters] = ACTIONS(3603), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(3605), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1549), - [anon_sym_BQUOTE] = ACTIONS(1551), - [anon_sym_LT_LPAREN] = ACTIONS(1553), - [anon_sym_GT_LPAREN] = ACTIONS(1553), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3605), - }, - [1102] = { - [aux_sym_concatenation_repeat1] = STATE(1535), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(675), - }, - [1103] = { - [aux_sym_concatenation_repeat1] = STATE(1535), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_SEMI_SEMI] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LF] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), - }, - [1104] = { - [anon_sym_esac] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(691), - [anon_sym_SEMI_SEMI] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LF] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), - }, - [1105] = { - [aux_sym_concatenation_repeat1] = STATE(1536), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(1147), - [sym_variable_name] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(707), - [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(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(707), - [anon_sym_LT_AMP] = ACTIONS(707), - [anon_sym_GT_AMP] = ACTIONS(707), - [sym__special_characters] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(707), - [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(177), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [1106] = { - [sym_file_redirect] = STATE(667), - [sym_heredoc_redirect] = STATE(667), - [sym_heredoc_body] = STATE(1059), - [sym_herestring_redirect] = STATE(667), - [aux_sym_while_statement_repeat1] = STATE(667), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_SEMI_SEMI] = ACTIONS(2279), - [anon_sym_PIPE_AMP] = ACTIONS(2279), - [anon_sym_AMP_AMP] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(491), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_LF] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2279), - }, - [1107] = { - [sym_compound_statement] = STATE(1537), - [anon_sym_LBRACE] = ACTIONS(457), - [sym_comment] = ACTIONS(53), - }, - [1108] = { - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_GT] = ACTIONS(3607), - [anon_sym_GT_GT] = ACTIONS(3609), - [anon_sym_AMP_GT] = ACTIONS(3607), - [anon_sym_AMP_GT_GT] = ACTIONS(3609), - [anon_sym_LT_AMP] = ACTIONS(3609), - [anon_sym_GT_AMP] = ACTIONS(3609), - [sym_comment] = ACTIONS(53), - }, - [1109] = { - [sym_concatenation] = STATE(1104), - [sym_string] = STATE(1540), - [sym_simple_expansion] = STATE(1540), - [sym_string_expansion] = STATE(1540), - [sym_expansion] = STATE(1540), - [sym_command_substitution] = STATE(1540), - [sym_process_substitution] = STATE(1540), - [sym__special_characters] = ACTIONS(3611), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(3613), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1549), - [anon_sym_BQUOTE] = ACTIONS(1551), - [anon_sym_LT_LPAREN] = ACTIONS(1553), - [anon_sym_GT_LPAREN] = ACTIONS(1553), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3613), - }, - [1110] = { - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_GT] = ACTIONS(3615), - [anon_sym_GT_GT] = ACTIONS(3617), - [anon_sym_AMP_GT] = ACTIONS(3615), - [anon_sym_AMP_GT_GT] = ACTIONS(3617), - [anon_sym_LT_AMP] = ACTIONS(3617), - [anon_sym_GT_AMP] = ACTIONS(3617), - [sym_comment] = ACTIONS(53), - }, - [1111] = { - [sym_concatenation] = STATE(1155), - [sym_string] = STATE(1543), - [sym_simple_expansion] = STATE(1543), - [sym_string_expansion] = STATE(1543), - [sym_expansion] = STATE(1543), - [sym_command_substitution] = STATE(1543), - [sym_process_substitution] = STATE(1543), - [sym__special_characters] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2508), - [sym_raw_string] = ACTIONS(3621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), - [anon_sym_BQUOTE] = ACTIONS(2516), - [anon_sym_LT_LPAREN] = ACTIONS(2518), - [anon_sym_GT_LPAREN] = ACTIONS(2518), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3621), - }, - [1112] = { - [sym_concatenation] = STATE(1159), - [sym_string] = STATE(1545), - [sym_simple_expansion] = STATE(1545), - [sym_string_expansion] = STATE(1545), - [sym_expansion] = STATE(1545), - [sym_command_substitution] = STATE(1545), - [sym_process_substitution] = STATE(1545), - [sym__special_characters] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2508), - [sym_raw_string] = ACTIONS(3625), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), - [anon_sym_BQUOTE] = ACTIONS(2516), - [anon_sym_LT_LPAREN] = ACTIONS(2518), - [anon_sym_GT_LPAREN] = ACTIONS(2518), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3625), - }, - [1113] = { - [sym_file_redirect] = STATE(1546), - [sym_heredoc_redirect] = STATE(1546), - [sym_herestring_redirect] = STATE(1546), - [aux_sym_while_statement_repeat1] = STATE(1546), - [sym_file_descriptor] = ACTIONS(2390), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_RPAREN] = ACTIONS(2526), - [anon_sym_SEMI_SEMI] = ACTIONS(2526), - [anon_sym_PIPE_AMP] = ACTIONS(2526), - [anon_sym_AMP_AMP] = ACTIONS(2526), - [anon_sym_PIPE_PIPE] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2392), - [anon_sym_GT] = ACTIONS(2392), - [anon_sym_GT_GT] = ACTIONS(2392), - [anon_sym_AMP_GT] = ACTIONS(2392), - [anon_sym_AMP_GT_GT] = ACTIONS(2392), - [anon_sym_LT_AMP] = ACTIONS(2392), - [anon_sym_GT_AMP] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(1367), - [anon_sym_LT_LT_DASH] = ACTIONS(1367), - [anon_sym_LT_LT_LT] = ACTIONS(2394), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2526), - [anon_sym_LF] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - }, - [1114] = { - [aux_sym_concatenation_repeat1] = STATE(651), - [sym__concat] = ACTIONS(587), - [sym_variable_name] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_RPAREN] = ACTIONS(1149), - [anon_sym_SEMI_SEMI] = ACTIONS(1149), - [anon_sym_PIPE_AMP] = ACTIONS(1149), - [anon_sym_AMP_AMP] = ACTIONS(1149), - [anon_sym_PIPE_PIPE] = ACTIONS(1149), - [sym__special_characters] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [anon_sym_DOLLAR] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1149), - [anon_sym_BQUOTE] = ACTIONS(1149), - [anon_sym_LT_LPAREN] = ACTIONS(1149), - [anon_sym_GT_LPAREN] = ACTIONS(1149), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1149), - [sym_word] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym_LF] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1149), - }, - [1115] = { - [aux_sym_concatenation_repeat1] = STATE(651), - [sym__concat] = ACTIONS(587), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1125), - [anon_sym_SEMI_SEMI] = ACTIONS(1125), - [anon_sym_PIPE_AMP] = ACTIONS(1125), - [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1125), - [sym__special_characters] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), - [anon_sym_BQUOTE] = ACTIONS(1125), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), - [sym_word] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LF] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - }, - [1116] = { - [aux_sym_concatenation_repeat1] = STATE(1116), - [sym__concat] = ACTIONS(2577), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [1117] = { - [aux_sym_concatenation_repeat1] = STATE(1117), - [sym__concat] = ACTIONS(2622), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [1118] = { - [sym_file_redirect] = STATE(1435), - [sym_file_descriptor] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(2380), - [anon_sym_SEMI_SEMI] = ACTIONS(2380), - [anon_sym_PIPE_AMP] = ACTIONS(2380), - [anon_sym_AMP_AMP] = ACTIONS(2380), - [anon_sym_PIPE_PIPE] = ACTIONS(2380), - [anon_sym_LT] = ACTIONS(2388), - [anon_sym_GT] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2388), - [anon_sym_AMP_GT] = ACTIONS(2388), - [anon_sym_AMP_GT_GT] = ACTIONS(2388), - [anon_sym_LT_AMP] = ACTIONS(2388), - [anon_sym_GT_AMP] = ACTIONS(2388), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_LF] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2380), - }, - [1119] = { - [aux_sym_concatenation_repeat1] = STATE(1121), - [sym__simple_heredoc_body] = ACTIONS(1105), - [sym__heredoc_body_beginning] = ACTIONS(1105), - [sym_file_descriptor] = ACTIONS(1105), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1107), - [anon_sym_SEMI_SEMI] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_AMP_GT] = ACTIONS(1107), - [anon_sym_AMP_GT_GT] = ACTIONS(1107), - [anon_sym_LT_AMP] = ACTIONS(1107), - [anon_sym_GT_AMP] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_LT_LT_DASH] = ACTIONS(1107), - [anon_sym_LT_LT_LT] = ACTIONS(1107), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - }, - [1120] = { - [aux_sym_concatenation_repeat1] = STATE(1121), - [sym__simple_heredoc_body] = ACTIONS(1109), - [sym__heredoc_body_beginning] = ACTIONS(1109), - [sym_file_descriptor] = ACTIONS(1109), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(1111), - [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(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_LF] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1111), - }, - [1121] = { - [aux_sym_concatenation_repeat1] = STATE(1547), - [sym__simple_heredoc_body] = ACTIONS(705), - [sym__heredoc_body_beginning] = ACTIONS(705), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(707), - [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(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(707), - [anon_sym_LT_AMP] = ACTIONS(707), - [anon_sym_GT_AMP] = ACTIONS(707), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_LT_LT_DASH] = ACTIONS(707), - [anon_sym_LT_LT_LT] = ACTIONS(707), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [1122] = { - [anon_sym_esac] = ACTIONS(3627), - [anon_sym_PIPE] = ACTIONS(3627), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_SEMI_SEMI] = ACTIONS(3627), - [anon_sym_PIPE_AMP] = ACTIONS(3627), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3627), - [anon_sym_LF] = ACTIONS(3629), - [anon_sym_AMP] = ACTIONS(3627), - }, - [1123] = { - [sym_file_redirect] = STATE(667), - [sym_heredoc_redirect] = STATE(667), - [sym_heredoc_body] = STATE(1451), - [sym_herestring_redirect] = STATE(667), - [aux_sym_while_statement_repeat1] = STATE(667), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_RPAREN] = ACTIONS(3353), - [anon_sym_SEMI_SEMI] = ACTIONS(3353), - [anon_sym_PIPE_AMP] = ACTIONS(3353), - [anon_sym_AMP_AMP] = ACTIONS(3353), - [anon_sym_PIPE_PIPE] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(491), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_LF] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3353), - }, - [1124] = { - [sym_file_descriptor] = ACTIONS(2167), - [sym_variable_name] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2167), - [anon_sym_PIPE_AMP] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2167), - [anon_sym_PIPE_PIPE] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2167), - [anon_sym_AMP_GT] = ACTIONS(2169), - [anon_sym_AMP_GT_GT] = ACTIONS(2167), - [anon_sym_LT_AMP] = ACTIONS(2167), - [anon_sym_GT_AMP] = ACTIONS(2167), - [sym__special_characters] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_DOLLAR] = ACTIONS(2169), - [sym_raw_string] = ACTIONS(2167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2167), - [anon_sym_BQUOTE] = ACTIONS(2167), - [anon_sym_LT_LPAREN] = ACTIONS(2167), - [anon_sym_GT_LPAREN] = ACTIONS(2167), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2167), - }, - [1125] = { - [sym_concatenation] = STATE(1031), - [sym_string] = STATE(571), - [sym_simple_expansion] = STATE(571), - [sym_string_expansion] = STATE(571), - [sym_expansion] = STATE(571), - [sym_command_substitution] = STATE(571), - [sym_process_substitution] = STATE(571), - [aux_sym_for_statement_repeat1] = STATE(1031), - [anon_sym_RPAREN] = ACTIONS(3631), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1135), - }, - [1126] = { - [aux_sym_concatenation_repeat1] = STATE(1126), - [sym__concat] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_EQ_TILDE] = ACTIONS(1672), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1672), - }, - [1127] = { - [sym__concat] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_RBRACK] = ACTIONS(2756), - [anon_sym_EQ_TILDE] = ACTIONS(2756), - [anon_sym_EQ_EQ] = ACTIONS(2756), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_GT] = ACTIONS(2756), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2756), - }, - [1128] = { - [sym__concat] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_RBRACK] = ACTIONS(2770), - [anon_sym_EQ_TILDE] = ACTIONS(2770), - [anon_sym_EQ_EQ] = ACTIONS(2770), - [anon_sym_EQ] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2770), - [anon_sym_GT] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2770), - }, - [1129] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3633), - [sym_comment] = ACTIONS(53), - }, - [1130] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3635), - [sym_comment] = ACTIONS(53), - }, - [1131] = { - [anon_sym_RBRACE] = ACTIONS(3635), - [sym_comment] = ACTIONS(53), - }, - [1132] = { - [sym_concatenation] = STATE(1552), - [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), - [aux_sym_expansion_repeat1] = STATE(1552), - [anon_sym_RBRACE] = ACTIONS(3637), - [anon_sym_EQ] = ACTIONS(3639), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [anon_sym_COLON_DASH] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1133] = { - [sym__concat] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_RBRACK] = ACTIONS(2852), - [anon_sym_EQ_TILDE] = ACTIONS(2852), - [anon_sym_EQ_EQ] = ACTIONS(2852), - [anon_sym_EQ] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_GT] = ACTIONS(2852), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2852), - }, - [1134] = { - [sym_concatenation] = STATE(1555), - [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), - [anon_sym_RBRACE] = ACTIONS(3635), - [sym__special_characters] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(3645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3645), - }, - [1135] = { - [sym__concat] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_RBRACK] = ACTIONS(2895), - [anon_sym_EQ_TILDE] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2895), - [anon_sym_EQ] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2895), - }, - [1136] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3647), - }, - [1137] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3649), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_word] = ACTIONS(55), }, [1138] = { - [sym__concat] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [anon_sym_RBRACK] = ACTIONS(2903), - [anon_sym_EQ_TILDE] = ACTIONS(2903), - [anon_sym_EQ_EQ] = ACTIONS(2903), - [anon_sym_EQ] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_BANG_EQ] = ACTIONS(2903), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2903), + [sym__simple_heredoc_body] = ACTIONS(3767), + [sym__heredoc_body_beginning] = ACTIONS(3767), + [sym_file_descriptor] = ACTIONS(3767), + [anon_sym_esac] = ACTIONS(3769), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_RPAREN] = ACTIONS(3769), + [anon_sym_SEMI_SEMI] = ACTIONS(3769), + [anon_sym_PIPE_AMP] = ACTIONS(3769), + [anon_sym_AMP_AMP] = ACTIONS(3769), + [anon_sym_PIPE_PIPE] = ACTIONS(3769), + [anon_sym_LT] = ACTIONS(3769), + [anon_sym_GT] = ACTIONS(3769), + [anon_sym_GT_GT] = ACTIONS(3769), + [anon_sym_AMP_GT] = ACTIONS(3769), + [anon_sym_AMP_GT_GT] = ACTIONS(3769), + [anon_sym_LT_AMP] = ACTIONS(3769), + [anon_sym_GT_AMP] = ACTIONS(3769), + [anon_sym_LT_LT] = ACTIONS(3769), + [anon_sym_LT_LT_DASH] = ACTIONS(3769), + [anon_sym_LT_LT_LT] = ACTIONS(3769), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3769), + [anon_sym_LF] = ACTIONS(3767), + [anon_sym_AMP] = ACTIONS(3769), }, [1139] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3651), + [sym__terminated_statement] = STATE(1139), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1139), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(1043), + [sym_variable_name] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_done] = ACTIONS(3771), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_function] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_typeset] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_readonly] = ACTIONS(1078), + [anon_sym_local] = ACTIONS(1078), + [anon_sym_unset] = ACTIONS(1081), + [anon_sym_unsetenv] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1084), + [anon_sym_GT_GT] = ACTIONS(1087), + [anon_sym_AMP_GT] = ACTIONS(1084), + [anon_sym_AMP_GT_GT] = ACTIONS(1087), + [anon_sym_LT_AMP] = ACTIONS(1087), + [anon_sym_GT_AMP] = ACTIONS(1087), + [sym__special_characters] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1096), + [sym_raw_string] = ACTIONS(1099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1111), + [anon_sym_GT_LPAREN] = ACTIONS(1111), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1114), }, [1140] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_esac] = ACTIONS(3773), + [anon_sym_PIPE] = ACTIONS(3773), + [anon_sym_RPAREN] = ACTIONS(3773), + [anon_sym_SEMI_SEMI] = ACTIONS(3773), + [anon_sym_PIPE_AMP] = ACTIONS(3773), + [anon_sym_AMP_AMP] = ACTIONS(3773), + [anon_sym_PIPE_PIPE] = ACTIONS(3773), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3773), + [anon_sym_LF] = ACTIONS(3775), + [anon_sym_AMP] = ACTIONS(3773), }, [1141] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3655), + [anon_sym_then] = ACTIONS(3777), + [sym_comment] = ACTIONS(53), }, [1142] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__terminated_statement] = STATE(1629), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1629), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(3779), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [1143] = { - [sym_concatenation] = STATE(1562), - [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), - [aux_sym_expansion_repeat1] = STATE(1562), - [anon_sym_RBRACE] = ACTIONS(3657), - [anon_sym_EQ] = ACTIONS(3659), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3659), - [anon_sym_COLON_QMARK] = ACTIONS(3659), - [anon_sym_COLON_DASH] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_esac] = ACTIONS(3781), + [anon_sym_PIPE] = ACTIONS(3781), + [anon_sym_RPAREN] = ACTIONS(3781), + [anon_sym_SEMI_SEMI] = ACTIONS(3781), + [anon_sym_PIPE_AMP] = ACTIONS(3781), + [anon_sym_AMP_AMP] = ACTIONS(3781), + [anon_sym_PIPE_PIPE] = ACTIONS(3781), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3781), + [anon_sym_LF] = ACTIONS(3783), + [anon_sym_AMP] = ACTIONS(3781), }, [1144] = { - [sym__concat] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [anon_sym_RBRACK] = ACTIONS(2919), - [anon_sym_EQ_TILDE] = ACTIONS(2919), - [anon_sym_EQ_EQ] = ACTIONS(2919), - [anon_sym_EQ] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_BANG_EQ] = ACTIONS(2919), + [anon_sym_fi] = ACTIONS(3785), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2919), }, [1145] = { - [sym_concatenation] = STATE(1564), - [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), - [aux_sym_expansion_repeat1] = STATE(1564), - [anon_sym_RBRACE] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3665), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3667), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_DASH] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__terminated_statement] = STATE(1145), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1145), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(1043), + [sym_variable_name] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_fi] = ACTIONS(3771), + [anon_sym_elif] = ACTIONS(3771), + [anon_sym_else] = ACTIONS(3771), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_function] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_typeset] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_readonly] = ACTIONS(1078), + [anon_sym_local] = ACTIONS(1078), + [anon_sym_unset] = ACTIONS(1081), + [anon_sym_unsetenv] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1084), + [anon_sym_GT_GT] = ACTIONS(1087), + [anon_sym_AMP_GT] = ACTIONS(1084), + [anon_sym_AMP_GT_GT] = ACTIONS(1087), + [anon_sym_LT_AMP] = ACTIONS(1087), + [anon_sym_GT_AMP] = ACTIONS(1087), + [sym__special_characters] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1096), + [sym_raw_string] = ACTIONS(1099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1111), + [anon_sym_GT_LPAREN] = ACTIONS(1111), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1114), }, [1146] = { - [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), - [sym__special_characters] = ACTIONS(3669), - [anon_sym_DQUOTE] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2508), - [sym_raw_string] = ACTIONS(3671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), - [anon_sym_BQUOTE] = ACTIONS(2516), - [anon_sym_LT_LPAREN] = ACTIONS(2518), - [anon_sym_GT_LPAREN] = ACTIONS(2518), + [sym_elif_clause] = STATE(1147), + [sym_else_clause] = STATE(1631), + [aux_sym_if_statement_repeat1] = STATE(1147), + [anon_sym_fi] = ACTIONS(3785), + [anon_sym_elif] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2461), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3671), }, [1147] = { - [aux_sym_concatenation_repeat1] = STATE(1569), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_LT_LT_LT] = ACTIONS(675), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(675), + [sym_elif_clause] = STATE(1147), + [aux_sym_if_statement_repeat1] = STATE(1147), + [anon_sym_fi] = ACTIONS(3787), + [anon_sym_elif] = ACTIONS(3789), + [anon_sym_else] = ACTIONS(3787), + [sym_comment] = ACTIONS(53), }, [1148] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(1572), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_DOLLAR] = ACTIONS(3677), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [anon_sym_esac] = ACTIONS(3792), + [anon_sym_PIPE] = ACTIONS(3792), + [anon_sym_RPAREN] = ACTIONS(3792), + [anon_sym_SEMI_SEMI] = ACTIONS(3792), + [anon_sym_PIPE_AMP] = ACTIONS(3792), + [anon_sym_AMP_AMP] = ACTIONS(3792), + [anon_sym_PIPE_PIPE] = ACTIONS(3792), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3792), + [anon_sym_LF] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3792), }, [1149] = { - [sym_string] = STATE(1574), - [anon_sym_DQUOTE] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(3679), - [sym_raw_string] = ACTIONS(3681), - [anon_sym_POUND] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_AT] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_0] = ACTIONS(3685), - [anon_sym__] = ACTIONS(3685), + [aux_sym_case_item_repeat1] = STATE(1634), + [aux_sym_concatenation_repeat1] = STATE(1635), + [sym__concat] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(3796), + [anon_sym_RPAREN] = ACTIONS(3798), + [sym_comment] = ACTIONS(53), }, [1150] = { - [aux_sym_concatenation_repeat1] = STATE(1569), - [sym_file_descriptor] = ACTIONS(689), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_SEMI_SEMI] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(691), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(691), - [anon_sym_LT_AMP] = ACTIONS(691), - [anon_sym_GT_AMP] = ACTIONS(691), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(691), - [anon_sym_LT_LT_LT] = ACTIONS(691), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LF] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), + [aux_sym_case_item_repeat1] = STATE(1637), + [aux_sym_concatenation_repeat1] = STATE(1635), + [sym__concat] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(3796), + [anon_sym_RPAREN] = ACTIONS(3800), + [sym_comment] = ACTIONS(53), }, [1151] = { - [sym_subscript] = STATE(1580), - [sym_variable_name] = ACTIONS(3687), - [anon_sym_DOLLAR] = ACTIONS(3689), - [anon_sym_POUND] = ACTIONS(3691), - [anon_sym_DASH] = ACTIONS(3689), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3693), - [anon_sym_STAR] = ACTIONS(3689), - [anon_sym_AT] = ACTIONS(3689), - [anon_sym_QMARK] = ACTIONS(3689), - [anon_sym_0] = ACTIONS(3695), - [anon_sym__] = ACTIONS(3695), + [sym__special_characters] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_DOLLAR] = ACTIONS(3804), + [sym_raw_string] = ACTIONS(3802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3802), + [anon_sym_BQUOTE] = ACTIONS(3802), + [anon_sym_LT_LPAREN] = ACTIONS(3802), + [anon_sym_GT_LPAREN] = ACTIONS(3802), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3802), }, [1152] = { - [sym_for_statement] = STATE(1581), - [sym_while_statement] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_case_statement] = STATE(1581), - [sym_function_definition] = STATE(1581), - [sym_subshell] = STATE(1581), - [sym_pipeline] = STATE(1581), - [sym_list] = STATE(1581), - [sym_negated_command] = STATE(1581), - [sym_test_command] = STATE(1581), - [sym_declaration_command] = STATE(1581), - [sym_unset_command] = STATE(1581), - [sym_command] = STATE(1581), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1582), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [anon_sym_esac] = ACTIONS(3806), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), }, [1153] = { - [sym_for_statement] = STATE(1583), - [sym_while_statement] = STATE(1583), - [sym_if_statement] = STATE(1583), - [sym_case_statement] = STATE(1583), - [sym_function_definition] = STATE(1583), - [sym_subshell] = STATE(1583), - [sym_pipeline] = STATE(1583), - [sym_list] = STATE(1583), - [sym_negated_command] = STATE(1583), - [sym_test_command] = STATE(1583), - [sym_declaration_command] = STATE(1583), - [sym_unset_command] = STATE(1583), - [sym_command] = STATE(1583), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(1584), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [aux_sym_case_item_repeat1] = STATE(1637), + [anon_sym_PIPE] = ACTIONS(3796), + [anon_sym_RPAREN] = ACTIONS(3800), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), }, [1154] = { - [sym_for_statement] = STATE(1585), - [sym_while_statement] = STATE(1585), - [sym_if_statement] = STATE(1585), - [sym_case_statement] = STATE(1585), - [sym_function_definition] = STATE(1585), - [sym_subshell] = STATE(1585), - [sym_pipeline] = STATE(1585), - [sym_list] = STATE(1585), - [sym_negated_command] = STATE(1585), - [sym_test_command] = STATE(1585), - [sym_declaration_command] = STATE(1585), - [sym_unset_command] = STATE(1585), - [sym_command] = STATE(1585), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1586), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(1639), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1640), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(2467), }, [1155] = { - [sym_file_descriptor] = ACTIONS(689), - [anon_sym_esac] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(691), - [anon_sym_SEMI_SEMI] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(691), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(691), - [anon_sym_LT_AMP] = ACTIONS(691), - [anon_sym_GT_AMP] = ACTIONS(691), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(691), - [anon_sym_LT_LT_LT] = ACTIONS(691), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LF] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(1639), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1642), + [anon_sym_esac] = ACTIONS(3808), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2469), }, [1156] = { - [sym_file_descriptor] = ACTIONS(2094), - [anon_sym_esac] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2096), - [anon_sym_SEMI_SEMI] = ACTIONS(2096), - [anon_sym_PIPE_AMP] = ACTIONS(2096), - [anon_sym_AMP_AMP] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_AMP_GT] = ACTIONS(2096), - [anon_sym_AMP_GT_GT] = ACTIONS(2096), - [anon_sym_LT_AMP] = ACTIONS(2096), - [anon_sym_GT_AMP] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_LT_LT_DASH] = ACTIONS(2096), - [anon_sym_LT_LT_LT] = ACTIONS(2096), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LF] = ACTIONS(2094), - [anon_sym_AMP] = ACTIONS(2096), + [sym__concat] = ACTIONS(2920), + [anon_sym_in] = ACTIONS(2922), + [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [sym__special_characters] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), + [anon_sym_BQUOTE] = ACTIONS(2922), + [anon_sym_LT_LPAREN] = ACTIONS(2922), + [anon_sym_GT_LPAREN] = ACTIONS(2922), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2922), }, [1157] = { - [aux_sym_concatenation_repeat1] = STATE(1569), - [sym_file_descriptor] = ACTIONS(2098), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SEMI_SEMI] = ACTIONS(2100), - [anon_sym_PIPE_AMP] = ACTIONS(2100), - [anon_sym_AMP_AMP] = ACTIONS(2100), - [anon_sym_PIPE_PIPE] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2100), - [anon_sym_AMP_GT] = ACTIONS(2100), - [anon_sym_AMP_GT_GT] = ACTIONS(2100), - [anon_sym_LT_AMP] = ACTIONS(2100), - [anon_sym_GT_AMP] = ACTIONS(2100), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_LT_LT_DASH] = ACTIONS(2100), - [anon_sym_LT_LT_LT] = ACTIONS(2100), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_LF] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_esac] = ACTIONS(3810), + [anon_sym_PIPE] = ACTIONS(3810), + [anon_sym_RPAREN] = ACTIONS(3810), + [anon_sym_SEMI_SEMI] = ACTIONS(3810), + [anon_sym_PIPE_AMP] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3810), + [anon_sym_PIPE_PIPE] = ACTIONS(3810), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3810), + [anon_sym_LF] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3810), }, [1158] = { - [aux_sym_concatenation_repeat1] = STATE(1569), - [sym_file_descriptor] = ACTIONS(2102), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_SEMI_SEMI] = ACTIONS(2104), - [anon_sym_PIPE_AMP] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2104), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2104), - [anon_sym_LT_AMP] = ACTIONS(2104), - [anon_sym_GT_AMP] = ACTIONS(2104), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2104), - [anon_sym_LT_LT_LT] = ACTIONS(2104), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_LF] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2104), + [anon_sym_esac] = ACTIONS(3814), + [sym_comment] = ACTIONS(53), }, [1159] = { - [sym_file_descriptor] = ACTIONS(2102), - [anon_sym_esac] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_SEMI_SEMI] = ACTIONS(2104), - [anon_sym_PIPE_AMP] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2104), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2104), - [anon_sym_LT_AMP] = ACTIONS(2104), - [anon_sym_GT_AMP] = ACTIONS(2104), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2104), - [anon_sym_LT_LT_LT] = ACTIONS(2104), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_LF] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2104), + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(1644), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1640), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2467), }, [1160] = { - [sym_file_redirect] = STATE(1160), - [sym_heredoc_redirect] = STATE(1160), - [sym_herestring_redirect] = STATE(1160), - [aux_sym_while_statement_repeat1] = STATE(1160), - [sym_file_descriptor] = ACTIONS(3697), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_SEMI_SEMI] = ACTIONS(2115), - [anon_sym_PIPE_AMP] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_GT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3700), - [anon_sym_AMP_GT] = ACTIONS(3700), - [anon_sym_AMP_GT_GT] = ACTIONS(3700), - [anon_sym_LT_AMP] = ACTIONS(3700), - [anon_sym_GT_AMP] = ACTIONS(3700), - [anon_sym_LT_LT] = ACTIONS(3703), - [anon_sym_LT_LT_DASH] = ACTIONS(3703), - [anon_sym_LT_LT_LT] = ACTIONS(3706), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_LF] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2115), + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(1644), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1646), + [anon_sym_esac] = ACTIONS(3816), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2469), }, [1161] = { - [sym__concat] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2756), - [anon_sym_EQ_TILDE] = ACTIONS(2756), - [anon_sym_EQ_EQ] = ACTIONS(2756), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_GT] = ACTIONS(2756), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2756), + [sym__concat] = ACTIONS(2934), + [anon_sym_in] = ACTIONS(2936), + [anon_sym_SEMI_SEMI] = ACTIONS(2936), + [sym__special_characters] = ACTIONS(2936), + [anon_sym_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2936), + [sym_raw_string] = ACTIONS(2936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), + [anon_sym_BQUOTE] = ACTIONS(2936), + [anon_sym_LT_LPAREN] = ACTIONS(2936), + [anon_sym_GT_LPAREN] = ACTIONS(2936), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_LF] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2936), }, [1162] = { - [sym__concat] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2770), - [anon_sym_EQ_TILDE] = ACTIONS(2770), - [anon_sym_EQ_EQ] = ACTIONS(2770), - [anon_sym_EQ] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2770), - [anon_sym_GT] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(3818), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2770), }, [1163] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3709), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(3820), [sym_comment] = ACTIONS(53), }, [1164] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3820), [sym_comment] = ACTIONS(53), }, [1165] = { - [anon_sym_RBRACE] = ACTIONS(3711), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1650), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1650), + [anon_sym_RBRACE] = ACTIONS(3822), + [anon_sym_EQ] = ACTIONS(3824), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(3824), + [anon_sym_COLON_QMARK] = ACTIONS(3824), + [anon_sym_COLON_DASH] = ACTIONS(3824), + [anon_sym_PERCENT] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1166] = { - [sym_concatenation] = STATE(1590), - [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), - [aux_sym_expansion_repeat1] = STATE(1590), - [anon_sym_RBRACE] = ACTIONS(3713), - [anon_sym_EQ] = ACTIONS(3715), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3717), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3715), - [anon_sym_COLON_QMARK] = ACTIONS(3715), - [anon_sym_COLON_DASH] = ACTIONS(3715), - [anon_sym_PERCENT] = ACTIONS(3715), - [anon_sym_DASH] = ACTIONS(3715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(3016), + [anon_sym_in] = ACTIONS(3018), + [anon_sym_SEMI_SEMI] = ACTIONS(3018), + [sym__special_characters] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), + [anon_sym_BQUOTE] = ACTIONS(3018), + [anon_sym_LT_LPAREN] = ACTIONS(3018), + [anon_sym_GT_LPAREN] = ACTIONS(3018), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3018), }, [1167] = { - [sym__concat] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2852), - [anon_sym_EQ_TILDE] = ACTIONS(2852), - [anon_sym_EQ_EQ] = ACTIONS(2852), - [anon_sym_EQ] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_GT] = ACTIONS(2852), - [anon_sym_BANG_EQ] = ACTIONS(2852), + [sym_concatenation] = STATE(1653), + [sym_string] = STATE(1652), + [sym_simple_expansion] = STATE(1652), + [sym_string_expansion] = STATE(1652), + [sym_expansion] = STATE(1652), + [sym_command_substitution] = STATE(1652), + [sym_process_substitution] = STATE(1652), + [anon_sym_RBRACE] = ACTIONS(3820), + [sym__special_characters] = ACTIONS(3828), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(3830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2852), + [sym_word] = ACTIONS(3830), }, [1168] = { - [sym_concatenation] = STATE(1593), - [sym_string] = STATE(1592), - [sym_simple_expansion] = STATE(1592), - [sym_string_expansion] = STATE(1592), - [sym_expansion] = STATE(1592), - [sym_command_substitution] = STATE(1592), - [sym_process_substitution] = STATE(1592), - [anon_sym_RBRACE] = ACTIONS(3711), - [sym__special_characters] = ACTIONS(3719), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(3721), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3721), + [sym__concat] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(3061), + [anon_sym_SEMI_SEMI] = ACTIONS(3061), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), + [anon_sym_BQUOTE] = ACTIONS(3061), + [anon_sym_LT_LPAREN] = ACTIONS(3061), + [anon_sym_GT_LPAREN] = ACTIONS(3061), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), }, [1169] = { - [sym__concat] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2895), - [anon_sym_EQ_TILDE] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2895), - [anon_sym_EQ] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2895), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3832), }, [1170] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3723), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3834), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1171] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3725), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3069), + [anon_sym_SEMI_SEMI] = ACTIONS(3069), + [sym__special_characters] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), + [anon_sym_BQUOTE] = ACTIONS(3069), + [anon_sym_LT_LPAREN] = ACTIONS(3069), + [anon_sym_GT_LPAREN] = ACTIONS(3069), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3069), }, [1172] = { - [sym__concat] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2903), - [anon_sym_EQ_TILDE] = ACTIONS(2903), - [anon_sym_EQ_EQ] = ACTIONS(2903), - [anon_sym_EQ] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_BANG_EQ] = ACTIONS(2903), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2903), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3836), }, [1173] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3727), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3838), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1174] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3729), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3840), }, [1175] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3731), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3820), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1176] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3711), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(1660), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1660), + [anon_sym_RBRACE] = ACTIONS(3842), + [anon_sym_EQ] = ACTIONS(3844), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(3844), + [anon_sym_COLON_QMARK] = ACTIONS(3844), + [anon_sym_COLON_DASH] = ACTIONS(3844), + [anon_sym_PERCENT] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1177] = { - [sym_concatenation] = STATE(1600), - [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), - [aux_sym_expansion_repeat1] = STATE(1600), - [anon_sym_RBRACE] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3735), - [anon_sym_COLON_QMARK] = ACTIONS(3735), - [anon_sym_COLON_DASH] = ACTIONS(3735), - [anon_sym_PERCENT] = ACTIONS(3735), - [anon_sym_DASH] = ACTIONS(3735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(3083), + [anon_sym_in] = ACTIONS(3085), + [anon_sym_SEMI_SEMI] = ACTIONS(3085), + [sym__special_characters] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), + [anon_sym_BQUOTE] = ACTIONS(3085), + [anon_sym_LT_LPAREN] = ACTIONS(3085), + [anon_sym_GT_LPAREN] = ACTIONS(3085), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), }, [1178] = { - [sym__concat] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_EQ_TILDE] = ACTIONS(2919), - [anon_sym_EQ_EQ] = ACTIONS(2919), - [anon_sym_EQ] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_BANG_EQ] = ACTIONS(2919), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2919), + [sym_concatenation] = STATE(1662), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1662), + [anon_sym_RBRACE] = ACTIONS(3848), + [anon_sym_EQ] = ACTIONS(3850), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(3850), + [anon_sym_COLON_QMARK] = ACTIONS(3850), + [anon_sym_COLON_DASH] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1179] = { - [sym_concatenation] = STATE(1602), - [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), - [aux_sym_expansion_repeat1] = STATE(1602), - [anon_sym_RBRACE] = ACTIONS(3739), - [anon_sym_EQ] = ACTIONS(3741), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3741), - [anon_sym_COLON_QMARK] = ACTIONS(3741), - [anon_sym_COLON_DASH] = ACTIONS(3741), - [anon_sym_PERCENT] = ACTIONS(3741), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_redirect] = STATE(1663), + [sym_file_descriptor] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(3854), + [anon_sym_SEMI_SEMI] = ACTIONS(3854), + [anon_sym_PIPE_AMP] = ACTIONS(3854), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3854), + [anon_sym_LT] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_GT_GT] = ACTIONS(1337), + [anon_sym_AMP_GT] = ACTIONS(1337), + [anon_sym_AMP_GT_GT] = ACTIONS(1337), + [anon_sym_LT_AMP] = ACTIONS(1337), + [anon_sym_GT_AMP] = ACTIONS(1337), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3854), + [anon_sym_LF] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), }, [1180] = { - [sym_variable_name] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2169), - [anon_sym_SEMI_SEMI] = ACTIONS(2169), - [anon_sym_PIPE_AMP] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [sym__special_characters] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2169), - [sym_raw_string] = ACTIONS(2169), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2169), - [anon_sym_BQUOTE] = ACTIONS(2169), - [anon_sym_LT_LPAREN] = ACTIONS(2169), - [anon_sym_GT_LPAREN] = ACTIONS(2169), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2169), - [sym_word] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_LF] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2169), + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(997), + [sym_raw_string] = ACTIONS(995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), + [anon_sym_BQUOTE] = ACTIONS(995), + [anon_sym_LT_LPAREN] = ACTIONS(995), + [anon_sym_GT_LPAREN] = ACTIONS(995), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(997), }, [1181] = { - [sym_concatenation] = STATE(1031), - [sym_string] = STATE(571), - [sym_simple_expansion] = STATE(571), - [sym_string_expansion] = STATE(571), - [sym_expansion] = STATE(571), - [sym_command_substitution] = STATE(571), - [sym_process_substitution] = STATE(571), - [aux_sym_for_statement_repeat1] = STATE(1031), - [anon_sym_RPAREN] = ACTIONS(3745), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1135), + [sym_file_descriptor] = ACTIONS(3858), + [anon_sym_esac] = ACTIONS(3860), + [anon_sym_PIPE] = ACTIONS(3860), + [anon_sym_RPAREN] = ACTIONS(3860), + [anon_sym_SEMI_SEMI] = ACTIONS(3860), + [anon_sym_PIPE_AMP] = ACTIONS(3860), + [anon_sym_AMP_AMP] = ACTIONS(3860), + [anon_sym_PIPE_PIPE] = ACTIONS(3860), + [anon_sym_LT] = ACTIONS(3860), + [anon_sym_GT] = ACTIONS(3860), + [anon_sym_GT_GT] = ACTIONS(3860), + [anon_sym_AMP_GT] = ACTIONS(3860), + [anon_sym_AMP_GT_GT] = ACTIONS(3860), + [anon_sym_LT_AMP] = ACTIONS(3860), + [anon_sym_GT_AMP] = ACTIONS(3860), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3860), + [anon_sym_LF] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3860), }, [1182] = { - [sym__concat] = ACTIONS(2756), - [sym_variable_name] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_SEMI_SEMI] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [sym__special_characters] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), - [anon_sym_LT_LPAREN] = ACTIONS(2758), - [anon_sym_GT_LPAREN] = ACTIONS(2758), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), - [sym_word] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2758), + [sym__terminated_statement] = STATE(1182), + [sym_for_statement] = STATE(680), + [sym_c_style_for_statement] = STATE(680), + [sym_while_statement] = STATE(680), + [sym_if_statement] = STATE(680), + [sym_case_statement] = STATE(680), + [sym_function_definition] = STATE(680), + [sym_subshell] = STATE(680), + [sym_pipeline] = STATE(680), + [sym_list] = STATE(680), + [sym_negated_command] = STATE(680), + [sym_test_command] = STATE(680), + [sym_declaration_command] = STATE(680), + [sym_unset_command] = STATE(680), + [sym_command] = STATE(680), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(681), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1182), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(1043), + [sym_variable_name] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_function] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_typeset] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_readonly] = ACTIONS(1078), + [anon_sym_local] = ACTIONS(1078), + [anon_sym_unset] = ACTIONS(1081), + [anon_sym_unsetenv] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1084), + [anon_sym_GT_GT] = ACTIONS(1087), + [anon_sym_AMP_GT] = ACTIONS(1084), + [anon_sym_AMP_GT_GT] = ACTIONS(1087), + [anon_sym_LT_AMP] = ACTIONS(1087), + [anon_sym_GT_AMP] = ACTIONS(1087), + [sym__special_characters] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1096), + [sym_raw_string] = ACTIONS(1099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1111), + [anon_sym_GT_LPAREN] = ACTIONS(1111), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1114), }, [1183] = { - [sym__concat] = ACTIONS(2770), - [sym_variable_name] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_SEMI_SEMI] = ACTIONS(2772), - [anon_sym_PIPE_AMP] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [sym__special_characters] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), - [anon_sym_BQUOTE] = ACTIONS(2772), - [anon_sym_LT_LPAREN] = ACTIONS(2772), - [anon_sym_GT_LPAREN] = ACTIONS(2772), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2772), - [sym_word] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), + [sym_concatenation] = STATE(1666), + [sym_string] = STATE(1665), + [sym_simple_expansion] = STATE(1665), + [sym_string_expansion] = STATE(1665), + [sym_expansion] = STATE(1665), + [sym_command_substitution] = STATE(1665), + [sym_process_substitution] = STATE(1665), + [sym__special_characters] = ACTIONS(3862), + [anon_sym_DQUOTE] = ACTIONS(665), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(3864), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1633), + [anon_sym_LT_LPAREN] = ACTIONS(1635), + [anon_sym_GT_LPAREN] = ACTIONS(1635), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3864), }, [1184] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1667), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = 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), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(701), }, [1185] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3749), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1667), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(717), + [anon_sym_PIPE_PIPE] = ACTIONS(717), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), }, [1186] = { - [anon_sym_RBRACE] = ACTIONS(3749), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(717), + [anon_sym_PIPE_PIPE] = ACTIONS(717), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), }, [1187] = { - [sym_concatenation] = STATE(1607), - [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), - [aux_sym_expansion_repeat1] = STATE(1607), - [anon_sym_RBRACE] = ACTIONS(3751), - [anon_sym_EQ] = ACTIONS(3753), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3753), - [anon_sym_COLON_QMARK] = ACTIONS(3753), - [anon_sym_COLON_DASH] = ACTIONS(3753), - [anon_sym_PERCENT] = ACTIONS(3753), - [anon_sym_DASH] = ACTIONS(3753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(1668), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(1175), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, [1188] = { - [sym__concat] = ACTIONS(2852), - [sym_variable_name] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2854), - [anon_sym_SEMI_SEMI] = ACTIONS(2854), - [anon_sym_PIPE_AMP] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [sym__special_characters] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), - [anon_sym_BQUOTE] = ACTIONS(2854), - [anon_sym_LT_LPAREN] = ACTIONS(2854), - [anon_sym_GT_LPAREN] = ACTIONS(2854), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2854), - [sym_word] = ACTIONS(2854), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), + [sym_file_redirect] = STATE(709), + [sym_heredoc_redirect] = STATE(709), + [sym_heredoc_body] = STATE(1140), + [sym_herestring_redirect] = STATE(709), + [aux_sym_while_statement_repeat1] = STATE(709), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_SEMI_SEMI] = ACTIONS(2445), + [anon_sym_PIPE_AMP] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(515), + [anon_sym_AMP_GT_GT] = ACTIONS(515), + [anon_sym_LT_AMP] = ACTIONS(515), + [anon_sym_GT_AMP] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(517), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2445), }, [1189] = { - [sym_concatenation] = STATE(1610), - [sym_string] = STATE(1609), - [sym_simple_expansion] = STATE(1609), - [sym_string_expansion] = STATE(1609), - [sym_expansion] = STATE(1609), - [sym_command_substitution] = STATE(1609), - [sym_process_substitution] = STATE(1609), - [anon_sym_RBRACE] = ACTIONS(3749), - [sym__special_characters] = ACTIONS(3757), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(3759), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_compound_statement] = STATE(1669), + [anon_sym_LBRACE] = ACTIONS(483), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3759), }, [1190] = { - [sym__concat] = ACTIONS(2895), - [sym_variable_name] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_SEMI_SEMI] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), - [sym_word] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_GT_GT] = ACTIONS(3868), + [anon_sym_AMP_GT] = ACTIONS(3866), + [anon_sym_AMP_GT_GT] = ACTIONS(3868), + [anon_sym_LT_AMP] = ACTIONS(3868), + [anon_sym_GT_AMP] = ACTIONS(3868), + [sym_comment] = ACTIONS(53), }, [1191] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3761), - }, - [1192] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3763), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1193] = { - [sym__concat] = ACTIONS(2903), - [sym_variable_name] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2905), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [anon_sym_PIPE_AMP] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_PIPE_PIPE] = ACTIONS(2905), - [sym__special_characters] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), - [anon_sym_BQUOTE] = ACTIONS(2905), - [anon_sym_LT_LPAREN] = ACTIONS(2905), - [anon_sym_GT_LPAREN] = ACTIONS(2905), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2905), - [sym_word] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2905), - }, - [1194] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3765), - }, - [1195] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3767), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1196] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3769), - }, - [1197] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3749), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1198] = { - [sym_concatenation] = STATE(1617), - [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), - [aux_sym_expansion_repeat1] = STATE(1617), - [anon_sym_RBRACE] = ACTIONS(3771), - [anon_sym_EQ] = ACTIONS(3773), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3773), - [anon_sym_COLON_QMARK] = ACTIONS(3773), - [anon_sym_COLON_DASH] = ACTIONS(3773), - [anon_sym_PERCENT] = ACTIONS(3773), - [anon_sym_DASH] = ACTIONS(3773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1199] = { - [sym__concat] = ACTIONS(2919), - [sym_variable_name] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_SEMI_SEMI] = ACTIONS(2921), - [anon_sym_PIPE_AMP] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_PIPE_PIPE] = ACTIONS(2921), - [sym__special_characters] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), - [anon_sym_BQUOTE] = ACTIONS(2921), - [anon_sym_LT_LPAREN] = ACTIONS(2921), - [anon_sym_GT_LPAREN] = ACTIONS(2921), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2921), - [sym_word] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2921), - }, - [1200] = { - [sym_concatenation] = STATE(1619), - [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), - [aux_sym_expansion_repeat1] = STATE(1619), - [anon_sym_RBRACE] = ACTIONS(3777), - [anon_sym_EQ] = ACTIONS(3779), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3781), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3779), - [anon_sym_COLON_QMARK] = ACTIONS(3779), - [anon_sym_COLON_DASH] = ACTIONS(3779), - [anon_sym_PERCENT] = ACTIONS(3779), - [anon_sym_DASH] = ACTIONS(3779), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1201] = { - [sym__concat] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_SEMI_SEMI] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [sym__special_characters] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), - [anon_sym_LT_LPAREN] = ACTIONS(2758), - [anon_sym_GT_LPAREN] = ACTIONS(2758), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), - [sym_word] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2758), - }, - [1202] = { - [sym__concat] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_SEMI_SEMI] = ACTIONS(2772), - [anon_sym_PIPE_AMP] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [sym__special_characters] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), - [anon_sym_BQUOTE] = ACTIONS(2772), - [anon_sym_LT_LPAREN] = ACTIONS(2772), - [anon_sym_GT_LPAREN] = ACTIONS(2772), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2772), - [sym_word] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), - }, - [1203] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3783), - [sym_comment] = ACTIONS(53), - }, - [1204] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3785), - [sym_comment] = ACTIONS(53), - }, - [1205] = { - [anon_sym_RBRACE] = ACTIONS(3785), - [sym_comment] = ACTIONS(53), - }, - [1206] = { - [sym_concatenation] = STATE(1623), - [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), - [aux_sym_expansion_repeat1] = STATE(1623), - [anon_sym_RBRACE] = ACTIONS(3787), - [anon_sym_EQ] = ACTIONS(3789), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3791), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3789), - [anon_sym_COLON_QMARK] = ACTIONS(3789), - [anon_sym_COLON_DASH] = ACTIONS(3789), - [anon_sym_PERCENT] = ACTIONS(3789), - [anon_sym_DASH] = ACTIONS(3789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1207] = { - [sym__concat] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2854), - [anon_sym_SEMI_SEMI] = ACTIONS(2854), - [anon_sym_PIPE_AMP] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [sym__special_characters] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), - [anon_sym_BQUOTE] = ACTIONS(2854), - [anon_sym_LT_LPAREN] = ACTIONS(2854), - [anon_sym_GT_LPAREN] = ACTIONS(2854), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2854), - [sym_word] = ACTIONS(2854), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - }, - [1208] = { - [sym_concatenation] = STATE(1626), - [sym_string] = STATE(1625), - [sym_simple_expansion] = STATE(1625), - [sym_string_expansion] = STATE(1625), - [sym_expansion] = STATE(1625), - [sym_command_substitution] = STATE(1625), - [sym_process_substitution] = STATE(1625), - [anon_sym_RBRACE] = ACTIONS(3785), - [sym__special_characters] = ACTIONS(3793), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(3795), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3795), - }, - [1209] = { - [sym__concat] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_SEMI_SEMI] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), - [sym_word] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2897), - }, - [1210] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3797), - }, - [1211] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3799), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1212] = { - [sym__concat] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2905), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [anon_sym_PIPE_AMP] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_PIPE_PIPE] = ACTIONS(2905), - [sym__special_characters] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), - [anon_sym_BQUOTE] = ACTIONS(2905), - [anon_sym_LT_LPAREN] = ACTIONS(2905), - [anon_sym_GT_LPAREN] = ACTIONS(2905), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2905), - [sym_word] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2905), - }, - [1213] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3801), - }, - [1214] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3803), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1215] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3805), - }, - [1216] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3785), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1217] = { - [sym_concatenation] = STATE(1633), - [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), - [aux_sym_expansion_repeat1] = STATE(1633), - [anon_sym_RBRACE] = ACTIONS(3807), - [anon_sym_EQ] = ACTIONS(3809), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3809), - [anon_sym_COLON_QMARK] = ACTIONS(3809), - [anon_sym_COLON_DASH] = ACTIONS(3809), - [anon_sym_PERCENT] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1218] = { - [sym__concat] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_SEMI_SEMI] = ACTIONS(2921), - [anon_sym_PIPE_AMP] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_PIPE_PIPE] = ACTIONS(2921), - [sym__special_characters] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), - [anon_sym_BQUOTE] = ACTIONS(2921), - [anon_sym_LT_LPAREN] = ACTIONS(2921), - [anon_sym_GT_LPAREN] = ACTIONS(2921), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2921), - [sym_word] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2921), - }, - [1219] = { - [sym_concatenation] = STATE(1635), - [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), - [aux_sym_expansion_repeat1] = STATE(1635), - [anon_sym_RBRACE] = ACTIONS(3813), - [anon_sym_EQ] = ACTIONS(3815), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3817), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3815), - [anon_sym_COLON_QMARK] = ACTIONS(3815), - [anon_sym_COLON_DASH] = ACTIONS(3815), - [anon_sym_PERCENT] = ACTIONS(3815), - [anon_sym_DASH] = ACTIONS(3815), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1220] = { - [sym_file_descriptor] = ACTIONS(2756), - [sym__concat] = ACTIONS(2756), - [sym_variable_name] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_PIPE_AMP] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_AMP_GT] = ACTIONS(2758), - [anon_sym_AMP_GT_GT] = ACTIONS(2756), - [anon_sym_LT_AMP] = ACTIONS(2756), - [anon_sym_GT_AMP] = ACTIONS(2756), - [sym__special_characters] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), - [anon_sym_BQUOTE] = ACTIONS(2756), - [anon_sym_LT_LPAREN] = ACTIONS(2756), - [anon_sym_GT_LPAREN] = ACTIONS(2756), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2756), - }, - [1221] = { - [sym_file_descriptor] = ACTIONS(2770), - [sym__concat] = ACTIONS(2770), - [sym_variable_name] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2770), - [anon_sym_PIPE_AMP] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2770), - [anon_sym_AMP_GT] = ACTIONS(2772), - [anon_sym_AMP_GT_GT] = ACTIONS(2770), - [anon_sym_LT_AMP] = ACTIONS(2770), - [anon_sym_GT_AMP] = ACTIONS(2770), - [sym__special_characters] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2770), - [anon_sym_BQUOTE] = ACTIONS(2770), - [anon_sym_LT_LPAREN] = ACTIONS(2770), - [anon_sym_GT_LPAREN] = ACTIONS(2770), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2770), - }, - [1222] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3819), - [sym_comment] = ACTIONS(53), - }, - [1223] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3821), - [sym_comment] = ACTIONS(53), - }, - [1224] = { - [anon_sym_RBRACE] = ACTIONS(3821), - [sym_comment] = ACTIONS(53), - }, - [1225] = { - [sym_concatenation] = STATE(1639), - [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), - [aux_sym_expansion_repeat1] = STATE(1639), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_EQ] = ACTIONS(3825), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3825), - [anon_sym_COLON_QMARK] = ACTIONS(3825), - [anon_sym_COLON_DASH] = ACTIONS(3825), - [anon_sym_PERCENT] = ACTIONS(3825), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1226] = { - [sym_file_descriptor] = ACTIONS(2852), - [sym__concat] = ACTIONS(2852), - [sym_variable_name] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2852), - [anon_sym_PIPE_AMP] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_AMP_GT] = ACTIONS(2854), - [anon_sym_AMP_GT_GT] = ACTIONS(2852), - [anon_sym_LT_AMP] = ACTIONS(2852), - [anon_sym_GT_AMP] = ACTIONS(2852), - [sym__special_characters] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2852), - [anon_sym_BQUOTE] = ACTIONS(2852), - [anon_sym_LT_LPAREN] = ACTIONS(2852), - [anon_sym_GT_LPAREN] = ACTIONS(2852), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2852), - }, - [1227] = { - [sym_concatenation] = STATE(1642), - [sym_string] = STATE(1641), - [sym_simple_expansion] = STATE(1641), - [sym_string_expansion] = STATE(1641), - [sym_expansion] = STATE(1641), - [sym_command_substitution] = STATE(1641), - [sym_process_substitution] = STATE(1641), - [anon_sym_RBRACE] = ACTIONS(3821), - [sym__special_characters] = ACTIONS(3829), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(3831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3831), - }, - [1228] = { - [sym_file_descriptor] = ACTIONS(2895), - [sym__concat] = ACTIONS(2895), - [sym_variable_name] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2895), - [anon_sym_PIPE_AMP] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2897), - [anon_sym_GT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_AMP_GT] = ACTIONS(2897), - [anon_sym_AMP_GT_GT] = ACTIONS(2895), - [anon_sym_LT_AMP] = ACTIONS(2895), - [anon_sym_GT_AMP] = ACTIONS(2895), - [sym__special_characters] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2895), - [anon_sym_BQUOTE] = ACTIONS(2895), - [anon_sym_LT_LPAREN] = ACTIONS(2895), - [anon_sym_GT_LPAREN] = ACTIONS(2895), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2895), - }, - [1229] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3833), - }, - [1230] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3835), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1231] = { - [sym_file_descriptor] = ACTIONS(2903), - [sym__concat] = ACTIONS(2903), - [sym_variable_name] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2903), - [anon_sym_PIPE_AMP] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_GT_GT] = ACTIONS(2903), - [anon_sym_AMP_GT] = ACTIONS(2905), - [anon_sym_AMP_GT_GT] = ACTIONS(2903), - [anon_sym_LT_AMP] = ACTIONS(2903), - [anon_sym_GT_AMP] = ACTIONS(2903), - [sym__special_characters] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2903), - [anon_sym_BQUOTE] = ACTIONS(2903), - [anon_sym_LT_LPAREN] = ACTIONS(2903), - [anon_sym_GT_LPAREN] = ACTIONS(2903), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2903), - }, - [1232] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3837), - }, - [1233] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3839), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1234] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3841), - }, - [1235] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3821), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1236] = { - [sym_concatenation] = STATE(1649), - [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), - [aux_sym_expansion_repeat1] = STATE(1649), - [anon_sym_RBRACE] = ACTIONS(3843), - [anon_sym_EQ] = ACTIONS(3845), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3847), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_COLON_QMARK] = ACTIONS(3845), - [anon_sym_COLON_DASH] = ACTIONS(3845), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1237] = { - [sym_file_descriptor] = ACTIONS(2919), - [sym__concat] = ACTIONS(2919), - [sym_variable_name] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2919), - [anon_sym_PIPE_AMP] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_AMP_GT] = ACTIONS(2921), - [anon_sym_AMP_GT_GT] = ACTIONS(2919), - [anon_sym_LT_AMP] = ACTIONS(2919), - [anon_sym_GT_AMP] = ACTIONS(2919), - [sym__special_characters] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2919), - [anon_sym_BQUOTE] = ACTIONS(2919), - [anon_sym_LT_LPAREN] = ACTIONS(2919), - [anon_sym_GT_LPAREN] = ACTIONS(2919), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2919), - }, - [1238] = { - [sym_concatenation] = STATE(1651), - [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), - [aux_sym_expansion_repeat1] = STATE(1651), - [anon_sym_RBRACE] = ACTIONS(3849), - [anon_sym_EQ] = ACTIONS(3851), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3851), - [anon_sym_COLON_QMARK] = ACTIONS(3851), - [anon_sym_COLON_DASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1239] = { - [sym__concat] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2772), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym__string_content] = ACTIONS(2770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), - [anon_sym_BQUOTE] = ACTIONS(2772), - [sym_comment] = ACTIONS(177), - }, - [1240] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3855), - [sym_comment] = ACTIONS(53), - }, - [1241] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(3857), - [sym_comment] = ACTIONS(53), - }, - [1242] = { - [anon_sym_RBRACE] = ACTIONS(3857), - [sym_comment] = ACTIONS(53), - }, - [1243] = { - [sym_concatenation] = STATE(1655), - [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), - [aux_sym_expansion_repeat1] = STATE(1655), - [anon_sym_RBRACE] = ACTIONS(3859), - [anon_sym_EQ] = ACTIONS(3861), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3863), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3861), - [anon_sym_COLON_QMARK] = ACTIONS(3861), - [anon_sym_COLON_DASH] = ACTIONS(3861), - [anon_sym_PERCENT] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1244] = { - [sym__concat] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym__string_content] = ACTIONS(2852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), - [anon_sym_BQUOTE] = ACTIONS(2854), - [sym_comment] = ACTIONS(177), - }, - [1245] = { - [sym_concatenation] = STATE(1658), - [sym_string] = STATE(1657), - [sym_simple_expansion] = STATE(1657), - [sym_string_expansion] = STATE(1657), - [sym_expansion] = STATE(1657), - [sym_command_substitution] = STATE(1657), - [sym_process_substitution] = STATE(1657), - [anon_sym_RBRACE] = ACTIONS(3857), - [sym__special_characters] = ACTIONS(3865), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(3867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3867), - }, - [1246] = { - [sym__concat] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym__string_content] = ACTIONS(2895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [sym_comment] = ACTIONS(177), - }, - [1247] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3869), - }, - [1248] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3871), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1249] = { - [sym__concat] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2905), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym__string_content] = ACTIONS(2903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), - [anon_sym_BQUOTE] = ACTIONS(2905), - [sym_comment] = ACTIONS(177), - }, - [1250] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3873), - }, - [1251] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3875), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1252] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3877), - }, - [1253] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3857), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1254] = { - [sym_concatenation] = STATE(1665), - [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), - [aux_sym_expansion_repeat1] = STATE(1665), - [anon_sym_RBRACE] = ACTIONS(3879), - [anon_sym_EQ] = ACTIONS(3881), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3881), - [anon_sym_COLON_QMARK] = ACTIONS(3881), - [anon_sym_COLON_DASH] = ACTIONS(3881), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_DASH] = ACTIONS(3881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1255] = { - [sym__concat] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym__string_content] = ACTIONS(2919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), - [anon_sym_BQUOTE] = ACTIONS(2921), - [sym_comment] = ACTIONS(177), - }, - [1256] = { - [sym_concatenation] = STATE(1667), - [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), - [aux_sym_expansion_repeat1] = STATE(1667), - [anon_sym_RBRACE] = ACTIONS(3885), - [anon_sym_EQ] = ACTIONS(3887), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(3887), - [anon_sym_COLON_QMARK] = ACTIONS(3887), - [anon_sym_COLON_DASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3887), - [anon_sym_DASH] = ACTIONS(3887), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1257] = { - [sym_string] = STATE(681), - [sym_simple_expansion] = STATE(681), - [sym_string_expansion] = STATE(681), - [sym_expansion] = STATE(681), - [sym_command_substitution] = STATE(681), - [sym_process_substitution] = STATE(681), - [anon_sym_RBRACK] = ACTIONS(3891), - [sym__special_characters] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1317), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1317), - }, - [1258] = { - [sym__concat] = ACTIONS(3893), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_EQ] = ACTIONS(3895), - [sym__special_characters] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_COLON] = ACTIONS(3895), - [anon_sym_COLON_QMARK] = ACTIONS(3895), - [anon_sym_COLON_DASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2159), - [anon_sym_BQUOTE] = ACTIONS(2159), - [anon_sym_LT_LPAREN] = ACTIONS(2159), - [anon_sym_GT_LPAREN] = ACTIONS(2159), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3895), - }, - [1259] = { - [sym_string] = STATE(681), - [sym_simple_expansion] = STATE(681), - [sym_string_expansion] = STATE(681), - [sym_expansion] = STATE(681), - [sym_command_substitution] = STATE(681), - [sym_process_substitution] = STATE(681), - [anon_sym_RBRACK] = ACTIONS(3897), - [sym__special_characters] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1317), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1317), - }, - [1260] = { - [sym__concat] = ACTIONS(3899), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_EQ] = ACTIONS(3901), - [sym__special_characters] = ACTIONS(3901), - [anon_sym_DQUOTE] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(3901), - [sym_raw_string] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(2165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2165), - [anon_sym_SLASH] = ACTIONS(2165), - [anon_sym_COLON] = ACTIONS(3901), - [anon_sym_COLON_QMARK] = ACTIONS(3901), - [anon_sym_COLON_DASH] = ACTIONS(3901), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_DASH] = ACTIONS(3901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2165), - [anon_sym_BQUOTE] = ACTIONS(2165), - [anon_sym_LT_LPAREN] = ACTIONS(2165), - [anon_sym_GT_LPAREN] = ACTIONS(2165), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3901), - }, - [1261] = { - [anon_sym_RBRACK] = ACTIONS(3897), - [sym_comment] = ACTIONS(53), - }, - [1262] = { + [sym_concatenation] = STATE(1186), [sym_string] = STATE(1672), [sym_simple_expansion] = STATE(1672), [sym_string_expansion] = STATE(1672), [sym_expansion] = STATE(1672), [sym_command_substitution] = STATE(1672), [sym_process_substitution] = STATE(1672), - [sym__special_characters] = ACTIONS(3903), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(3903), + [sym__special_characters] = ACTIONS(3870), + [anon_sym_DQUOTE] = ACTIONS(665), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(3872), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1633), + [anon_sym_LT_LPAREN] = ACTIONS(1635), + [anon_sym_GT_LPAREN] = ACTIONS(1635), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3872), + }, + [1192] = { + [anon_sym_LT] = ACTIONS(3874), + [anon_sym_GT] = ACTIONS(3874), + [anon_sym_GT_GT] = ACTIONS(3876), + [anon_sym_AMP_GT] = ACTIONS(3874), + [anon_sym_AMP_GT_GT] = ACTIONS(3876), + [anon_sym_LT_AMP] = ACTIONS(3876), + [anon_sym_GT_AMP] = ACTIONS(3876), + [sym_comment] = ACTIONS(53), + }, + [1193] = { + [sym_concatenation] = STATE(1237), + [sym_string] = STATE(1675), + [sym_simple_expansion] = STATE(1675), + [sym_string_expansion] = STATE(1675), + [sym_expansion] = STATE(1675), + [sym_command_substitution] = STATE(1675), + [sym_process_substitution] = STATE(1675), + [sym__special_characters] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(2672), + [sym_raw_string] = ACTIONS(3880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), + [anon_sym_BQUOTE] = ACTIONS(2680), + [anon_sym_LT_LPAREN] = ACTIONS(2682), + [anon_sym_GT_LPAREN] = ACTIONS(2682), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3880), + }, + [1194] = { + [sym_concatenation] = STATE(1241), + [sym_string] = STATE(1677), + [sym_simple_expansion] = STATE(1677), + [sym_string_expansion] = STATE(1677), + [sym_expansion] = STATE(1677), + [sym_command_substitution] = STATE(1677), + [sym_process_substitution] = STATE(1677), + [sym__special_characters] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(2672), + [sym_raw_string] = ACTIONS(3884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), + [anon_sym_BQUOTE] = ACTIONS(2680), + [anon_sym_LT_LPAREN] = ACTIONS(2682), + [anon_sym_GT_LPAREN] = ACTIONS(2682), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3884), + }, + [1195] = { + [sym_file_redirect] = STATE(1678), + [sym_heredoc_redirect] = STATE(1678), + [sym_herestring_redirect] = STATE(1678), + [aux_sym_while_statement_repeat1] = STATE(1678), + [sym_file_descriptor] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_RPAREN] = ACTIONS(2690), + [anon_sym_SEMI_SEMI] = ACTIONS(2690), + [anon_sym_PIPE_AMP] = ACTIONS(2690), + [anon_sym_AMP_AMP] = ACTIONS(2690), + [anon_sym_PIPE_PIPE] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_GT] = ACTIONS(2556), + [anon_sym_GT_GT] = ACTIONS(2556), + [anon_sym_AMP_GT] = ACTIONS(2556), + [anon_sym_AMP_GT_GT] = ACTIONS(2556), + [anon_sym_LT_AMP] = ACTIONS(2556), + [anon_sym_GT_AMP] = ACTIONS(2556), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_LT_LT_DASH] = ACTIONS(1449), + [anon_sym_LT_LT_LT] = ACTIONS(2558), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_LF] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2690), + }, + [1196] = { + [aux_sym_concatenation_repeat1] = STATE(693), + [sym__concat] = ACTIONS(613), + [sym_variable_name] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_SEMI_SEMI] = ACTIONS(1177), + [anon_sym_PIPE_AMP] = ACTIONS(1177), + [anon_sym_AMP_AMP] = ACTIONS(1177), + [anon_sym_PIPE_PIPE] = ACTIONS(1177), + [sym__special_characters] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1177), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(1177), + [anon_sym_LT_LPAREN] = ACTIONS(1177), + [anon_sym_GT_LPAREN] = ACTIONS(1177), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1177), + [sym_word] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1177), + }, + [1197] = { + [aux_sym_concatenation_repeat1] = STATE(693), + [sym__concat] = ACTIONS(613), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_SEMI_SEMI] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1153), + [anon_sym_PIPE_PIPE] = ACTIONS(1153), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_LT_LPAREN] = ACTIONS(1153), + [anon_sym_GT_LPAREN] = ACTIONS(1153), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), + [sym_word] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_LF] = ACTIONS(1151), + [anon_sym_AMP] = ACTIONS(1153), + }, + [1198] = { + [aux_sym_concatenation_repeat1] = STATE(1198), + [sym__concat] = ACTIONS(2741), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [1199] = { + [aux_sym_concatenation_repeat1] = STATE(1199), + [sym__concat] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [1200] = { + [sym_file_redirect] = STATE(1520), + [sym_file_descriptor] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2544), + [anon_sym_SEMI_SEMI] = ACTIONS(2544), + [anon_sym_PIPE_AMP] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_GT] = ACTIONS(2552), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_AMP_GT] = ACTIONS(2552), + [anon_sym_AMP_GT_GT] = ACTIONS(2552), + [anon_sym_LT_AMP] = ACTIONS(2552), + [anon_sym_GT_AMP] = ACTIONS(2552), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_LF] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), + }, + [1201] = { + [aux_sym_concatenation_repeat1] = STATE(1203), + [sym__simple_heredoc_body] = ACTIONS(1133), + [sym__heredoc_body_beginning] = ACTIONS(1133), + [sym_file_descriptor] = ACTIONS(1133), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_RPAREN] = ACTIONS(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(1135), + [anon_sym_PIPE_AMP] = ACTIONS(1135), + [anon_sym_AMP_AMP] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1135), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1135), + [anon_sym_AMP_GT] = ACTIONS(1135), + [anon_sym_AMP_GT_GT] = ACTIONS(1135), + [anon_sym_LT_AMP] = ACTIONS(1135), + [anon_sym_GT_AMP] = ACTIONS(1135), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_LT_LT_DASH] = ACTIONS(1135), + [anon_sym_LT_LT_LT] = ACTIONS(1135), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), + }, + [1202] = { + [aux_sym_concatenation_repeat1] = STATE(1203), + [sym__simple_heredoc_body] = ACTIONS(1137), + [sym__heredoc_body_beginning] = ACTIONS(1137), + [sym_file_descriptor] = ACTIONS(1137), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_SEMI_SEMI] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1139), + [anon_sym_LT_AMP] = ACTIONS(1139), + [anon_sym_GT_AMP] = ACTIONS(1139), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1139), + [anon_sym_LT_LT_LT] = ACTIONS(1139), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + }, + [1203] = { + [aux_sym_concatenation_repeat1] = STATE(1679), + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_LT_LT_LT] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [1204] = { + [anon_sym_esac] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_SEMI_SEMI] = ACTIONS(3886), + [anon_sym_PIPE_AMP] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_LF] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3886), + }, + [1205] = { + [sym_file_redirect] = STATE(709), + [sym_heredoc_redirect] = STATE(709), + [sym_heredoc_body] = STATE(1536), + [sym_herestring_redirect] = STATE(709), + [aux_sym_while_statement_repeat1] = STATE(709), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(3525), + [anon_sym_SEMI_SEMI] = ACTIONS(3525), + [anon_sym_PIPE_AMP] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(515), + [anon_sym_AMP_GT_GT] = ACTIONS(515), + [anon_sym_LT_AMP] = ACTIONS(515), + [anon_sym_GT_AMP] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(517), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3525), + [anon_sym_LF] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + }, + [1206] = { + [sym_file_descriptor] = ACTIONS(2253), + [sym_variable_name] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_PIPE_AMP] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(2253), + [anon_sym_PIPE_PIPE] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_GT] = ACTIONS(2255), + [anon_sym_GT_GT] = ACTIONS(2253), + [anon_sym_AMP_GT] = ACTIONS(2255), + [anon_sym_AMP_GT_GT] = ACTIONS(2253), + [anon_sym_LT_AMP] = ACTIONS(2253), + [anon_sym_GT_AMP] = ACTIONS(2253), + [sym__special_characters] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [sym_raw_string] = ACTIONS(2253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2253), + [anon_sym_BQUOTE] = ACTIONS(2253), + [anon_sym_LT_LPAREN] = ACTIONS(2253), + [anon_sym_GT_LPAREN] = ACTIONS(2253), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3903), + [sym_word] = ACTIONS(2253), }, - [1263] = { - [sym__simple_heredoc_body] = ACTIONS(3905), - [sym__heredoc_body_beginning] = ACTIONS(3905), - [sym_file_descriptor] = ACTIONS(3905), - [sym__concat] = ACTIONS(3905), - [anon_sym_esac] = ACTIONS(3907), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3907), - [anon_sym_SEMI_SEMI] = ACTIONS(3907), - [anon_sym_PIPE_AMP] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [anon_sym_EQ_TILDE] = ACTIONS(3907), - [anon_sym_EQ_EQ] = ACTIONS(3907), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_AMP_GT] = ACTIONS(3907), - [anon_sym_AMP_GT_GT] = ACTIONS(3907), - [anon_sym_LT_AMP] = ACTIONS(3907), - [anon_sym_GT_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3907), - [anon_sym_LT_LT_DASH] = ACTIONS(3907), - [anon_sym_LT_LT_LT] = ACTIONS(3907), - [sym__special_characters] = ACTIONS(3907), - [anon_sym_DQUOTE] = ACTIONS(3907), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), - [anon_sym_BQUOTE] = ACTIONS(3907), - [anon_sym_LT_LPAREN] = ACTIONS(3907), - [anon_sym_GT_LPAREN] = ACTIONS(3907), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3907), - [anon_sym_SEMI] = ACTIONS(3907), - [anon_sym_LF] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3907), + [1207] = { + [sym_concatenation] = STATE(1075), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1075), + [anon_sym_RPAREN] = ACTIONS(3890), + [sym__special_characters] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym_raw_string] = ACTIONS(1163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1163), }, - [1264] = { - [aux_sym_concatenation_repeat1] = STATE(1673), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(705), + [1208] = { + [aux_sym_concatenation_repeat1] = STATE(1208), + [sym__concat] = ACTIONS(2694), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_EQ_TILDE] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1754), + }, + [1209] = { + [sym__concat] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_RBRACK] = ACTIONS(2920), + [anon_sym_EQ_TILDE] = ACTIONS(2920), + [anon_sym_EQ_EQ] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_GT] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2920), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2920), + }, + [1210] = { + [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_LT] = ACTIONS(2934), + [anon_sym_GT] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2934), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2934), + }, + [1211] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(3892), [sym_comment] = ACTIONS(53), }, - [1265] = { - [sym__concat] = ACTIONS(709), - [anon_sym_RBRACE] = ACTIONS(709), + [1212] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(3894), [sym_comment] = ACTIONS(53), }, - [1266] = { - [anon_sym_DQUOTE] = ACTIONS(3909), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [1267] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(3909), - [anon_sym_DOLLAR] = ACTIONS(3911), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [1268] = { - [sym__concat] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), + [1213] = { + [anon_sym_RBRACE] = ACTIONS(3894), [sym_comment] = ACTIONS(53), }, - [1269] = { - [sym__concat] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), + [1214] = { + [sym_concatenation] = STATE(1684), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1684), + [anon_sym_RBRACE] = ACTIONS(3896), + [anon_sym_EQ] = ACTIONS(3898), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(3898), + [anon_sym_COLON_QMARK] = ACTIONS(3898), + [anon_sym_COLON_DASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_DASH] = ACTIONS(3898), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1215] = { + [sym__concat] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [anon_sym_RBRACK] = ACTIONS(3016), + [anon_sym_EQ_TILDE] = ACTIONS(3016), + [anon_sym_EQ_EQ] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym_GT] = ACTIONS(3016), + [anon_sym_BANG_EQ] = ACTIONS(3016), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3016), }, - [1270] = { - [sym__concat] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), + [1216] = { + [sym_concatenation] = STATE(1687), + [sym_string] = STATE(1686), + [sym_simple_expansion] = STATE(1686), + [sym_string_expansion] = STATE(1686), + [sym_expansion] = STATE(1686), + [sym_command_substitution] = STATE(1686), + [sym_process_substitution] = STATE(1686), + [anon_sym_RBRACE] = ACTIONS(3894), + [sym__special_characters] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(3904), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3904), }, - [1271] = { - [sym__simple_heredoc_body] = ACTIONS(3913), - [sym__heredoc_body_beginning] = ACTIONS(3913), - [sym_file_descriptor] = ACTIONS(3913), - [sym__concat] = ACTIONS(3913), - [anon_sym_esac] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_EQ_TILDE] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_AMP_GT] = ACTIONS(3915), - [anon_sym_AMP_GT_GT] = ACTIONS(3915), - [anon_sym_LT_AMP] = ACTIONS(3915), - [anon_sym_GT_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_LT_LT_DASH] = ACTIONS(3915), - [anon_sym_LT_LT_LT] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3915), - }, - [1272] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(3917), + [1217] = { + [sym__concat] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_RBRACK] = ACTIONS(3059), + [anon_sym_EQ_TILDE] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3059), + [anon_sym_GT] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3059), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3059), }, - [1273] = { - [sym_concatenation] = STATE(1679), - [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), - [aux_sym_expansion_repeat1] = STATE(1679), - [anon_sym_RBRACE] = ACTIONS(3919), - [anon_sym_EQ] = ACTIONS(3921), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3925), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_COLON_QMARK] = ACTIONS(3921), - [anon_sym_COLON_DASH] = ACTIONS(3921), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1218] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3906), }, - [1274] = { - [sym_subscript] = STATE(1683), - [sym_variable_name] = ACTIONS(3927), - [anon_sym_DOLLAR] = ACTIONS(3929), - [anon_sym_DASH] = ACTIONS(3929), + [1219] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3908), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1220] = { + [sym__concat] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3931), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_AT] = ACTIONS(3929), - [anon_sym_QMARK] = ACTIONS(3929), - [anon_sym_0] = ACTIONS(3933), - [anon_sym__] = ACTIONS(3933), + [sym_test_operator] = ACTIONS(3067), }, - [1275] = { - [sym_concatenation] = STATE(1686), - [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), - [aux_sym_expansion_repeat1] = STATE(1686), - [anon_sym_RBRACE] = ACTIONS(3935), - [anon_sym_EQ] = ACTIONS(3937), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3941), - [anon_sym_COLON] = ACTIONS(3937), - [anon_sym_COLON_QMARK] = ACTIONS(3937), - [anon_sym_COLON_DASH] = ACTIONS(3937), - [anon_sym_PERCENT] = ACTIONS(3937), - [anon_sym_DASH] = ACTIONS(3937), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1221] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3910), }, - [1276] = { - [sym_concatenation] = STATE(1689), - [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), - [aux_sym_expansion_repeat1] = STATE(1689), - [anon_sym_RBRACE] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(3945), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3949), - [anon_sym_COLON] = ACTIONS(3945), - [anon_sym_COLON_QMARK] = ACTIONS(3945), - [anon_sym_COLON_DASH] = ACTIONS(3945), - [anon_sym_PERCENT] = ACTIONS(3945), - [anon_sym_DASH] = ACTIONS(3945), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1222] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1277] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3951), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), + [1223] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3914), + }, + [1224] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3894), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1225] = { + [sym_concatenation] = STATE(1694), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1694), + [anon_sym_RBRACE] = ACTIONS(3916), + [anon_sym_EQ] = ACTIONS(3918), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(3918), + [anon_sym_COLON_QMARK] = ACTIONS(3918), + [anon_sym_COLON_DASH] = ACTIONS(3918), + [anon_sym_PERCENT] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1226] = { + [sym__concat] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [anon_sym_RBRACK] = ACTIONS(3083), + [anon_sym_EQ_TILDE] = ACTIONS(3083), + [anon_sym_EQ_EQ] = ACTIONS(3083), + [anon_sym_EQ] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_GT] = ACTIONS(3083), + [anon_sym_BANG_EQ] = ACTIONS(3083), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3083), }, - [1278] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3951), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1279] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_comment] = ACTIONS(53), - }, - [1280] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(3951), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1281] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [1282] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1283] = { - [sym__concat] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_EQ] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_COLON] = ACTIONS(1674), - [anon_sym_COLON_QMARK] = ACTIONS(1674), - [anon_sym_COLON_DASH] = ACTIONS(1674), - [anon_sym_PERCENT] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1674), - }, - [1284] = { - [aux_sym_concatenation_repeat1] = STATE(1284), - [sym__concat] = ACTIONS(3955), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_EQ] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_COLON] = ACTIONS(1674), - [anon_sym_COLON_QMARK] = ACTIONS(1674), - [anon_sym_COLON_DASH] = ACTIONS(1674), - [anon_sym_PERCENT] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1674), - }, - [1285] = { - [sym__concat] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_EQ] = ACTIONS(1681), - [sym__special_characters] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1679), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1679), - [anon_sym_COLON] = ACTIONS(1681), - [anon_sym_COLON_QMARK] = ACTIONS(1681), - [anon_sym_COLON_DASH] = ACTIONS(1681), - [anon_sym_PERCENT] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1679), - [anon_sym_BQUOTE] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1679), - [anon_sym_GT_LPAREN] = ACTIONS(1679), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1681), - }, - [1286] = { - [anon_sym_DQUOTE] = ACTIONS(3958), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [1287] = { + [1227] = { [sym_concatenation] = STATE(1696), - [sym_string] = STATE(1695), - [sym_simple_expansion] = STATE(1695), - [sym_string_expansion] = STATE(1695), - [sym_expansion] = STATE(1695), - [sym_command_substitution] = STATE(1695), - [sym_process_substitution] = STATE(1695), - [anon_sym_RBRACE] = ACTIONS(3960), - [sym__special_characters] = ACTIONS(3962), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(3964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1696), + [anon_sym_RBRACE] = ACTIONS(3922), + [anon_sym_EQ] = ACTIONS(3924), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3926), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(3924), + [anon_sym_COLON_QMARK] = ACTIONS(3924), + [anon_sym_COLON_DASH] = ACTIONS(3924), + [anon_sym_PERCENT] = ACTIONS(3924), + [anon_sym_DASH] = ACTIONS(3924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1228] = { + [sym_concatenation] = STATE(1699), + [sym_string] = STATE(1698), + [sym_simple_expansion] = STATE(1698), + [sym_string_expansion] = STATE(1698), + [sym_expansion] = STATE(1698), + [sym_command_substitution] = STATE(1698), + [sym_process_substitution] = STATE(1698), + [sym__special_characters] = ACTIONS(3928), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(2672), + [sym_raw_string] = ACTIONS(3930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), + [anon_sym_BQUOTE] = ACTIONS(2680), + [anon_sym_LT_LPAREN] = ACTIONS(2682), + [anon_sym_GT_LPAREN] = ACTIONS(2682), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3964), + [sym_word] = ACTIONS(3930), }, - [1288] = { - [sym__concat] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1766), - [sym__special_characters] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(1764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), - [anon_sym_COLON] = ACTIONS(1766), - [anon_sym_COLON_QMARK] = ACTIONS(1766), - [anon_sym_COLON_DASH] = ACTIONS(1766), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1764), - [anon_sym_BQUOTE] = ACTIONS(1764), - [anon_sym_LT_LPAREN] = ACTIONS(1764), - [anon_sym_GT_LPAREN] = ACTIONS(1764), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1766), + [1229] = { + [aux_sym_concatenation_repeat1] = STATE(1701), + [sym_file_descriptor] = ACTIONS(697), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = 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(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(701), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(701), + [anon_sym_LT_AMP] = ACTIONS(701), + [anon_sym_GT_AMP] = ACTIONS(701), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(701), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(701), }, - [1289] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3966), + [1230] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(1704), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, - [1290] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), + [1231] = { + [sym_string] = STATE(1706), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3940), + [anon_sym_POUND] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(3938), + [anon_sym_0] = ACTIONS(3944), + [anon_sym__] = ACTIONS(3944), + }, + [1232] = { + [aux_sym_concatenation_repeat1] = STATE(1701), + [sym_file_descriptor] = ACTIONS(715), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(717), + [anon_sym_PIPE_PIPE] = ACTIONS(717), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(717), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(717), + [anon_sym_LT_AMP] = ACTIONS(717), + [anon_sym_GT_AMP] = ACTIONS(717), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(717), + [anon_sym_LT_LT_LT] = ACTIONS(717), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [1233] = { + [sym_subscript] = STATE(1712), + [sym_variable_name] = ACTIONS(3946), + [anon_sym_DOLLAR] = ACTIONS(3948), + [anon_sym_POUND] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3948), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3948), + [anon_sym_AT] = ACTIONS(3948), + [anon_sym_QMARK] = ACTIONS(3948), + [anon_sym_0] = ACTIONS(3954), + [anon_sym__] = ACTIONS(3954), + }, + [1234] = { + [sym_for_statement] = STATE(1713), + [sym_c_style_for_statement] = STATE(1713), + [sym_while_statement] = STATE(1713), + [sym_if_statement] = STATE(1713), + [sym_case_statement] = STATE(1713), + [sym_function_definition] = STATE(1713), + [sym_subshell] = STATE(1713), + [sym_pipeline] = STATE(1713), + [sym_list] = STATE(1713), + [sym_negated_command] = STATE(1713), + [sym_test_command] = STATE(1713), + [sym_declaration_command] = STATE(1713), + [sym_unset_command] = STATE(1713), + [sym_command] = STATE(1713), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(1714), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [1235] = { + [sym_for_statement] = STATE(1715), + [sym_c_style_for_statement] = STATE(1715), + [sym_while_statement] = STATE(1715), + [sym_if_statement] = STATE(1715), + [sym_case_statement] = STATE(1715), + [sym_function_definition] = STATE(1715), + [sym_subshell] = STATE(1715), + [sym_pipeline] = STATE(1715), + [sym_list] = STATE(1715), + [sym_negated_command] = STATE(1715), + [sym_test_command] = STATE(1715), + [sym_declaration_command] = STATE(1715), + [sym_unset_command] = STATE(1715), + [sym_command] = STATE(1715), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(1716), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [1236] = { + [sym_for_statement] = STATE(1717), + [sym_c_style_for_statement] = STATE(1717), + [sym_while_statement] = STATE(1717), + [sym_if_statement] = STATE(1717), + [sym_case_statement] = STATE(1717), + [sym_function_definition] = STATE(1717), + [sym_subshell] = STATE(1717), + [sym_pipeline] = STATE(1717), + [sym_list] = STATE(1717), + [sym_negated_command] = STATE(1717), + [sym_test_command] = STATE(1717), + [sym_declaration_command] = STATE(1717), + [sym_unset_command] = STATE(1717), + [sym_command] = STATE(1717), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(1718), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [1237] = { + [sym_file_descriptor] = ACTIONS(715), + [anon_sym_esac] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(717), + [anon_sym_PIPE_PIPE] = ACTIONS(717), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(717), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(717), + [anon_sym_LT_AMP] = ACTIONS(717), + [anon_sym_GT_AMP] = ACTIONS(717), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(717), + [anon_sym_LT_LT_LT] = ACTIONS(717), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [1238] = { + [sym_file_descriptor] = ACTIONS(2180), + [anon_sym_esac] = ACTIONS(2182), + [anon_sym_PIPE] = ACTIONS(2182), + [anon_sym_RPAREN] = ACTIONS(2182), + [anon_sym_SEMI_SEMI] = ACTIONS(2182), + [anon_sym_PIPE_AMP] = ACTIONS(2182), + [anon_sym_AMP_AMP] = ACTIONS(2182), + [anon_sym_PIPE_PIPE] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_GT] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(2182), + [anon_sym_AMP_GT] = ACTIONS(2182), + [anon_sym_AMP_GT_GT] = ACTIONS(2182), + [anon_sym_LT_AMP] = ACTIONS(2182), + [anon_sym_GT_AMP] = ACTIONS(2182), + [anon_sym_LT_LT] = ACTIONS(2182), + [anon_sym_LT_LT_DASH] = ACTIONS(2182), + [anon_sym_LT_LT_LT] = ACTIONS(2182), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_LF] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2182), + }, + [1239] = { + [aux_sym_concatenation_repeat1] = STATE(1701), + [sym_file_descriptor] = ACTIONS(2184), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_SEMI_SEMI] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(2186), + [anon_sym_AMP_AMP] = ACTIONS(2186), + [anon_sym_PIPE_PIPE] = ACTIONS(2186), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_GT] = ACTIONS(2186), + [anon_sym_GT_GT] = ACTIONS(2186), + [anon_sym_AMP_GT] = ACTIONS(2186), + [anon_sym_AMP_GT_GT] = ACTIONS(2186), + [anon_sym_LT_AMP] = ACTIONS(2186), + [anon_sym_GT_AMP] = ACTIONS(2186), + [anon_sym_LT_LT] = ACTIONS(2186), + [anon_sym_LT_LT_DASH] = ACTIONS(2186), + [anon_sym_LT_LT_LT] = ACTIONS(2186), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_LF] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + }, + [1240] = { + [aux_sym_concatenation_repeat1] = STATE(1701), + [sym_file_descriptor] = ACTIONS(2188), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_SEMI_SEMI] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2190), + [anon_sym_LT_LT_LT] = ACTIONS(2190), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2190), + }, + [1241] = { + [sym_file_descriptor] = ACTIONS(2188), + [anon_sym_esac] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_SEMI_SEMI] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2190), + [anon_sym_LT_LT_LT] = ACTIONS(2190), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2190), + }, + [1242] = { + [sym_file_redirect] = STATE(1242), + [sym_heredoc_redirect] = STATE(1242), + [sym_herestring_redirect] = STATE(1242), + [aux_sym_while_statement_repeat1] = STATE(1242), + [sym_file_descriptor] = ACTIONS(3956), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_SEMI_SEMI] = ACTIONS(2201), + [anon_sym_PIPE_AMP] = ACTIONS(2201), + [anon_sym_AMP_AMP] = ACTIONS(2201), + [anon_sym_PIPE_PIPE] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_GT_GT] = ACTIONS(3959), + [anon_sym_AMP_GT] = ACTIONS(3959), + [anon_sym_AMP_GT_GT] = ACTIONS(3959), + [anon_sym_LT_AMP] = ACTIONS(3959), + [anon_sym_GT_AMP] = ACTIONS(3959), + [anon_sym_LT_LT] = ACTIONS(3962), + [anon_sym_LT_LT_DASH] = ACTIONS(3962), + [anon_sym_LT_LT_LT] = ACTIONS(3965), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2201), + }, + [1243] = { + [sym__concat] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2920), + [anon_sym_EQ_TILDE] = ACTIONS(2920), + [anon_sym_EQ_EQ] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_GT] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2920), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2920), + }, + [1244] = { + [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_RBRACK_RBRACK] = ACTIONS(2934), + [anon_sym_EQ_TILDE] = ACTIONS(2934), + [anon_sym_EQ_EQ] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2934), + [anon_sym_GT] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2934), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2934), + }, + [1245] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1291] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(3970), [sym_comment] = ACTIONS(53), }, - [1292] = { - [sym_concatenation] = STATE(1702), - [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), - [aux_sym_expansion_repeat1] = STATE(1702), + [1246] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(3970), + [sym_comment] = ACTIONS(53), + }, + [1247] = { + [anon_sym_RBRACE] = ACTIONS(3970), + [sym_comment] = ACTIONS(53), + }, + [1248] = { + [sym_concatenation] = STATE(1722), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1722), [anon_sym_RBRACE] = ACTIONS(3972), [anon_sym_EQ] = ACTIONS(3974), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(3976), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3978), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), [anon_sym_COLON] = ACTIONS(3974), [anon_sym_COLON_QMARK] = ACTIONS(3974), [anon_sym_COLON_DASH] = ACTIONS(3974), [anon_sym_PERCENT] = ACTIONS(3974), [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1293] = { - [sym_concatenation] = STATE(1705), - [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), - [aux_sym_expansion_repeat1] = STATE(1705), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_EQ] = ACTIONS(3982), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_COLON] = ACTIONS(3982), - [anon_sym_COLON_QMARK] = ACTIONS(3982), - [anon_sym_COLON_DASH] = ACTIONS(3982), - [anon_sym_PERCENT] = ACTIONS(3982), - [anon_sym_DASH] = ACTIONS(3982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1249] = { + [sym__concat] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3016), + [anon_sym_EQ_TILDE] = ACTIONS(3016), + [anon_sym_EQ_EQ] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym_GT] = ACTIONS(3016), + [anon_sym_BANG_EQ] = ACTIONS(3016), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3016), }, - [1294] = { - [sym_concatenation] = STATE(1707), - [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), - [aux_sym_expansion_repeat1] = STATE(1707), - [anon_sym_RBRACE] = ACTIONS(3960), - [anon_sym_EQ] = ACTIONS(3988), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3988), - [anon_sym_COLON_QMARK] = ACTIONS(3988), - [anon_sym_COLON_DASH] = ACTIONS(3988), - [anon_sym_PERCENT] = ACTIONS(3988), - [anon_sym_DASH] = ACTIONS(3988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1295] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1834), - [sym__special_characters] = ACTIONS(1834), + [1250] = { + [sym_concatenation] = STATE(1725), + [sym_string] = STATE(1724), + [sym_simple_expansion] = STATE(1724), + [sym_string_expansion] = STATE(1724), + [sym_expansion] = STATE(1724), + [sym_command_substitution] = STATE(1724), + [sym_process_substitution] = STATE(1724), + [anon_sym_RBRACE] = ACTIONS(3970), + [sym__special_characters] = ACTIONS(3978), [anon_sym_DQUOTE] = ACTIONS(1832), [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_COLON] = ACTIONS(1834), - [anon_sym_COLON_QMARK] = ACTIONS(1834), - [anon_sym_COLON_DASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1834), - }, - [1296] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3994), - }, - [1297] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3996), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1298] = { - [sym__concat] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1842), - [sym__special_characters] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(1840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), - [anon_sym_COLON] = ACTIONS(1842), - [anon_sym_COLON_QMARK] = ACTIONS(1842), - [anon_sym_COLON_DASH] = ACTIONS(1842), - [anon_sym_PERCENT] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(3980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1840), - [anon_sym_LT_LPAREN] = ACTIONS(1840), - [anon_sym_GT_LPAREN] = ACTIONS(1840), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1842), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3980), }, - [1299] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3998), + [1251] = { + [sym__concat] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3059), + [anon_sym_EQ_TILDE] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3059), + [anon_sym_GT] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3059), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3059), }, - [1300] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(3960), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1252] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3982), }, - [1301] = { - [sym__simple_heredoc_body] = ACTIONS(4000), - [sym__heredoc_body_beginning] = ACTIONS(4000), - [sym_file_descriptor] = ACTIONS(4000), - [sym__concat] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4002), - [anon_sym_SEMI_SEMI] = ACTIONS(4002), - [anon_sym_PIPE_AMP] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_EQ_TILDE] = ACTIONS(4002), - [anon_sym_EQ_EQ] = ACTIONS(4002), - [anon_sym_LT] = ACTIONS(4002), - [anon_sym_GT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4002), - [anon_sym_AMP_GT] = ACTIONS(4002), - [anon_sym_AMP_GT_GT] = ACTIONS(4002), - [anon_sym_LT_AMP] = ACTIONS(4002), - [anon_sym_GT_AMP] = ACTIONS(4002), - [anon_sym_LT_LT] = ACTIONS(4002), - [anon_sym_LT_LT_DASH] = ACTIONS(4002), - [anon_sym_LT_LT_LT] = ACTIONS(4002), - [sym__special_characters] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4002), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), - [anon_sym_BQUOTE] = ACTIONS(4002), - [anon_sym_LT_LPAREN] = ACTIONS(4002), - [anon_sym_GT_LPAREN] = ACTIONS(4002), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_LF] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4002), + [1253] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3984), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1302] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4004), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1254] = { + [sym__concat] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3067), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3067), }, - [1303] = { - [sym__concat] = ACTIONS(1980), - [anon_sym_RBRACE] = ACTIONS(1980), - [anon_sym_EQ] = ACTIONS(1982), - [sym__special_characters] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1980), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1980), - [anon_sym_POUND] = ACTIONS(1980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), - [anon_sym_COLON] = ACTIONS(1982), - [anon_sym_COLON_QMARK] = ACTIONS(1982), - [anon_sym_COLON_DASH] = ACTIONS(1982), - [anon_sym_PERCENT] = ACTIONS(1982), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_LT_LPAREN] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1980), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1982), + [1255] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3986), }, - [1304] = { - [sym__concat] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_EQ] = ACTIONS(2048), - [sym__special_characters] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(2046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2046), - [anon_sym_COLON] = ACTIONS(2048), - [anon_sym_COLON_QMARK] = ACTIONS(2048), - [anon_sym_COLON_DASH] = ACTIONS(2048), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2046), - [anon_sym_BQUOTE] = ACTIONS(2046), - [anon_sym_LT_LPAREN] = ACTIONS(2046), - [anon_sym_GT_LPAREN] = ACTIONS(2046), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2048), + [1256] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3988), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1305] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), + [1257] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3990), + }, + [1258] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1259] = { + [sym_concatenation] = STATE(1732), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1732), + [anon_sym_RBRACE] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3994), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3996), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(3994), + [anon_sym_COLON_QMARK] = ACTIONS(3994), + [anon_sym_COLON_DASH] = ACTIONS(3994), + [anon_sym_PERCENT] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1260] = { + [sym__concat] = ACTIONS(3083), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_RPAREN] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3083), + [anon_sym_EQ_TILDE] = ACTIONS(3083), + [anon_sym_EQ_EQ] = ACTIONS(3083), + [anon_sym_EQ] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_GT] = ACTIONS(3083), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3083), + }, + [1261] = { + [sym_concatenation] = STATE(1734), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1734), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4000), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4000), + [anon_sym_COLON_QMARK] = ACTIONS(4000), + [anon_sym_COLON_DASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1262] = { + [sym_variable_name] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2255), + [anon_sym_SEMI_SEMI] = ACTIONS(2255), + [anon_sym_PIPE_AMP] = ACTIONS(2255), + [anon_sym_AMP_AMP] = ACTIONS(2255), + [anon_sym_PIPE_PIPE] = ACTIONS(2255), + [sym__special_characters] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_DOLLAR] = ACTIONS(2255), + [sym_raw_string] = ACTIONS(2255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2255), + [anon_sym_BQUOTE] = ACTIONS(2255), + [anon_sym_LT_LPAREN] = ACTIONS(2255), + [anon_sym_GT_LPAREN] = ACTIONS(2255), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2255), + [sym_word] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_LF] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(2255), + }, + [1263] = { + [sym_concatenation] = STATE(1075), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1075), + [anon_sym_RPAREN] = ACTIONS(4004), + [sym__special_characters] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym_raw_string] = ACTIONS(1163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1163), + }, + [1264] = { + [sym__concat] = ACTIONS(2920), + [sym_variable_name] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2922), + [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [anon_sym_PIPE_AMP] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [sym__special_characters] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), + [anon_sym_BQUOTE] = ACTIONS(2922), + [anon_sym_LT_LPAREN] = ACTIONS(2922), + [anon_sym_GT_LPAREN] = ACTIONS(2922), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2922), + [sym_word] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2922), + }, + [1265] = { + [sym__concat] = ACTIONS(2934), + [sym_variable_name] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_RPAREN] = ACTIONS(2936), + [anon_sym_SEMI_SEMI] = ACTIONS(2936), + [anon_sym_PIPE_AMP] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [sym__special_characters] = ACTIONS(2936), + [anon_sym_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2936), + [sym_raw_string] = ACTIONS(2936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), + [anon_sym_BQUOTE] = ACTIONS(2936), + [anon_sym_LT_LPAREN] = ACTIONS(2936), + [anon_sym_GT_LPAREN] = ACTIONS(2936), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), + [sym_word] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_LF] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2936), + }, + [1266] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), [anon_sym_RBRACE] = ACTIONS(4006), [sym_comment] = ACTIONS(53), }, - [1306] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), + [1267] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), [anon_sym_RBRACE] = ACTIONS(4008), [sym_comment] = ACTIONS(53), }, - [1307] = { + [1268] = { [anon_sym_RBRACE] = ACTIONS(4008), [sym_comment] = ACTIONS(53), }, - [1308] = { - [sym_concatenation] = STATE(1715), - [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), - [aux_sym_expansion_repeat1] = STATE(1715), + [1269] = { + [sym_concatenation] = STATE(1739), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1739), [anon_sym_RBRACE] = ACTIONS(4010), [anon_sym_EQ] = ACTIONS(4012), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(4014), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), [anon_sym_COLON] = ACTIONS(4012), [anon_sym_COLON_QMARK] = ACTIONS(4012), [anon_sym_COLON_DASH] = ACTIONS(4012), [anon_sym_PERCENT] = ACTIONS(4012), [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1309] = { - [sym__simple_heredoc_body] = ACTIONS(4016), - [sym__heredoc_body_beginning] = ACTIONS(4016), - [sym_file_descriptor] = ACTIONS(4016), - [sym__concat] = ACTIONS(4016), - [anon_sym_esac] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_SEMI_SEMI] = ACTIONS(4018), - [anon_sym_PIPE_AMP] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_EQ_TILDE] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4018), - [anon_sym_AMP_GT] = ACTIONS(4018), - [anon_sym_AMP_GT_GT] = ACTIONS(4018), - [anon_sym_LT_AMP] = ACTIONS(4018), - [anon_sym_GT_AMP] = ACTIONS(4018), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_LT_LT_DASH] = ACTIONS(4018), - [anon_sym_LT_LT_LT] = ACTIONS(4018), - [sym__special_characters] = ACTIONS(4018), - [anon_sym_DQUOTE] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4018), + [1270] = { + [sym__concat] = ACTIONS(3016), + [sym_variable_name] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3018), + [anon_sym_SEMI_SEMI] = ACTIONS(3018), + [anon_sym_PIPE_AMP] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [sym__special_characters] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), + [anon_sym_BQUOTE] = ACTIONS(3018), + [anon_sym_LT_LPAREN] = ACTIONS(3018), + [anon_sym_GT_LPAREN] = ACTIONS(3018), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3018), + [sym_word] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3018), + }, + [1271] = { + [sym_concatenation] = STATE(1742), + [sym_string] = STATE(1741), + [sym_simple_expansion] = STATE(1741), + [sym_string_expansion] = STATE(1741), + [sym_expansion] = STATE(1741), + [sym_command_substitution] = STATE(1741), + [sym_process_substitution] = STATE(1741), + [anon_sym_RBRACE] = ACTIONS(4008), + [sym__special_characters] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), [sym_raw_string] = ACTIONS(4018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), - [anon_sym_BQUOTE] = ACTIONS(4018), - [anon_sym_LT_LPAREN] = ACTIONS(4018), - [anon_sym_GT_LPAREN] = ACTIONS(4018), - [sym_comment] = ACTIONS(177), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4018), }, - [1310] = { - [sym_concatenation] = STATE(1717), - [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), - [aux_sym_expansion_repeat1] = STATE(1717), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_EQ] = ACTIONS(4022), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4022), - [anon_sym_COLON_QMARK] = ACTIONS(4022), - [anon_sym_COLON_DASH] = ACTIONS(4022), - [anon_sym_PERCENT] = ACTIONS(4022), - [anon_sym_DASH] = ACTIONS(4022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1272] = { + [sym__concat] = ACTIONS(3059), + [sym_variable_name] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_SEMI_SEMI] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), + [anon_sym_BQUOTE] = ACTIONS(3061), + [anon_sym_LT_LPAREN] = ACTIONS(3061), + [anon_sym_GT_LPAREN] = ACTIONS(3061), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), + [sym_word] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), }, - [1311] = { - [sym__simple_heredoc_body] = ACTIONS(4026), - [sym__heredoc_body_beginning] = ACTIONS(4026), - [sym_file_descriptor] = ACTIONS(4026), - [sym__concat] = ACTIONS(4026), - [anon_sym_esac] = ACTIONS(4028), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_RPAREN] = ACTIONS(4028), - [anon_sym_SEMI_SEMI] = ACTIONS(4028), - [anon_sym_PIPE_AMP] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_PIPE_PIPE] = ACTIONS(4028), - [anon_sym_EQ_TILDE] = ACTIONS(4028), - [anon_sym_EQ_EQ] = ACTIONS(4028), - [anon_sym_LT] = ACTIONS(4028), - [anon_sym_GT] = ACTIONS(4028), - [anon_sym_GT_GT] = ACTIONS(4028), - [anon_sym_AMP_GT] = ACTIONS(4028), - [anon_sym_AMP_GT_GT] = ACTIONS(4028), - [anon_sym_LT_AMP] = ACTIONS(4028), - [anon_sym_GT_AMP] = ACTIONS(4028), - [anon_sym_LT_LT] = ACTIONS(4028), - [anon_sym_LT_LT_DASH] = ACTIONS(4028), - [anon_sym_LT_LT_LT] = ACTIONS(4028), - [sym__special_characters] = ACTIONS(4028), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), - [anon_sym_BQUOTE] = ACTIONS(4028), - [anon_sym_LT_LPAREN] = ACTIONS(4028), - [anon_sym_GT_LPAREN] = ACTIONS(4028), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4028), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym_LF] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4028), + [1273] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4020), }, - [1312] = { - [sym_concatenation] = STATE(1719), - [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), - [aux_sym_expansion_repeat1] = STATE(1719), + [1274] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1275] = { + [sym__concat] = ACTIONS(3067), + [sym_variable_name] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_SEMI_SEMI] = ACTIONS(3069), + [anon_sym_PIPE_AMP] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [sym__special_characters] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), + [anon_sym_BQUOTE] = ACTIONS(3069), + [anon_sym_LT_LPAREN] = ACTIONS(3069), + [anon_sym_GT_LPAREN] = ACTIONS(3069), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), + [sym_word] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3069), + }, + [1276] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4024), + }, + [1277] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4026), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1278] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4028), + }, + [1279] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1280] = { + [sym_concatenation] = STATE(1749), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1749), [anon_sym_RBRACE] = ACTIONS(4030), [anon_sym_EQ] = ACTIONS(4032), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(4034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), [anon_sym_COLON] = ACTIONS(4032), [anon_sym_COLON_QMARK] = ACTIONS(4032), [anon_sym_COLON_DASH] = ACTIONS(4032), [anon_sym_PERCENT] = ACTIONS(4032), [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1281] = { + [sym__concat] = ACTIONS(3083), + [sym_variable_name] = ACTIONS(3083), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_RPAREN] = ACTIONS(3085), + [anon_sym_SEMI_SEMI] = ACTIONS(3085), + [anon_sym_PIPE_AMP] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [sym__special_characters] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), + [anon_sym_BQUOTE] = ACTIONS(3085), + [anon_sym_LT_LPAREN] = ACTIONS(3085), + [anon_sym_GT_LPAREN] = ACTIONS(3085), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3085), + [sym_word] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + }, + [1282] = { + [sym_concatenation] = STATE(1751), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1751), + [anon_sym_RBRACE] = ACTIONS(4036), + [anon_sym_EQ] = ACTIONS(4038), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4038), + [anon_sym_COLON_QMARK] = ACTIONS(4038), + [anon_sym_COLON_DASH] = ACTIONS(4038), + [anon_sym_PERCENT] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1283] = { + [sym__concat] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2922), + [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [anon_sym_PIPE_AMP] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [sym__special_characters] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), + [anon_sym_BQUOTE] = ACTIONS(2922), + [anon_sym_LT_LPAREN] = ACTIONS(2922), + [anon_sym_GT_LPAREN] = ACTIONS(2922), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2922), + [sym_word] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2922), + }, + [1284] = { + [sym__concat] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_RPAREN] = ACTIONS(2936), + [anon_sym_SEMI_SEMI] = ACTIONS(2936), + [anon_sym_PIPE_AMP] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [sym__special_characters] = ACTIONS(2936), + [anon_sym_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2936), + [sym_raw_string] = ACTIONS(2936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), + [anon_sym_BQUOTE] = ACTIONS(2936), + [anon_sym_LT_LPAREN] = ACTIONS(2936), + [anon_sym_GT_LPAREN] = ACTIONS(2936), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), + [sym_word] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_LF] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2936), + }, + [1285] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4042), + [sym_comment] = ACTIONS(53), + }, + [1286] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4044), + [sym_comment] = ACTIONS(53), + }, + [1287] = { + [anon_sym_RBRACE] = ACTIONS(4044), + [sym_comment] = ACTIONS(53), + }, + [1288] = { + [sym_concatenation] = STATE(1755), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1755), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_EQ] = ACTIONS(4048), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4048), + [anon_sym_COLON_QMARK] = ACTIONS(4048), + [anon_sym_COLON_DASH] = ACTIONS(4048), + [anon_sym_PERCENT] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1289] = { + [sym__concat] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3018), + [anon_sym_SEMI_SEMI] = ACTIONS(3018), + [anon_sym_PIPE_AMP] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [sym__special_characters] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), + [anon_sym_BQUOTE] = ACTIONS(3018), + [anon_sym_LT_LPAREN] = ACTIONS(3018), + [anon_sym_GT_LPAREN] = ACTIONS(3018), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3018), + [sym_word] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3018), + }, + [1290] = { + [sym_concatenation] = STATE(1758), + [sym_string] = STATE(1757), + [sym_simple_expansion] = STATE(1757), + [sym_string_expansion] = STATE(1757), + [sym_expansion] = STATE(1757), + [sym_command_substitution] = STATE(1757), + [sym_process_substitution] = STATE(1757), + [anon_sym_RBRACE] = ACTIONS(4044), + [sym__special_characters] = ACTIONS(4052), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(4054), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4054), + }, + [1291] = { + [sym__concat] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_SEMI_SEMI] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), + [anon_sym_BQUOTE] = ACTIONS(3061), + [anon_sym_LT_LPAREN] = ACTIONS(3061), + [anon_sym_GT_LPAREN] = ACTIONS(3061), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), + [sym_word] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + }, + [1292] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4056), + }, + [1293] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4058), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1294] = { + [sym__concat] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_SEMI_SEMI] = ACTIONS(3069), + [anon_sym_PIPE_AMP] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [sym__special_characters] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), + [anon_sym_BQUOTE] = ACTIONS(3069), + [anon_sym_LT_LPAREN] = ACTIONS(3069), + [anon_sym_GT_LPAREN] = ACTIONS(3069), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), + [sym_word] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3069), + }, + [1295] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4060), + }, + [1296] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4062), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1297] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4064), + }, + [1298] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1299] = { + [sym_concatenation] = STATE(1765), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1765), + [anon_sym_RBRACE] = ACTIONS(4066), + [anon_sym_EQ] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4068), + [anon_sym_COLON_QMARK] = ACTIONS(4068), + [anon_sym_COLON_DASH] = ACTIONS(4068), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1300] = { + [sym__concat] = ACTIONS(3083), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_RPAREN] = ACTIONS(3085), + [anon_sym_SEMI_SEMI] = ACTIONS(3085), + [anon_sym_PIPE_AMP] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [sym__special_characters] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), + [anon_sym_BQUOTE] = ACTIONS(3085), + [anon_sym_LT_LPAREN] = ACTIONS(3085), + [anon_sym_GT_LPAREN] = ACTIONS(3085), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3085), + [sym_word] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + }, + [1301] = { + [sym_concatenation] = STATE(1767), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1767), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_EQ] = ACTIONS(4074), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4076), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4074), + [anon_sym_COLON_QMARK] = ACTIONS(4074), + [anon_sym_COLON_DASH] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1302] = { + [sym_file_descriptor] = ACTIONS(2920), + [sym__concat] = ACTIONS(2920), + [sym_variable_name] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_PIPE_AMP] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_GT_GT] = ACTIONS(2920), + [anon_sym_AMP_GT] = ACTIONS(2922), + [anon_sym_AMP_GT_GT] = ACTIONS(2920), + [anon_sym_LT_AMP] = ACTIONS(2920), + [anon_sym_GT_AMP] = ACTIONS(2920), + [sym__special_characters] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2920), + [anon_sym_BQUOTE] = ACTIONS(2920), + [anon_sym_LT_LPAREN] = ACTIONS(2920), + [anon_sym_GT_LPAREN] = ACTIONS(2920), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2920), + }, + [1303] = { + [sym_file_descriptor] = ACTIONS(2934), + [sym__concat] = ACTIONS(2934), + [sym_variable_name] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_RPAREN] = 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), + [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(53), + [sym_word] = ACTIONS(2934), + }, + [1304] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4078), + [sym_comment] = ACTIONS(53), + }, + [1305] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4080), + [sym_comment] = ACTIONS(53), + }, + [1306] = { + [anon_sym_RBRACE] = ACTIONS(4080), + [sym_comment] = ACTIONS(53), + }, + [1307] = { + [sym_concatenation] = STATE(1771), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1771), + [anon_sym_RBRACE] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4084), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4084), + [anon_sym_COLON_QMARK] = ACTIONS(4084), + [anon_sym_COLON_DASH] = ACTIONS(4084), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1308] = { + [sym_file_descriptor] = ACTIONS(3016), + [sym__concat] = ACTIONS(3016), + [sym_variable_name] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3016), + [anon_sym_PIPE_AMP] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_GT_GT] = ACTIONS(3016), + [anon_sym_AMP_GT] = ACTIONS(3018), + [anon_sym_AMP_GT_GT] = ACTIONS(3016), + [anon_sym_LT_AMP] = ACTIONS(3016), + [anon_sym_GT_AMP] = ACTIONS(3016), + [sym__special_characters] = ACTIONS(3016), + [anon_sym_DQUOTE] = ACTIONS(3016), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3016), + [anon_sym_BQUOTE] = ACTIONS(3016), + [anon_sym_LT_LPAREN] = ACTIONS(3016), + [anon_sym_GT_LPAREN] = ACTIONS(3016), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3016), + }, + [1309] = { + [sym_concatenation] = STATE(1774), + [sym_string] = STATE(1773), + [sym_simple_expansion] = STATE(1773), + [sym_string_expansion] = STATE(1773), + [sym_expansion] = STATE(1773), + [sym_command_substitution] = STATE(1773), + [sym_process_substitution] = STATE(1773), + [anon_sym_RBRACE] = ACTIONS(4080), + [sym__special_characters] = ACTIONS(4088), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(4090), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4090), + }, + [1310] = { + [sym_file_descriptor] = ACTIONS(3059), + [sym__concat] = ACTIONS(3059), + [sym_variable_name] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_PIPE_AMP] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3059), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(3059), + [anon_sym_LT_AMP] = ACTIONS(3059), + [anon_sym_GT_AMP] = ACTIONS(3059), + [sym__special_characters] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(3059), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3059), + [anon_sym_BQUOTE] = ACTIONS(3059), + [anon_sym_LT_LPAREN] = ACTIONS(3059), + [anon_sym_GT_LPAREN] = ACTIONS(3059), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3059), + }, + [1311] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4092), + }, + [1312] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1313] = { - [sym__simple_heredoc_body] = ACTIONS(4036), - [sym__heredoc_body_beginning] = ACTIONS(4036), - [sym_file_descriptor] = ACTIONS(4036), - [sym__concat] = ACTIONS(4036), - [anon_sym_esac] = ACTIONS(4038), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_RPAREN] = ACTIONS(4038), - [anon_sym_SEMI_SEMI] = ACTIONS(4038), - [anon_sym_PIPE_AMP] = ACTIONS(4038), - [anon_sym_AMP_AMP] = ACTIONS(4038), - [anon_sym_PIPE_PIPE] = ACTIONS(4038), - [anon_sym_EQ_TILDE] = ACTIONS(4038), - [anon_sym_EQ_EQ] = ACTIONS(4038), - [anon_sym_LT] = ACTIONS(4038), - [anon_sym_GT] = ACTIONS(4038), - [anon_sym_GT_GT] = ACTIONS(4038), - [anon_sym_AMP_GT] = ACTIONS(4038), - [anon_sym_AMP_GT_GT] = ACTIONS(4038), - [anon_sym_LT_AMP] = ACTIONS(4038), - [anon_sym_GT_AMP] = ACTIONS(4038), - [anon_sym_LT_LT] = ACTIONS(4038), - [anon_sym_LT_LT_DASH] = ACTIONS(4038), - [anon_sym_LT_LT_LT] = ACTIONS(4038), - [sym__special_characters] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4038), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), - [anon_sym_BQUOTE] = ACTIONS(4038), - [anon_sym_LT_LPAREN] = ACTIONS(4038), - [anon_sym_GT_LPAREN] = ACTIONS(4038), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4038), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4038), + [sym_file_descriptor] = ACTIONS(3067), + [sym__concat] = ACTIONS(3067), + [sym_variable_name] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_PIPE_AMP] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_GT] = ACTIONS(3067), + [anon_sym_AMP_GT] = ACTIONS(3069), + [anon_sym_AMP_GT_GT] = ACTIONS(3067), + [anon_sym_LT_AMP] = ACTIONS(3067), + [anon_sym_GT_AMP] = ACTIONS(3067), + [sym__special_characters] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), + [anon_sym_BQUOTE] = ACTIONS(3067), + [anon_sym_LT_LPAREN] = ACTIONS(3067), + [anon_sym_GT_LPAREN] = ACTIONS(3067), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3067), }, [1314] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4096), }, [1315] = { - [sym__simple_heredoc_body] = ACTIONS(4042), - [sym__heredoc_body_beginning] = ACTIONS(4042), - [sym_file_descriptor] = ACTIONS(4042), - [sym__concat] = ACTIONS(4042), - [anon_sym_esac] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [anon_sym_EQ_TILDE] = ACTIONS(4044), - [anon_sym_EQ_EQ] = ACTIONS(4044), - [anon_sym_LT] = ACTIONS(4044), - [anon_sym_GT] = ACTIONS(4044), - [anon_sym_GT_GT] = ACTIONS(4044), - [anon_sym_AMP_GT] = ACTIONS(4044), - [anon_sym_AMP_GT_GT] = ACTIONS(4044), - [anon_sym_LT_AMP] = ACTIONS(4044), - [anon_sym_GT_AMP] = ACTIONS(4044), - [anon_sym_LT_LT] = ACTIONS(4044), - [anon_sym_LT_LT_DASH] = ACTIONS(4044), - [anon_sym_LT_LT_LT] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4044), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4044), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1316] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4046), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4100), }, [1317] = { - [aux_sym_concatenation_repeat1] = STATE(1722), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(705), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(705), - [anon_sym_LT_AMP] = ACTIONS(705), - [anon_sym_GT_AMP] = ACTIONS(705), - [sym__special_characters] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LT_LPAREN] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(705), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4080), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1318] = { - [sym_concatenation] = STATE(1054), - [sym_string] = STATE(597), - [sym_simple_expansion] = STATE(597), - [sym_string_expansion] = STATE(597), - [sym_expansion] = STATE(597), - [sym_command_substitution] = STATE(597), - [sym_process_substitution] = STATE(597), - [aux_sym_for_statement_repeat1] = STATE(1054), - [anon_sym_SEMI_SEMI] = ACTIONS(4048), - [sym__special_characters] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(71), - [sym_raw_string] = ACTIONS(2255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2259), - [anon_sym_BQUOTE] = ACTIONS(2261), - [anon_sym_LT_LPAREN] = ACTIONS(2263), - [anon_sym_GT_LPAREN] = ACTIONS(2263), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(4048), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4048), + [sym_concatenation] = STATE(1781), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1781), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4104), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4104), + [anon_sym_COLON_QMARK] = ACTIONS(4104), + [anon_sym_COLON_DASH] = ACTIONS(4104), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1319] = { - [sym__terminated_statement] = STATE(1725), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1725), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(4052), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_file_descriptor] = ACTIONS(3083), + [sym__concat] = ACTIONS(3083), + [sym_variable_name] = ACTIONS(3083), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_RPAREN] = ACTIONS(3083), + [anon_sym_PIPE_AMP] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_GT] = ACTIONS(3085), + [anon_sym_GT_GT] = ACTIONS(3083), + [anon_sym_AMP_GT] = ACTIONS(3085), + [anon_sym_AMP_GT_GT] = ACTIONS(3083), + [anon_sym_LT_AMP] = ACTIONS(3083), + [anon_sym_GT_AMP] = ACTIONS(3083), + [sym__special_characters] = ACTIONS(3083), + [anon_sym_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3083), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), + [anon_sym_BQUOTE] = ACTIONS(3083), + [anon_sym_LT_LPAREN] = ACTIONS(3083), + [anon_sym_GT_LPAREN] = ACTIONS(3083), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(3083), }, [1320] = { - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_RPAREN] = ACTIONS(2271), - [anon_sym_PIPE_AMP] = ACTIONS(2271), - [anon_sym_AMP_AMP] = ACTIONS(2271), - [anon_sym_PIPE_PIPE] = ACTIONS(2271), - [anon_sym_BQUOTE] = ACTIONS(2271), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1783), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1783), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4110), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4112), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4110), + [anon_sym_COLON_QMARK] = ACTIONS(4110), + [anon_sym_COLON_DASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1321] = { - [sym__simple_heredoc_body] = ACTIONS(2273), - [sym__heredoc_body_beginning] = ACTIONS(2273), - [sym_file_descriptor] = ACTIONS(2273), - [anon_sym_PIPE] = ACTIONS(2275), - [anon_sym_RPAREN] = ACTIONS(2273), - [anon_sym_PIPE_AMP] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(2273), - [anon_sym_PIPE_PIPE] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_GT] = ACTIONS(2275), - [anon_sym_GT_GT] = ACTIONS(2273), - [anon_sym_AMP_GT] = ACTIONS(2275), - [anon_sym_AMP_GT_GT] = ACTIONS(2273), - [anon_sym_LT_AMP] = ACTIONS(2273), - [anon_sym_GT_AMP] = ACTIONS(2273), - [anon_sym_LT_LT] = ACTIONS(2275), - [anon_sym_LT_LT_DASH] = ACTIONS(2273), - [anon_sym_LT_LT_LT] = ACTIONS(2273), - [anon_sym_BQUOTE] = ACTIONS(2273), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2936), + [sym__string_content] = ACTIONS(2934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), + [anon_sym_BQUOTE] = ACTIONS(2936), + [sym_comment] = ACTIONS(179), }, [1322] = { - [sym__terminated_statement] = STATE(1058), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1058), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(4054), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4114), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), }, [1323] = { - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_PIPE_AMP] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_BQUOTE] = ACTIONS(2281), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4116), [sym_comment] = ACTIONS(53), }, [1324] = { - [sym_file_redirect] = STATE(959), - [sym_heredoc_redirect] = STATE(959), - [sym_heredoc_body] = STATE(1727), - [sym_herestring_redirect] = STATE(959), - [aux_sym_while_statement_repeat1] = STATE(959), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_PIPE_AMP] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(901), - [anon_sym_AMP_GT_GT] = ACTIONS(903), - [anon_sym_LT_AMP] = ACTIONS(903), - [anon_sym_GT_AMP] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(4116), [sym_comment] = ACTIONS(53), }, [1325] = { - [anon_sym_PIPE] = ACTIONS(2283), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_PIPE_AMP] = ACTIONS(2285), - [anon_sym_AMP_AMP] = ACTIONS(2285), - [anon_sym_PIPE_PIPE] = ACTIONS(2285), - [anon_sym_BQUOTE] = ACTIONS(2285), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1787), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1787), + [anon_sym_RBRACE] = ACTIONS(4118), + [anon_sym_EQ] = ACTIONS(4120), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4120), + [anon_sym_COLON_QMARK] = ACTIONS(4120), + [anon_sym_COLON_DASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1326] = { - [anon_sym_fi] = ACTIONS(4056), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3016), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym__string_content] = ACTIONS(3016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), + [anon_sym_BQUOTE] = ACTIONS(3018), + [sym_comment] = ACTIONS(179), }, [1327] = { - [sym__terminated_statement] = STATE(1064), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(1729), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1064), - [aux_sym_if_statement_repeat1] = STATE(1730), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(4058), - [anon_sym_elif] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_concatenation] = STATE(1790), + [sym_string] = STATE(1789), + [sym_simple_expansion] = STATE(1789), + [sym_string_expansion] = STATE(1789), + [sym_expansion] = STATE(1789), + [sym_command_substitution] = STATE(1789), + [sym_process_substitution] = STATE(1789), + [anon_sym_RBRACE] = ACTIONS(4116), + [sym__special_characters] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(4126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(4126), }, [1328] = { - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(1729), - [aux_sym_if_statement_repeat1] = STATE(1066), - [anon_sym_fi] = ACTIONS(4056), - [anon_sym_elif] = ACTIONS(2295), - [anon_sym_else] = ACTIONS(2297), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym__string_content] = ACTIONS(3059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), + [anon_sym_BQUOTE] = ACTIONS(3061), + [sym_comment] = ACTIONS(179), }, [1329] = { - [sym_case_item] = STATE(1733), - [sym_last_case_item] = STATE(1732), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1733), - [anon_sym_esac] = ACTIONS(4060), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2305), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4128), }, [1330] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4062), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4062), - [anon_sym_LF] = ACTIONS(4064), - [anon_sym_AMP] = ACTIONS(4062), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4130), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1331] = { - [sym_case_item] = STATE(1737), - [sym_last_case_item] = STATE(1736), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1737), - [anon_sym_esac] = ACTIONS(4066), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2305), + [sym__concat] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym__string_content] = ACTIONS(3067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_comment] = ACTIONS(179), }, [1332] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4068), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym_LF] = ACTIONS(4070), - [anon_sym_AMP] = ACTIONS(4068), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4132), }, [1333] = { - [sym_compound_statement] = STATE(1739), - [anon_sym_LBRACE] = ACTIONS(1874), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1334] = { - [sym_file_descriptor] = ACTIONS(2362), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_RPAREN] = ACTIONS(2362), - [anon_sym_PIPE_AMP] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2362), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_LT] = ACTIONS(2364), - [anon_sym_GT] = ACTIONS(2364), - [anon_sym_GT_GT] = ACTIONS(2362), - [anon_sym_AMP_GT] = ACTIONS(2364), - [anon_sym_AMP_GT_GT] = ACTIONS(2362), - [anon_sym_LT_AMP] = ACTIONS(2362), - [anon_sym_GT_AMP] = ACTIONS(2362), - [anon_sym_BQUOTE] = ACTIONS(2362), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4136), }, [1335] = { - [sym__terminated_statement] = STATE(1100), - [sym_for_statement] = STATE(638), - [sym_while_statement] = STATE(638), - [sym_if_statement] = STATE(638), - [sym_case_statement] = STATE(638), - [sym_function_definition] = STATE(638), - [sym_subshell] = STATE(638), - [sym_pipeline] = STATE(638), - [sym_list] = STATE(638), - [sym_negated_command] = STATE(638), - [sym_test_command] = STATE(638), - [sym_declaration_command] = STATE(638), - [sym_unset_command] = STATE(638), - [sym_command] = STATE(638), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(639), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1100), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1336] = { - [anon_sym_LT] = ACTIONS(4074), - [anon_sym_GT] = ACTIONS(4074), - [anon_sym_GT_GT] = ACTIONS(4076), - [anon_sym_AMP_GT] = ACTIONS(4074), - [anon_sym_AMP_GT_GT] = ACTIONS(4076), - [anon_sym_LT_AMP] = ACTIONS(4076), - [anon_sym_GT_AMP] = ACTIONS(4076), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1797), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1797), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_EQ] = ACTIONS(4140), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4140), + [anon_sym_COLON_QMARK] = ACTIONS(4140), + [anon_sym_COLON_DASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1337] = { - [sym_concatenation] = STATE(1744), - [sym_string] = STATE(1743), - [sym_simple_expansion] = STATE(1743), - [sym_string_expansion] = STATE(1743), - [sym_expansion] = STATE(1743), - [sym_command_substitution] = STATE(1743), - [sym_process_substitution] = STATE(1743), - [sym__special_characters] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(843), - [sym_raw_string] = ACTIONS(4080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(851), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4080), + [sym__concat] = ACTIONS(3083), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym__string_content] = ACTIONS(3083), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), + [anon_sym_BQUOTE] = ACTIONS(3085), + [sym_comment] = ACTIONS(179), }, [1338] = { - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(2382), - [anon_sym_PIPE_AMP] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2382), - [anon_sym_PIPE_PIPE] = ACTIONS(2382), - [anon_sym_BQUOTE] = ACTIONS(2382), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1799), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1799), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_EQ] = ACTIONS(4146), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4146), + [anon_sym_COLON_QMARK] = ACTIONS(4146), + [anon_sym_COLON_DASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1339] = { - [anon_sym_PIPE] = ACTIONS(2415), - [anon_sym_RPAREN] = ACTIONS(2417), - [anon_sym_PIPE_AMP] = ACTIONS(2417), - [anon_sym_AMP_AMP] = ACTIONS(2417), - [anon_sym_PIPE_PIPE] = ACTIONS(2417), - [anon_sym_BQUOTE] = ACTIONS(2417), + [sym_string] = STATE(723), + [sym_simple_expansion] = STATE(723), + [sym_string_expansion] = STATE(723), + [sym_expansion] = STATE(723), + [sym_command_substitution] = STATE(723), + [sym_process_substitution] = STATE(723), + [anon_sym_RBRACK] = ACTIONS(4150), + [sym__special_characters] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1399), }, [1340] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(4082), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(969), - [sym_raw_string] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(969), + [sym__concat] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_EQ] = ACTIONS(4154), + [sym__special_characters] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_DOLLAR] = ACTIONS(4154), + [sym_raw_string] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_COLON] = ACTIONS(4154), + [anon_sym_COLON_QMARK] = ACTIONS(4154), + [anon_sym_COLON_DASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2245), + [anon_sym_BQUOTE] = ACTIONS(2245), + [anon_sym_LT_LPAREN] = ACTIONS(2245), + [anon_sym_GT_LPAREN] = ACTIONS(2245), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4154), }, [1341] = { - [anon_sym_LT] = ACTIONS(4084), - [anon_sym_GT] = ACTIONS(4084), - [anon_sym_GT_GT] = ACTIONS(4086), - [anon_sym_AMP_GT] = ACTIONS(4084), - [anon_sym_AMP_GT_GT] = ACTIONS(4086), - [anon_sym_LT_AMP] = ACTIONS(4086), - [anon_sym_GT_AMP] = ACTIONS(4086), + [sym_string] = STATE(723), + [sym_simple_expansion] = STATE(723), + [sym_string_expansion] = STATE(723), + [sym_expansion] = STATE(723), + [sym_command_substitution] = STATE(723), + [sym_process_substitution] = STATE(723), + [anon_sym_RBRACK] = ACTIONS(4156), + [sym__special_characters] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1399), }, [1342] = { - [sym_concatenation] = STATE(1755), - [sym_string] = STATE(1750), - [sym_simple_expansion] = STATE(1750), - [sym_string_expansion] = STATE(1750), - [sym_expansion] = STATE(1750), - [sym_command_substitution] = STATE(1750), - [sym_process_substitution] = STATE(1750), - [sym__special_characters] = ACTIONS(4088), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4094), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), - [anon_sym_BQUOTE] = ACTIONS(4100), - [anon_sym_LT_LPAREN] = ACTIONS(4102), - [anon_sym_GT_LPAREN] = ACTIONS(4102), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4094), + [sym__concat] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_EQ] = ACTIONS(4160), + [sym__special_characters] = ACTIONS(4160), + [anon_sym_DQUOTE] = ACTIONS(2251), + [anon_sym_DOLLAR] = ACTIONS(4160), + [sym_raw_string] = ACTIONS(2251), + [anon_sym_POUND] = ACTIONS(2251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2251), + [anon_sym_SLASH] = ACTIONS(2251), + [anon_sym_COLON] = ACTIONS(4160), + [anon_sym_COLON_QMARK] = ACTIONS(4160), + [anon_sym_COLON_DASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2251), + [anon_sym_BQUOTE] = ACTIONS(2251), + [anon_sym_LT_LPAREN] = ACTIONS(2251), + [anon_sym_GT_LPAREN] = ACTIONS(2251), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4160), }, [1343] = { - [sym_heredoc_start] = ACTIONS(4104), + [anon_sym_RBRACK] = ACTIONS(4156), [sym_comment] = ACTIONS(53), }, [1344] = { - [sym_concatenation] = STATE(1759), - [sym_string] = STATE(1758), - [sym_simple_expansion] = STATE(1758), - [sym_string_expansion] = STATE(1758), - [sym_expansion] = STATE(1758), - [sym_command_substitution] = STATE(1758), - [sym_process_substitution] = STATE(1758), - [sym__special_characters] = ACTIONS(4106), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), - [anon_sym_BQUOTE] = ACTIONS(4100), - [anon_sym_LT_LPAREN] = ACTIONS(4102), - [anon_sym_GT_LPAREN] = ACTIONS(4102), + [sym_string] = STATE(1804), + [sym_simple_expansion] = STATE(1804), + [sym_string_expansion] = STATE(1804), + [sym_expansion] = STATE(1804), + [sym_command_substitution] = STATE(1804), + [sym_process_substitution] = STATE(1804), + [sym__special_characters] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(4162), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4108), + [sym_word] = ACTIONS(4162), }, [1345] = { - [sym_file_redirect] = STATE(1760), - [sym_heredoc_redirect] = STATE(1760), - [sym_herestring_redirect] = STATE(1760), - [aux_sym_while_statement_repeat1] = STATE(1760), - [sym_file_descriptor] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_RPAREN] = ACTIONS(2528), - [anon_sym_PIPE_AMP] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_GT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2969), - [anon_sym_AMP_GT] = ACTIONS(2967), - [anon_sym_AMP_GT_GT] = ACTIONS(2969), - [anon_sym_LT_AMP] = ACTIONS(2969), - [anon_sym_GT_AMP] = ACTIONS(2969), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_LT_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT_LT] = ACTIONS(2975), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(4164), + [sym__heredoc_body_beginning] = ACTIONS(4164), + [sym_file_descriptor] = ACTIONS(4164), + [sym__concat] = ACTIONS(4164), + [anon_sym_esac] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_SEMI_SEMI] = ACTIONS(4166), + [anon_sym_PIPE_AMP] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_EQ_TILDE] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4166), + [anon_sym_AMP_GT] = ACTIONS(4166), + [anon_sym_AMP_GT_GT] = ACTIONS(4166), + [anon_sym_LT_AMP] = ACTIONS(4166), + [anon_sym_GT_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_LT_LT_DASH] = ACTIONS(4166), + [anon_sym_LT_LT_LT] = ACTIONS(4166), + [sym__special_characters] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), + [anon_sym_BQUOTE] = ACTIONS(4166), + [anon_sym_LT_LPAREN] = ACTIONS(4166), + [anon_sym_GT_LPAREN] = ACTIONS(4166), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_LF] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4166), }, [1346] = { - [sym_variable_name] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_PIPE_AMP] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [sym__special_characters] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), - [anon_sym_BQUOTE] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(1123), - [anon_sym_GT_LPAREN] = ACTIONS(1123), + [aux_sym_concatenation_repeat1] = STATE(1805), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(731), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), - [sym_word] = ACTIONS(1125), }, [1347] = { - [sym_concatenation] = STATE(1762), - [sym_string] = STATE(571), - [sym_simple_expansion] = STATE(571), - [sym_string_expansion] = STATE(571), - [sym_expansion] = STATE(571), - [sym_command_substitution] = STATE(571), - [sym_process_substitution] = STATE(571), - [aux_sym_for_statement_repeat1] = STATE(1762), - [anon_sym_RPAREN] = ACTIONS(4110), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), + [sym__concat] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(735), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1135), }, [1348] = { - [aux_sym_concatenation_repeat1] = STATE(881), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_PIPE_AMP] = ACTIONS(1145), - [anon_sym_AMP_AMP] = ACTIONS(1145), - [anon_sym_PIPE_PIPE] = ACTIONS(1145), - [sym__special_characters] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [anon_sym_DOLLAR] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1145), - [anon_sym_BQUOTE] = ACTIONS(1145), - [anon_sym_LT_LPAREN] = ACTIONS(1145), - [anon_sym_GT_LPAREN] = ACTIONS(1145), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1149), - [sym_word] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(4168), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [1349] = { - [aux_sym_concatenation_repeat1] = STATE(881), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_PIPE_AMP] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [sym__special_characters] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), - [anon_sym_BQUOTE] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(1123), - [anon_sym_GT_LPAREN] = ACTIONS(1123), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), - [sym_word] = ACTIONS(1125), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(4168), + [anon_sym_DOLLAR] = ACTIONS(4170), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [1350] = { - [sym__concat] = ACTIONS(1672), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym__concat] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), }, [1351] = { - [aux_sym_concatenation_repeat1] = STATE(1351), - [sym__concat] = ACTIONS(4112), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym__concat] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), }, [1352] = { - [sym__concat] = ACTIONS(1679), - [sym_variable_name] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_PIPE_AMP] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_PIPE_PIPE] = ACTIONS(1679), - [sym__special_characters] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1679), - [anon_sym_BQUOTE] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1679), - [anon_sym_GT_LPAREN] = ACTIONS(1679), + [sym__concat] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), - [sym_word] = ACTIONS(1681), }, [1353] = { - [anon_sym_DQUOTE] = ACTIONS(4115), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), + [sym__simple_heredoc_body] = ACTIONS(4172), + [sym__heredoc_body_beginning] = ACTIONS(4172), + [sym_file_descriptor] = ACTIONS(4172), + [sym__concat] = ACTIONS(4172), + [anon_sym_esac] = ACTIONS(4174), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4174), + [anon_sym_SEMI_SEMI] = ACTIONS(4174), + [anon_sym_PIPE_AMP] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4174), + [anon_sym_EQ_TILDE] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_AMP_GT] = ACTIONS(4174), + [anon_sym_AMP_GT_GT] = ACTIONS(4174), + [anon_sym_LT_AMP] = ACTIONS(4174), + [anon_sym_GT_AMP] = ACTIONS(4174), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_LT_LT_DASH] = ACTIONS(4174), + [anon_sym_LT_LT_LT] = ACTIONS(4174), + [sym__special_characters] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), + [anon_sym_BQUOTE] = ACTIONS(4174), + [anon_sym_LT_LPAREN] = ACTIONS(4174), + [anon_sym_GT_LPAREN] = ACTIONS(4174), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym_LF] = ACTIONS(4172), + [anon_sym_AMP] = ACTIONS(4174), }, [1354] = { - [sym_concatenation] = STATE(1767), - [sym_string] = STATE(1766), - [sym_simple_expansion] = STATE(1766), - [sym_string_expansion] = STATE(1766), - [sym_expansion] = STATE(1766), - [sym_command_substitution] = STATE(1766), - [sym_process_substitution] = STATE(1766), - [anon_sym_RBRACE] = ACTIONS(4117), - [sym__special_characters] = ACTIONS(4119), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(4121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(4176), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4121), }, [1355] = { - [sym__concat] = ACTIONS(1764), - [sym_variable_name] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1764), - [anon_sym_PIPE_AMP] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [sym__special_characters] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1764), - [anon_sym_BQUOTE] = ACTIONS(1764), - [anon_sym_LT_LPAREN] = ACTIONS(1764), - [anon_sym_GT_LPAREN] = ACTIONS(1764), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), - [sym_word] = ACTIONS(1766), + [sym_concatenation] = STATE(1811), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1811), + [anon_sym_RBRACE] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(4180), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4182), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_COLON] = ACTIONS(4180), + [anon_sym_COLON_QMARK] = ACTIONS(4180), + [anon_sym_COLON_DASH] = ACTIONS(4180), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_DASH] = ACTIONS(4180), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1356] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4123), + [sym_subscript] = STATE(1815), + [sym_variable_name] = ACTIONS(4186), + [anon_sym_DOLLAR] = ACTIONS(4188), + [anon_sym_DASH] = ACTIONS(4188), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4188), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_QMARK] = ACTIONS(4188), + [anon_sym_0] = ACTIONS(4192), + [anon_sym__] = ACTIONS(4192), }, [1357] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4125), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(1818), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1818), + [anon_sym_RBRACE] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4196), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4200), + [anon_sym_COLON] = ACTIONS(4196), + [anon_sym_COLON_QMARK] = ACTIONS(4196), + [anon_sym_COLON_DASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1358] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(4127), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1821), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1821), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4204), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4208), + [anon_sym_COLON] = ACTIONS(4204), + [anon_sym_COLON_QMARK] = ACTIONS(4204), + [anon_sym_COLON_DASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1359] = { - [sym_concatenation] = STATE(1773), - [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), - [aux_sym_expansion_repeat1] = STATE(1773), - [anon_sym_RBRACE] = ACTIONS(4129), - [anon_sym_EQ] = ACTIONS(4131), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4133), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(4131), - [anon_sym_COLON_QMARK] = ACTIONS(4131), - [anon_sym_COLON_DASH] = ACTIONS(4131), - [anon_sym_PERCENT] = ACTIONS(4131), - [anon_sym_DASH] = ACTIONS(4131), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(4210), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), }, [1360] = { - [sym_concatenation] = STATE(1776), - [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), - [aux_sym_expansion_repeat1] = STATE(1776), - [anon_sym_RBRACE] = ACTIONS(4137), - [anon_sym_EQ] = ACTIONS(4139), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4141), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4143), - [anon_sym_COLON] = ACTIONS(4139), - [anon_sym_COLON_QMARK] = ACTIONS(4139), - [anon_sym_COLON_DASH] = ACTIONS(4139), - [anon_sym_PERCENT] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4139), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(4210), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [1361] = { - [sym_concatenation] = STATE(1778), - [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), - [aux_sym_expansion_repeat1] = STATE(1778), - [anon_sym_RBRACE] = ACTIONS(4117), - [anon_sym_EQ] = ACTIONS(4145), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4147), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4149), - [anon_sym_COLON] = ACTIONS(4145), - [anon_sym_COLON_QMARK] = ACTIONS(4145), - [anon_sym_COLON_DASH] = ACTIONS(4145), - [anon_sym_PERCENT] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(4210), + [sym_comment] = ACTIONS(53), }, [1362] = { - [sym__concat] = ACTIONS(1832), - [sym_variable_name] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(4210), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), - [sym_word] = ACTIONS(1834), + [sym_word] = ACTIONS(371), }, [1363] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4151), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(4212), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), }, [1364] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4153), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(4212), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [1365] = { - [sym__concat] = ACTIONS(1840), - [sym_variable_name] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_PIPE_AMP] = ACTIONS(1840), - [anon_sym_AMP_AMP] = ACTIONS(1840), - [anon_sym_PIPE_PIPE] = ACTIONS(1840), - [sym__special_characters] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1840), - [anon_sym_LT_LPAREN] = ACTIONS(1840), - [anon_sym_GT_LPAREN] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), - [sym_word] = ACTIONS(1842), + [sym__concat] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_COLON] = ACTIONS(1756), + [anon_sym_COLON_QMARK] = ACTIONS(1756), + [anon_sym_COLON_DASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), }, [1366] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4155), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(4214), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_COLON] = ACTIONS(1756), + [anon_sym_COLON_QMARK] = ACTIONS(1756), + [anon_sym_COLON_DASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), }, [1367] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4117), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_EQ] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(1761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), + [anon_sym_COLON] = ACTIONS(1763), + [anon_sym_COLON_QMARK] = ACTIONS(1763), + [anon_sym_COLON_DASH] = ACTIONS(1763), + [anon_sym_PERCENT] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), + [anon_sym_BQUOTE] = ACTIONS(1761), + [anon_sym_LT_LPAREN] = ACTIONS(1761), + [anon_sym_GT_LPAREN] = ACTIONS(1761), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1763), }, [1368] = { - [sym__concat] = ACTIONS(1980), - [sym_variable_name] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [sym__special_characters] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_LT_LPAREN] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1980), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), - [sym_word] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(4217), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [1369] = { - [sym__concat] = ACTIONS(2046), - [sym_variable_name] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2046), - [anon_sym_PIPE_AMP] = ACTIONS(2046), - [anon_sym_AMP_AMP] = ACTIONS(2046), - [anon_sym_PIPE_PIPE] = ACTIONS(2046), - [sym__special_characters] = ACTIONS(2046), - [anon_sym_DQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2046), - [anon_sym_BQUOTE] = ACTIONS(2046), - [anon_sym_LT_LPAREN] = ACTIONS(2046), - [anon_sym_GT_LPAREN] = ACTIONS(2046), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2048), - [sym_word] = ACTIONS(2048), - }, - [1370] = { - [sym__concat] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - }, - [1371] = { - [aux_sym_concatenation_repeat1] = STATE(1371), - [sym__concat] = ACTIONS(4157), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - }, - [1372] = { - [sym__concat] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_PIPE_AMP] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_PIPE_PIPE] = ACTIONS(1679), - [sym__special_characters] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1679), - [anon_sym_BQUOTE] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1679), - [anon_sym_GT_LPAREN] = ACTIONS(1679), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), - [sym_word] = ACTIONS(1681), - }, - [1373] = { - [anon_sym_DQUOTE] = ACTIONS(4160), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [1374] = { - [sym_concatenation] = STATE(1786), - [sym_string] = STATE(1785), - [sym_simple_expansion] = STATE(1785), - [sym_string_expansion] = STATE(1785), - [sym_expansion] = STATE(1785), - [sym_command_substitution] = STATE(1785), - [sym_process_substitution] = STATE(1785), - [anon_sym_RBRACE] = ACTIONS(4162), - [sym__special_characters] = ACTIONS(4164), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(4166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4166), - }, - [1375] = { - [sym__concat] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1764), - [anon_sym_PIPE_AMP] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [sym__special_characters] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1764), - [anon_sym_BQUOTE] = ACTIONS(1764), - [anon_sym_LT_LPAREN] = ACTIONS(1764), - [anon_sym_GT_LPAREN] = ACTIONS(1764), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), - [sym_word] = ACTIONS(1766), - }, - [1376] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4168), - }, - [1377] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4170), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1378] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(4172), - [sym_comment] = ACTIONS(53), - }, - [1379] = { - [sym_concatenation] = STATE(1792), - [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), - [aux_sym_expansion_repeat1] = STATE(1792), - [anon_sym_RBRACE] = ACTIONS(4174), - [anon_sym_EQ] = ACTIONS(4176), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4180), - [anon_sym_COLON] = ACTIONS(4176), - [anon_sym_COLON_QMARK] = ACTIONS(4176), - [anon_sym_COLON_DASH] = ACTIONS(4176), - [anon_sym_PERCENT] = ACTIONS(4176), - [anon_sym_DASH] = ACTIONS(4176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1380] = { - [sym_concatenation] = STATE(1795), - [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), - [aux_sym_expansion_repeat1] = STATE(1795), - [anon_sym_RBRACE] = ACTIONS(4182), - [anon_sym_EQ] = ACTIONS(4184), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4184), - [anon_sym_COLON_QMARK] = ACTIONS(4184), - [anon_sym_COLON_DASH] = ACTIONS(4184), - [anon_sym_PERCENT] = ACTIONS(4184), - [anon_sym_DASH] = ACTIONS(4184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1381] = { - [sym_concatenation] = STATE(1797), - [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), - [aux_sym_expansion_repeat1] = STATE(1797), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_EQ] = ACTIONS(4190), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_COLON] = ACTIONS(4190), - [anon_sym_COLON_QMARK] = ACTIONS(4190), - [anon_sym_COLON_DASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1382] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), - [sym_word] = ACTIONS(1834), - }, - [1383] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4196), - }, - [1384] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1385] = { - [sym__concat] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_PIPE_AMP] = ACTIONS(1840), - [anon_sym_AMP_AMP] = ACTIONS(1840), - [anon_sym_PIPE_PIPE] = ACTIONS(1840), - [sym__special_characters] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1840), - [anon_sym_LT_LPAREN] = ACTIONS(1840), - [anon_sym_GT_LPAREN] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), - [sym_word] = ACTIONS(1842), - }, - [1386] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4200), - }, - [1387] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1388] = { - [sym__concat] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [sym__special_characters] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_LT_LPAREN] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1980), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), - [sym_word] = ACTIONS(1982), - }, - [1389] = { - [sym__concat] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2046), - [anon_sym_PIPE_AMP] = ACTIONS(2046), - [anon_sym_AMP_AMP] = ACTIONS(2046), - [anon_sym_PIPE_PIPE] = ACTIONS(2046), - [sym__special_characters] = ACTIONS(2046), - [anon_sym_DQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2046), - [anon_sym_BQUOTE] = ACTIONS(2046), - [anon_sym_LT_LPAREN] = ACTIONS(2046), - [anon_sym_GT_LPAREN] = ACTIONS(2046), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2048), - [sym_word] = ACTIONS(2048), - }, - [1390] = { - [sym__simple_heredoc_body] = ACTIONS(2756), - [sym__heredoc_body_beginning] = ACTIONS(2756), - [sym_file_descriptor] = ACTIONS(2756), - [sym__concat] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_PIPE_AMP] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_EQ_TILDE] = ACTIONS(2758), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_AMP_GT] = ACTIONS(2758), - [anon_sym_AMP_GT_GT] = ACTIONS(2756), - [anon_sym_LT_AMP] = ACTIONS(2756), - [anon_sym_GT_AMP] = ACTIONS(2756), - [anon_sym_LT_LT] = ACTIONS(2758), - [anon_sym_LT_LT_DASH] = ACTIONS(2756), - [anon_sym_LT_LT_LT] = ACTIONS(2756), - [sym__special_characters] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), - [anon_sym_BQUOTE] = ACTIONS(2756), - [anon_sym_LT_LPAREN] = ACTIONS(2756), - [anon_sym_GT_LPAREN] = ACTIONS(2756), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2758), - }, - [1391] = { - [sym__simple_heredoc_body] = ACTIONS(2770), - [sym__heredoc_body_beginning] = ACTIONS(2770), - [sym_file_descriptor] = ACTIONS(2770), - [sym__concat] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2770), - [anon_sym_PIPE_AMP] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_EQ_TILDE] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2770), - [anon_sym_AMP_GT] = ACTIONS(2772), - [anon_sym_AMP_GT_GT] = ACTIONS(2770), - [anon_sym_LT_AMP] = ACTIONS(2770), - [anon_sym_GT_AMP] = ACTIONS(2770), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_LT_LT_DASH] = ACTIONS(2770), - [anon_sym_LT_LT_LT] = ACTIONS(2770), - [sym__special_characters] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2770), - [anon_sym_BQUOTE] = ACTIONS(2770), - [anon_sym_LT_LPAREN] = ACTIONS(2770), - [anon_sym_GT_LPAREN] = ACTIONS(2770), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2772), - }, - [1392] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4202), - [sym_comment] = ACTIONS(53), - }, - [1393] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4204), - [sym_comment] = ACTIONS(53), - }, - [1394] = { - [anon_sym_RBRACE] = ACTIONS(4204), - [sym_comment] = ACTIONS(53), - }, - [1395] = { - [sym_concatenation] = STATE(1804), - [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), - [aux_sym_expansion_repeat1] = STATE(1804), - [anon_sym_RBRACE] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(4208), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4208), - [anon_sym_COLON_QMARK] = ACTIONS(4208), - [anon_sym_COLON_DASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1396] = { - [sym__simple_heredoc_body] = ACTIONS(2852), - [sym__heredoc_body_beginning] = ACTIONS(2852), - [sym_file_descriptor] = ACTIONS(2852), - [sym__concat] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2852), - [anon_sym_PIPE_AMP] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_EQ_TILDE] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_AMP_GT] = ACTIONS(2854), - [anon_sym_AMP_GT_GT] = ACTIONS(2852), - [anon_sym_LT_AMP] = ACTIONS(2852), - [anon_sym_GT_AMP] = ACTIONS(2852), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_LT_LT_DASH] = ACTIONS(2852), - [anon_sym_LT_LT_LT] = ACTIONS(2852), - [sym__special_characters] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2852), - [anon_sym_BQUOTE] = ACTIONS(2852), - [anon_sym_LT_LPAREN] = ACTIONS(2852), - [anon_sym_GT_LPAREN] = ACTIONS(2852), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2854), - }, - [1397] = { - [sym_concatenation] = STATE(1807), - [sym_string] = STATE(1806), - [sym_simple_expansion] = STATE(1806), - [sym_string_expansion] = STATE(1806), - [sym_expansion] = STATE(1806), - [sym_command_substitution] = STATE(1806), - [sym_process_substitution] = STATE(1806), - [anon_sym_RBRACE] = ACTIONS(4204), - [sym__special_characters] = ACTIONS(4212), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4214), - }, - [1398] = { - [sym__simple_heredoc_body] = ACTIONS(2895), - [sym__heredoc_body_beginning] = ACTIONS(2895), - [sym_file_descriptor] = ACTIONS(2895), - [sym__concat] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2895), - [anon_sym_PIPE_AMP] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_EQ_TILDE] = ACTIONS(2897), - [anon_sym_EQ_EQ] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2897), - [anon_sym_GT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_AMP_GT] = ACTIONS(2897), - [anon_sym_AMP_GT_GT] = ACTIONS(2895), - [anon_sym_LT_AMP] = ACTIONS(2895), - [anon_sym_GT_AMP] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_LT_LT_DASH] = ACTIONS(2895), - [anon_sym_LT_LT_LT] = ACTIONS(2895), - [sym__special_characters] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2895), - [anon_sym_BQUOTE] = ACTIONS(2895), - [anon_sym_LT_LPAREN] = ACTIONS(2895), - [anon_sym_GT_LPAREN] = ACTIONS(2895), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2897), - }, - [1399] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4216), - }, - [1400] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4218), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1401] = { - [sym__simple_heredoc_body] = ACTIONS(2903), - [sym__heredoc_body_beginning] = ACTIONS(2903), - [sym_file_descriptor] = ACTIONS(2903), - [sym__concat] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2903), - [anon_sym_PIPE_AMP] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [anon_sym_EQ_TILDE] = ACTIONS(2905), - [anon_sym_EQ_EQ] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_GT_GT] = ACTIONS(2903), - [anon_sym_AMP_GT] = ACTIONS(2905), - [anon_sym_AMP_GT_GT] = ACTIONS(2903), - [anon_sym_LT_AMP] = ACTIONS(2903), - [anon_sym_GT_AMP] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2905), - [anon_sym_LT_LT_DASH] = ACTIONS(2903), - [anon_sym_LT_LT_LT] = ACTIONS(2903), - [sym__special_characters] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2903), - [anon_sym_BQUOTE] = ACTIONS(2903), - [anon_sym_LT_LPAREN] = ACTIONS(2903), - [anon_sym_GT_LPAREN] = ACTIONS(2903), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2905), - }, - [1402] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4220), - }, - [1403] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1404] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4224), - }, - [1405] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4204), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1406] = { - [sym_concatenation] = STATE(1814), - [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), - [aux_sym_expansion_repeat1] = STATE(1814), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_EQ] = ACTIONS(4228), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4228), - [anon_sym_COLON_QMARK] = ACTIONS(4228), - [anon_sym_COLON_DASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1407] = { - [sym__simple_heredoc_body] = ACTIONS(2919), - [sym__heredoc_body_beginning] = ACTIONS(2919), - [sym_file_descriptor] = ACTIONS(2919), - [sym__concat] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2919), - [anon_sym_PIPE_AMP] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [anon_sym_EQ_TILDE] = ACTIONS(2921), - [anon_sym_EQ_EQ] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_AMP_GT] = ACTIONS(2921), - [anon_sym_AMP_GT_GT] = ACTIONS(2919), - [anon_sym_LT_AMP] = ACTIONS(2919), - [anon_sym_GT_AMP] = ACTIONS(2919), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_LT_LT_DASH] = ACTIONS(2919), - [anon_sym_LT_LT_LT] = ACTIONS(2919), - [sym__special_characters] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2919), - [anon_sym_BQUOTE] = ACTIONS(2919), - [anon_sym_LT_LPAREN] = ACTIONS(2919), - [anon_sym_GT_LPAREN] = ACTIONS(2919), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2921), - }, - [1408] = { - [sym_concatenation] = STATE(1816), - [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), - [aux_sym_expansion_repeat1] = STATE(1816), - [anon_sym_RBRACE] = ACTIONS(4232), - [anon_sym_EQ] = ACTIONS(4234), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4234), - [anon_sym_COLON_QMARK] = ACTIONS(4234), - [anon_sym_COLON_DASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1409] = { - [sym_file_redirect] = STATE(1817), - [sym_file_descriptor] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(2382), - [anon_sym_PIPE_AMP] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2382), - [anon_sym_PIPE_PIPE] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2953), - [anon_sym_GT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_AMP_GT] = ACTIONS(2953), - [anon_sym_AMP_GT_GT] = ACTIONS(2955), - [anon_sym_LT_AMP] = ACTIONS(2955), - [anon_sym_GT_AMP] = ACTIONS(2955), - [sym_comment] = ACTIONS(53), - }, - [1410] = { - [anon_sym_PIPE] = ACTIONS(3338), - [anon_sym_RPAREN] = ACTIONS(3340), - [anon_sym_PIPE_AMP] = ACTIONS(3340), - [anon_sym_AMP_AMP] = ACTIONS(3340), - [anon_sym_PIPE_PIPE] = ACTIONS(3340), - [anon_sym_BQUOTE] = ACTIONS(3340), - [sym_comment] = ACTIONS(53), - }, - [1411] = { - [aux_sym_concatenation_repeat1] = STATE(1414), - [sym__simple_heredoc_body] = ACTIONS(1105), - [sym__heredoc_body_beginning] = ACTIONS(1105), - [sym_file_descriptor] = ACTIONS(1105), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_PIPE_AMP] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1105), - [anon_sym_AMP_GT] = ACTIONS(1107), - [anon_sym_AMP_GT_GT] = ACTIONS(1105), - [anon_sym_LT_AMP] = ACTIONS(1105), - [anon_sym_GT_AMP] = ACTIONS(1105), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_LT_LT_DASH] = ACTIONS(1105), - [anon_sym_LT_LT_LT] = ACTIONS(1105), - [sym_comment] = ACTIONS(53), - }, - [1412] = { - [aux_sym_concatenation_repeat1] = STATE(1414), - [sym__simple_heredoc_body] = ACTIONS(1109), - [sym__heredoc_body_beginning] = ACTIONS(1109), - [sym_file_descriptor] = ACTIONS(1109), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1109), - [anon_sym_LT_AMP] = ACTIONS(1109), - [anon_sym_GT_AMP] = ACTIONS(1109), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1109), - [anon_sym_LT_LT_LT] = ACTIONS(1109), - [sym_comment] = ACTIONS(53), - }, - [1413] = { - [sym__simple_heredoc_body] = ACTIONS(1109), - [sym__heredoc_body_beginning] = ACTIONS(1109), - [sym_file_descriptor] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1109), - [anon_sym_LT_AMP] = ACTIONS(1109), - [anon_sym_GT_AMP] = ACTIONS(1109), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1109), - [anon_sym_LT_LT_LT] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), - [sym_comment] = ACTIONS(53), - }, - [1414] = { - [aux_sym_concatenation_repeat1] = STATE(1818), - [sym__simple_heredoc_body] = ACTIONS(705), - [sym__heredoc_body_beginning] = ACTIONS(705), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(705), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(705), - [anon_sym_LT_AMP] = ACTIONS(705), - [anon_sym_GT_AMP] = ACTIONS(705), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_LT_LT_DASH] = ACTIONS(705), - [anon_sym_LT_LT_LT] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - }, - [1415] = { - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_PIPE_AMP] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_BQUOTE] = ACTIONS(3355), - [sym_comment] = ACTIONS(53), - }, - [1416] = { - [sym_file_redirect] = STATE(959), - [sym_heredoc_redirect] = STATE(959), - [sym_heredoc_body] = STATE(1819), - [sym_herestring_redirect] = STATE(959), - [aux_sym_while_statement_repeat1] = STATE(959), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_PIPE_AMP] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(901), - [anon_sym_AMP_GT_GT] = ACTIONS(903), - [anon_sym_LT_AMP] = ACTIONS(903), - [anon_sym_GT_AMP] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(909), - [sym_comment] = ACTIONS(53), - }, - [1417] = { - [aux_sym_concatenation_repeat1] = STATE(1820), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(673), - [sym_variable_name] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(705), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(705), - [anon_sym_LT_AMP] = ACTIONS(705), - [anon_sym_GT_AMP] = ACTIONS(705), - [sym__special_characters] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LT_LPAREN] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(705), - }, - [1418] = { - [sym_file_redirect] = STATE(986), - [sym_heredoc_redirect] = STATE(986), - [sym_heredoc_body] = STATE(1727), - [sym_herestring_redirect] = STATE(986), - [aux_sym_while_statement_repeat1] = STATE(986), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_PIPE_AMP] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(949), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(2281), - [sym_comment] = ACTIONS(53), - }, - [1419] = { - [sym_compound_statement] = STATE(1821), - [anon_sym_LBRACE] = ACTIONS(1874), - [sym_comment] = ACTIONS(53), - }, - [1420] = { - [anon_sym_LT] = ACTIONS(4238), - [anon_sym_GT] = ACTIONS(4238), - [anon_sym_GT_GT] = ACTIONS(4240), - [anon_sym_AMP_GT] = ACTIONS(4238), - [anon_sym_AMP_GT_GT] = ACTIONS(4240), - [anon_sym_LT_AMP] = ACTIONS(4240), - [anon_sym_GT_AMP] = ACTIONS(4240), - [sym_comment] = ACTIONS(53), - }, - [1421] = { - [sym_concatenation] = STATE(1744), - [sym_string] = STATE(1824), - [sym_simple_expansion] = STATE(1824), - [sym_string_expansion] = STATE(1824), - [sym_expansion] = STATE(1824), - [sym_command_substitution] = STATE(1824), - [sym_process_substitution] = STATE(1824), - [sym__special_characters] = ACTIONS(4242), - [anon_sym_DQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(843), - [sym_raw_string] = ACTIONS(4244), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(851), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4244), - }, - [1422] = { - [anon_sym_LT] = ACTIONS(4246), - [anon_sym_GT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_AMP_GT] = ACTIONS(4246), - [anon_sym_AMP_GT_GT] = ACTIONS(4248), - [anon_sym_LT_AMP] = ACTIONS(4248), - [anon_sym_GT_AMP] = ACTIONS(4248), - [sym_comment] = ACTIONS(53), - }, - [1423] = { - [sym_concatenation] = STATE(1755), + [sym_concatenation] = STATE(1828), [sym_string] = STATE(1827), [sym_simple_expansion] = STATE(1827), [sym_string_expansion] = STATE(1827), [sym_expansion] = STATE(1827), [sym_command_substitution] = STATE(1827), [sym_process_substitution] = STATE(1827), - [sym__special_characters] = ACTIONS(4250), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), - [anon_sym_BQUOTE] = ACTIONS(4100), - [anon_sym_LT_LPAREN] = ACTIONS(4102), - [anon_sym_GT_LPAREN] = ACTIONS(4102), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4252), - }, - [1424] = { - [sym_concatenation] = STATE(1759), - [sym_string] = STATE(1829), - [sym_simple_expansion] = STATE(1829), - [sym_string_expansion] = STATE(1829), - [sym_expansion] = STATE(1829), - [sym_command_substitution] = STATE(1829), - [sym_process_substitution] = STATE(1829), - [sym__special_characters] = ACTIONS(4254), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), - [anon_sym_BQUOTE] = ACTIONS(4100), - [anon_sym_LT_LPAREN] = ACTIONS(4102), - [anon_sym_GT_LPAREN] = ACTIONS(4102), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4256), - }, - [1425] = { - [sym_file_redirect] = STATE(1830), - [sym_heredoc_redirect] = STATE(1830), - [sym_herestring_redirect] = STATE(1830), - [aux_sym_while_statement_repeat1] = STATE(1830), - [sym_file_descriptor] = ACTIONS(3243), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_PIPE_AMP] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_GT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3247), - [anon_sym_AMP_GT] = ACTIONS(3245), - [anon_sym_AMP_GT_GT] = ACTIONS(3247), - [anon_sym_LT_AMP] = ACTIONS(3247), - [anon_sym_GT_AMP] = ACTIONS(3247), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_LT_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT_LT] = ACTIONS(3249), - [anon_sym_BQUOTE] = ACTIONS(2528), - [sym_comment] = ACTIONS(53), - }, - [1426] = { - [aux_sym_concatenation_repeat1] = STATE(970), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_PIPE_AMP] = ACTIONS(1145), - [anon_sym_AMP_AMP] = ACTIONS(1145), - [anon_sym_PIPE_PIPE] = ACTIONS(1145), - [sym__special_characters] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [anon_sym_DOLLAR] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1145), - [anon_sym_BQUOTE] = ACTIONS(1145), - [anon_sym_LT_LPAREN] = ACTIONS(1145), - [anon_sym_GT_LPAREN] = ACTIONS(1145), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1149), - [sym_word] = ACTIONS(1149), - }, - [1427] = { - [aux_sym_concatenation_repeat1] = STATE(970), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_PIPE_AMP] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [sym__special_characters] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), - [anon_sym_BQUOTE] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(1123), - [anon_sym_GT_LPAREN] = ACTIONS(1123), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), - [sym_word] = ACTIONS(1125), - }, - [1428] = { - [aux_sym_concatenation_repeat1] = STATE(1428), - [sym__concat] = ACTIONS(4112), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - }, - [1429] = { - [aux_sym_concatenation_repeat1] = STATE(1429), - [sym__concat] = ACTIONS(4157), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - }, - [1430] = { - [sym_file_redirect] = STATE(1817), - [sym_file_descriptor] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_PIPE_AMP] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2382), - [anon_sym_PIPE_PIPE] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3241), - [anon_sym_AMP_GT] = ACTIONS(3239), - [anon_sym_AMP_GT_GT] = ACTIONS(3241), - [anon_sym_LT_AMP] = ACTIONS(3241), - [anon_sym_GT_AMP] = ACTIONS(3241), - [anon_sym_BQUOTE] = ACTIONS(2382), - [sym_comment] = ACTIONS(53), - }, - [1431] = { - [aux_sym_concatenation_repeat1] = STATE(1433), - [sym__simple_heredoc_body] = ACTIONS(1105), - [sym__heredoc_body_beginning] = ACTIONS(1105), - [sym_file_descriptor] = ACTIONS(1105), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1105), - [anon_sym_AMP_GT] = ACTIONS(1107), - [anon_sym_AMP_GT_GT] = ACTIONS(1105), - [anon_sym_LT_AMP] = ACTIONS(1105), - [anon_sym_GT_AMP] = ACTIONS(1105), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_LT_LT_DASH] = ACTIONS(1105), - [anon_sym_LT_LT_LT] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1105), - [sym_comment] = ACTIONS(53), - }, - [1432] = { - [aux_sym_concatenation_repeat1] = STATE(1433), - [sym__simple_heredoc_body] = ACTIONS(1109), - [sym__heredoc_body_beginning] = ACTIONS(1109), - [sym_file_descriptor] = ACTIONS(1109), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(1111), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1109), - [anon_sym_LT_AMP] = ACTIONS(1109), - [anon_sym_GT_AMP] = ACTIONS(1109), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1109), - [anon_sym_LT_LT_LT] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), - [sym_comment] = ACTIONS(53), - }, - [1433] = { - [aux_sym_concatenation_repeat1] = STATE(1831), - [sym__simple_heredoc_body] = ACTIONS(705), - [sym__heredoc_body_beginning] = ACTIONS(705), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(705), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(705), - [anon_sym_LT_AMP] = ACTIONS(705), - [anon_sym_GT_AMP] = ACTIONS(705), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_LT_LT_DASH] = ACTIONS(705), - [anon_sym_LT_LT_LT] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [sym_comment] = ACTIONS(53), - }, - [1434] = { - [sym_file_redirect] = STATE(986), - [sym_heredoc_redirect] = STATE(986), - [sym_heredoc_body] = STATE(1819), - [sym_herestring_redirect] = STATE(986), - [aux_sym_while_statement_repeat1] = STATE(986), - [sym__simple_heredoc_body] = ACTIONS(893), - [sym__heredoc_body_beginning] = ACTIONS(895), - [sym_file_descriptor] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_PIPE_AMP] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(949), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(3355), - [sym_comment] = ACTIONS(53), - }, - [1435] = { - [anon_sym_esac] = ACTIONS(3595), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_RPAREN] = ACTIONS(3595), - [anon_sym_SEMI_SEMI] = ACTIONS(3595), - [anon_sym_PIPE_AMP] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3595), - [anon_sym_LF] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - }, - [1436] = { - [sym_concatenation] = STATE(1835), - [sym_string] = STATE(1834), - [sym_simple_expansion] = STATE(1834), - [sym_string_expansion] = STATE(1834), - [sym_expansion] = STATE(1834), - [sym_command_substitution] = STATE(1834), - [sym_process_substitution] = STATE(1834), - [anon_sym_RBRACE] = ACTIONS(4258), - [sym__special_characters] = ACTIONS(4260), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(4262), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4262), - }, - [1437] = { - [sym__heredoc_body_middle] = ACTIONS(1764), - [sym__heredoc_body_end] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), - [sym_comment] = ACTIONS(53), - }, - [1438] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4264), - }, - [1439] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1440] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(4268), - [sym_comment] = ACTIONS(53), - }, - [1441] = { - [sym_concatenation] = STATE(1841), - [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), - [aux_sym_expansion_repeat1] = STATE(1841), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_EQ] = ACTIONS(4272), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_COLON] = ACTIONS(4272), - [anon_sym_COLON_QMARK] = ACTIONS(4272), - [anon_sym_COLON_DASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1442] = { - [sym_concatenation] = STATE(1844), - [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), - [aux_sym_expansion_repeat1] = STATE(1844), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4280), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_COLON] = ACTIONS(4280), - [anon_sym_COLON_QMARK] = ACTIONS(4280), - [anon_sym_COLON_DASH] = ACTIONS(4280), - [anon_sym_PERCENT] = ACTIONS(4280), - [anon_sym_DASH] = ACTIONS(4280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1443] = { - [sym_concatenation] = STATE(1846), - [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), - [aux_sym_expansion_repeat1] = STATE(1846), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(4286), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4290), - [anon_sym_COLON] = ACTIONS(4286), - [anon_sym_COLON_QMARK] = ACTIONS(4286), - [anon_sym_COLON_DASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1444] = { - [sym__heredoc_body_middle] = ACTIONS(1832), - [sym__heredoc_body_end] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - }, - [1445] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4292), - }, - [1446] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4294), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1447] = { - [sym__heredoc_body_middle] = ACTIONS(1840), - [sym__heredoc_body_end] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), - }, - [1448] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4296), - }, - [1449] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1450] = { - [aux_sym_concatenation_repeat1] = STATE(1450), - [sym__simple_heredoc_body] = ACTIONS(1672), - [sym__heredoc_body_beginning] = ACTIONS(1672), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_LT_LT_LT] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [1451] = { - [anon_sym_esac] = ACTIONS(4298), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_SEMI_SEMI] = ACTIONS(4298), - [anon_sym_PIPE_AMP] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_LF] = ACTIONS(4300), - [anon_sym_AMP] = ACTIONS(4298), - }, - [1452] = { - [anon_sym_EQ] = ACTIONS(4302), - [anon_sym_PLUS_EQ] = ACTIONS(4302), - [sym_comment] = ACTIONS(53), - }, - [1453] = { - [anon_sym_EQ] = ACTIONS(4304), - [anon_sym_PLUS_EQ] = ACTIONS(4304), - [sym_comment] = ACTIONS(53), - }, - [1454] = { - [sym__concat] = ACTIONS(1672), - [anon_sym_RPAREN] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1672), - }, - [1455] = { - [aux_sym_concatenation_repeat1] = STATE(1455), - [sym__concat] = ACTIONS(4306), - [anon_sym_RPAREN] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1672), - }, - [1456] = { - [sym__concat] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1679), - [sym__special_characters] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1679), - [anon_sym_BQUOTE] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1679), - [anon_sym_GT_LPAREN] = ACTIONS(1679), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1679), - }, - [1457] = { - [anon_sym_DQUOTE] = ACTIONS(4309), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [1458] = { - [sym_concatenation] = STATE(1854), - [sym_string] = STATE(1853), - [sym_simple_expansion] = STATE(1853), - [sym_string_expansion] = STATE(1853), - [sym_expansion] = STATE(1853), - [sym_command_substitution] = STATE(1853), - [sym_process_substitution] = STATE(1853), - [anon_sym_RBRACE] = ACTIONS(4311), - [sym__special_characters] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(4315), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4315), - }, - [1459] = { - [sym__concat] = ACTIONS(1764), - [anon_sym_RPAREN] = ACTIONS(1764), - [sym__special_characters] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1764), - [anon_sym_BQUOTE] = ACTIONS(1764), - [anon_sym_LT_LPAREN] = ACTIONS(1764), - [anon_sym_GT_LPAREN] = ACTIONS(1764), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1764), - }, - [1460] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4317), - }, - [1461] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1462] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(4321), - [sym_comment] = ACTIONS(53), - }, - [1463] = { - [sym_concatenation] = STATE(1860), - [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), - [aux_sym_expansion_repeat1] = STATE(1860), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4325), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4327), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(4325), - [anon_sym_COLON_QMARK] = ACTIONS(4325), - [anon_sym_COLON_DASH] = ACTIONS(4325), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1464] = { - [sym_concatenation] = STATE(1863), - [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), - [aux_sym_expansion_repeat1] = STATE(1863), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_EQ] = ACTIONS(4333), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4337), - [anon_sym_COLON] = ACTIONS(4333), - [anon_sym_COLON_QMARK] = ACTIONS(4333), - [anon_sym_COLON_DASH] = ACTIONS(4333), - [anon_sym_PERCENT] = ACTIONS(4333), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1465] = { - [sym_concatenation] = STATE(1865), - [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), - [aux_sym_expansion_repeat1] = STATE(1865), - [anon_sym_RBRACE] = ACTIONS(4311), - [anon_sym_EQ] = ACTIONS(4339), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4343), - [anon_sym_COLON] = ACTIONS(4339), - [anon_sym_COLON_QMARK] = ACTIONS(4339), - [anon_sym_COLON_DASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1466] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(4219), + [sym__special_characters] = ACTIONS(4221), [anon_sym_DQUOTE] = ACTIONS(1832), [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1832), - }, - [1467] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4345), - }, - [1468] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1469] = { - [sym__concat] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1840), - [sym__special_characters] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [sym_raw_string] = ACTIONS(4223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1840), - [anon_sym_LT_LPAREN] = ACTIONS(1840), - [anon_sym_GT_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1840), + [sym_word] = ACTIONS(4223), }, - [1470] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4349), + [1370] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_EQ] = ACTIONS(1848), + [sym__special_characters] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(1846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_COLON_QMARK] = ACTIONS(1848), + [anon_sym_COLON_DASH] = ACTIONS(1848), + [anon_sym_PERCENT] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), + [anon_sym_BQUOTE] = ACTIONS(1846), + [anon_sym_LT_LPAREN] = ACTIONS(1846), + [anon_sym_GT_LPAREN] = ACTIONS(1846), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1848), }, - [1471] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4311), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1371] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4225), }, - [1472] = { - [sym__concat] = ACTIONS(1980), - [anon_sym_RPAREN] = ACTIONS(1980), - [sym__special_characters] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_LT_LPAREN] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1980), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1980), + [1372] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1473] = { - [sym__concat] = ACTIONS(2046), - [anon_sym_RPAREN] = ACTIONS(2046), - [sym__special_characters] = ACTIONS(2046), - [anon_sym_DQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2046), - [anon_sym_BQUOTE] = ACTIONS(2046), - [anon_sym_LT_LPAREN] = ACTIONS(2046), - [anon_sym_GT_LPAREN] = ACTIONS(2046), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2046), - }, - [1474] = { - [sym_file_descriptor] = ACTIONS(2756), - [sym__concat] = ACTIONS(2756), - [sym_variable_name] = ACTIONS(2756), - [anon_sym_esac] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_SEMI_SEMI] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_AMP_GT] = ACTIONS(2758), - [anon_sym_AMP_GT_GT] = ACTIONS(2758), - [anon_sym_LT_AMP] = ACTIONS(2758), - [anon_sym_GT_AMP] = ACTIONS(2758), - [sym__special_characters] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), - [anon_sym_LT_LPAREN] = ACTIONS(2758), - [anon_sym_GT_LPAREN] = ACTIONS(2758), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2758), - }, - [1475] = { - [sym_file_descriptor] = ACTIONS(2770), - [sym__concat] = ACTIONS(2770), - [sym_variable_name] = ACTIONS(2770), - [anon_sym_esac] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_SEMI_SEMI] = ACTIONS(2772), - [anon_sym_PIPE_AMP] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_GT] = ACTIONS(2772), - [anon_sym_AMP_GT_GT] = ACTIONS(2772), - [anon_sym_LT_AMP] = ACTIONS(2772), - [anon_sym_GT_AMP] = ACTIONS(2772), - [sym__special_characters] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), - [anon_sym_BQUOTE] = ACTIONS(2772), - [anon_sym_LT_LPAREN] = ACTIONS(2772), - [anon_sym_GT_LPAREN] = ACTIONS(2772), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), - }, - [1476] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4351), + [1373] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(4229), [sym_comment] = ACTIONS(53), }, - [1477] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4353), + [1374] = { + [sym_concatenation] = STATE(1834), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1834), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4233), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_COLON] = ACTIONS(4233), + [anon_sym_COLON_QMARK] = ACTIONS(4233), + [anon_sym_COLON_DASH] = ACTIONS(4233), + [anon_sym_PERCENT] = ACTIONS(4233), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1375] = { + [sym_concatenation] = STATE(1837), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1837), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4241), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4245), + [anon_sym_COLON] = ACTIONS(4241), + [anon_sym_COLON_QMARK] = ACTIONS(4241), + [anon_sym_COLON_DASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1376] = { + [sym_concatenation] = STATE(1839), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1839), + [anon_sym_RBRACE] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4247), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_COLON_QMARK] = ACTIONS(4247), + [anon_sym_COLON_DASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1377] = { + [sym__concat] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(1916), + [sym__special_characters] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), + [anon_sym_COLON] = ACTIONS(1916), + [anon_sym_COLON_QMARK] = ACTIONS(1916), + [anon_sym_COLON_DASH] = ACTIONS(1916), + [anon_sym_PERCENT] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1914), + [anon_sym_LT_LPAREN] = ACTIONS(1914), + [anon_sym_GT_LPAREN] = ACTIONS(1914), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1916), + }, + [1378] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4253), + }, + [1379] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1380] = { + [sym__concat] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_EQ] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), + [anon_sym_COLON] = ACTIONS(1924), + [anon_sym_COLON_QMARK] = ACTIONS(1924), + [anon_sym_COLON_DASH] = ACTIONS(1924), + [anon_sym_PERCENT] = ACTIONS(1924), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [anon_sym_LT_LPAREN] = ACTIONS(1922), + [anon_sym_GT_LPAREN] = ACTIONS(1922), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1924), + }, + [1381] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4257), + }, + [1382] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1383] = { + [sym__simple_heredoc_body] = ACTIONS(4259), + [sym__heredoc_body_beginning] = ACTIONS(4259), + [sym_file_descriptor] = ACTIONS(4259), + [sym__concat] = ACTIONS(4259), + [anon_sym_esac] = ACTIONS(4261), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_RPAREN] = ACTIONS(4261), + [anon_sym_SEMI_SEMI] = ACTIONS(4261), + [anon_sym_PIPE_AMP] = ACTIONS(4261), + [anon_sym_AMP_AMP] = ACTIONS(4261), + [anon_sym_PIPE_PIPE] = ACTIONS(4261), + [anon_sym_EQ_TILDE] = ACTIONS(4261), + [anon_sym_EQ_EQ] = ACTIONS(4261), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4261), + [anon_sym_GT_GT] = ACTIONS(4261), + [anon_sym_AMP_GT] = ACTIONS(4261), + [anon_sym_AMP_GT_GT] = ACTIONS(4261), + [anon_sym_LT_AMP] = ACTIONS(4261), + [anon_sym_GT_AMP] = ACTIONS(4261), + [anon_sym_LT_LT] = ACTIONS(4261), + [anon_sym_LT_LT_DASH] = ACTIONS(4261), + [anon_sym_LT_LT_LT] = ACTIONS(4261), + [sym__special_characters] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4261), + [anon_sym_LT_LPAREN] = ACTIONS(4261), + [anon_sym_GT_LPAREN] = ACTIONS(4261), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4261), + [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_LF] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + }, + [1384] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1385] = { + [sym__concat] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_EQ] = ACTIONS(2068), + [sym__special_characters] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(2066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), + [anon_sym_COLON] = ACTIONS(2068), + [anon_sym_COLON_QMARK] = ACTIONS(2068), + [anon_sym_COLON_DASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), + [anon_sym_BQUOTE] = ACTIONS(2066), + [anon_sym_LT_LPAREN] = ACTIONS(2066), + [anon_sym_GT_LPAREN] = ACTIONS(2066), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2068), + }, + [1386] = { + [sym__concat] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_EQ] = ACTIONS(2134), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2132), + [anon_sym_POUND] = ACTIONS(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2132), + [anon_sym_COLON] = ACTIONS(2134), + [anon_sym_COLON_QMARK] = ACTIONS(2134), + [anon_sym_COLON_DASH] = ACTIONS(2134), + [anon_sym_PERCENT] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2132), + [anon_sym_BQUOTE] = ACTIONS(2132), + [anon_sym_LT_LPAREN] = ACTIONS(2132), + [anon_sym_GT_LPAREN] = ACTIONS(2132), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2134), + }, + [1387] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4265), [sym_comment] = ACTIONS(53), }, - [1478] = { - [anon_sym_RBRACE] = ACTIONS(4353), + [1388] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4267), [sym_comment] = ACTIONS(53), }, - [1479] = { - [sym_concatenation] = STATE(1872), - [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), - [aux_sym_expansion_repeat1] = STATE(1872), - [anon_sym_RBRACE] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4357), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4357), - [anon_sym_COLON_QMARK] = ACTIONS(4357), - [anon_sym_COLON_DASH] = ACTIONS(4357), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_DASH] = ACTIONS(4357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1480] = { - [sym_file_descriptor] = ACTIONS(2852), - [sym__concat] = ACTIONS(2852), - [sym_variable_name] = ACTIONS(2852), - [anon_sym_esac] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2854), - [anon_sym_SEMI_SEMI] = ACTIONS(2854), - [anon_sym_PIPE_AMP] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_GT] = ACTIONS(2854), - [anon_sym_AMP_GT_GT] = ACTIONS(2854), - [anon_sym_LT_AMP] = ACTIONS(2854), - [anon_sym_GT_AMP] = ACTIONS(2854), - [sym__special_characters] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), - [anon_sym_BQUOTE] = ACTIONS(2854), - [anon_sym_LT_LPAREN] = ACTIONS(2854), - [anon_sym_GT_LPAREN] = ACTIONS(2854), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2854), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - }, - [1481] = { - [sym_concatenation] = STATE(1875), - [sym_string] = STATE(1874), - [sym_simple_expansion] = STATE(1874), - [sym_string_expansion] = STATE(1874), - [sym_expansion] = STATE(1874), - [sym_command_substitution] = STATE(1874), - [sym_process_substitution] = STATE(1874), - [anon_sym_RBRACE] = ACTIONS(4353), - [sym__special_characters] = ACTIONS(4361), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(4363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), + [1389] = { + [anon_sym_RBRACE] = ACTIONS(4267), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4363), }, - [1482] = { - [sym_file_descriptor] = ACTIONS(2895), - [sym__concat] = ACTIONS(2895), - [sym_variable_name] = ACTIONS(2895), - [anon_sym_esac] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_SEMI_SEMI] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2897), - [anon_sym_GT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_AMP_GT] = ACTIONS(2897), - [anon_sym_AMP_GT_GT] = ACTIONS(2897), - [anon_sym_LT_AMP] = ACTIONS(2897), - [anon_sym_GT_AMP] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2897), + [1390] = { + [sym_concatenation] = STATE(1847), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1847), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_EQ] = ACTIONS(4271), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_COLON_QMARK] = ACTIONS(4271), + [anon_sym_COLON_DASH] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1483] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4365), + [1391] = { + [sym__simple_heredoc_body] = ACTIONS(4275), + [sym__heredoc_body_beginning] = ACTIONS(4275), + [sym_file_descriptor] = ACTIONS(4275), + [sym__concat] = ACTIONS(4275), + [anon_sym_esac] = ACTIONS(4277), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_SEMI_SEMI] = ACTIONS(4277), + [anon_sym_PIPE_AMP] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_EQ_TILDE] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4277), + [anon_sym_GT_GT] = ACTIONS(4277), + [anon_sym_AMP_GT] = ACTIONS(4277), + [anon_sym_AMP_GT_GT] = ACTIONS(4277), + [anon_sym_LT_AMP] = ACTIONS(4277), + [anon_sym_GT_AMP] = ACTIONS(4277), + [anon_sym_LT_LT] = ACTIONS(4277), + [anon_sym_LT_LT_DASH] = ACTIONS(4277), + [anon_sym_LT_LT_LT] = ACTIONS(4277), + [sym__special_characters] = ACTIONS(4277), + [anon_sym_DQUOTE] = ACTIONS(4277), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4277), + [anon_sym_LT_LPAREN] = ACTIONS(4277), + [anon_sym_GT_LPAREN] = ACTIONS(4277), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4277), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_LF] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), }, - [1484] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4367), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1392] = { + [sym_concatenation] = STATE(1849), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1849), + [anon_sym_RBRACE] = ACTIONS(4279), + [anon_sym_EQ] = ACTIONS(4281), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4281), + [anon_sym_COLON_QMARK] = ACTIONS(4281), + [anon_sym_COLON_DASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1485] = { - [sym_file_descriptor] = ACTIONS(2903), - [sym__concat] = ACTIONS(2903), - [sym_variable_name] = ACTIONS(2903), - [anon_sym_esac] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2905), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [anon_sym_PIPE_AMP] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_PIPE_PIPE] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_AMP_GT] = ACTIONS(2905), - [anon_sym_AMP_GT_GT] = ACTIONS(2905), - [anon_sym_LT_AMP] = ACTIONS(2905), - [anon_sym_GT_AMP] = ACTIONS(2905), - [sym__special_characters] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), - [anon_sym_BQUOTE] = ACTIONS(2905), - [anon_sym_LT_LPAREN] = ACTIONS(2905), - [anon_sym_GT_LPAREN] = ACTIONS(2905), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2905), + [1393] = { + [sym__simple_heredoc_body] = ACTIONS(4285), + [sym__heredoc_body_beginning] = ACTIONS(4285), + [sym_file_descriptor] = ACTIONS(4285), + [sym__concat] = ACTIONS(4285), + [anon_sym_esac] = ACTIONS(4287), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_SEMI_SEMI] = ACTIONS(4287), + [anon_sym_PIPE_AMP] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_EQ_TILDE] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4287), + [anon_sym_GT] = ACTIONS(4287), + [anon_sym_GT_GT] = ACTIONS(4287), + [anon_sym_AMP_GT] = ACTIONS(4287), + [anon_sym_AMP_GT_GT] = ACTIONS(4287), + [anon_sym_LT_AMP] = ACTIONS(4287), + [anon_sym_GT_AMP] = ACTIONS(4287), + [anon_sym_LT_LT] = ACTIONS(4287), + [anon_sym_LT_LT_DASH] = ACTIONS(4287), + [anon_sym_LT_LT_LT] = ACTIONS(4287), + [sym__special_characters] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), + [anon_sym_BQUOTE] = ACTIONS(4287), + [anon_sym_LT_LPAREN] = ACTIONS(4287), + [anon_sym_GT_LPAREN] = ACTIONS(4287), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_LF] = ACTIONS(4285), + [anon_sym_AMP] = ACTIONS(4287), }, - [1486] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4369), + [1394] = { + [sym_concatenation] = STATE(1851), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1851), + [anon_sym_RBRACE] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4291), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_COLON_QMARK] = ACTIONS(4291), + [anon_sym_COLON_DASH] = ACTIONS(4291), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1487] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4371), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1395] = { + [sym__simple_heredoc_body] = ACTIONS(4295), + [sym__heredoc_body_beginning] = ACTIONS(4295), + [sym_file_descriptor] = ACTIONS(4295), + [sym__concat] = ACTIONS(4295), + [anon_sym_esac] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4297), + [anon_sym_PIPE_AMP] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_EQ_TILDE] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_GT_GT] = ACTIONS(4297), + [anon_sym_AMP_GT] = ACTIONS(4297), + [anon_sym_AMP_GT_GT] = ACTIONS(4297), + [anon_sym_LT_AMP] = ACTIONS(4297), + [anon_sym_GT_AMP] = ACTIONS(4297), + [anon_sym_LT_LT] = ACTIONS(4297), + [anon_sym_LT_LT_DASH] = ACTIONS(4297), + [anon_sym_LT_LT_LT] = ACTIONS(4297), + [sym__special_characters] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LT_LPAREN] = ACTIONS(4297), + [anon_sym_GT_LPAREN] = ACTIONS(4297), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_LF] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4297), }, - [1488] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4373), + [1396] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1489] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1397] = { + [sym__simple_heredoc_body] = ACTIONS(4301), + [sym__heredoc_body_beginning] = ACTIONS(4301), + [sym_file_descriptor] = ACTIONS(4301), + [sym__concat] = ACTIONS(4301), + [anon_sym_esac] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [anon_sym_PIPE_AMP] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_PIPE_PIPE] = ACTIONS(4303), + [anon_sym_EQ_TILDE] = ACTIONS(4303), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_GT_GT] = ACTIONS(4303), + [anon_sym_AMP_GT] = ACTIONS(4303), + [anon_sym_AMP_GT_GT] = ACTIONS(4303), + [anon_sym_LT_AMP] = ACTIONS(4303), + [anon_sym_GT_AMP] = ACTIONS(4303), + [anon_sym_LT_LT] = ACTIONS(4303), + [anon_sym_LT_LT_DASH] = ACTIONS(4303), + [anon_sym_LT_LT_LT] = ACTIONS(4303), + [sym__special_characters] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LT_LPAREN] = ACTIONS(4303), + [anon_sym_GT_LPAREN] = ACTIONS(4303), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4303), }, - [1490] = { - [sym_concatenation] = STATE(1882), - [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), - [aux_sym_expansion_repeat1] = STATE(1882), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_EQ] = ACTIONS(4377), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4377), - [anon_sym_COLON_QMARK] = ACTIONS(4377), - [anon_sym_COLON_DASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1398] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1491] = { - [sym_file_descriptor] = ACTIONS(2919), - [sym__concat] = ACTIONS(2919), - [sym_variable_name] = ACTIONS(2919), - [anon_sym_esac] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_SEMI_SEMI] = ACTIONS(2921), - [anon_sym_PIPE_AMP] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_PIPE_PIPE] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2921), - [anon_sym_AMP_GT] = ACTIONS(2921), - [anon_sym_AMP_GT_GT] = ACTIONS(2921), - [anon_sym_LT_AMP] = ACTIONS(2921), - [anon_sym_GT_AMP] = ACTIONS(2921), - [sym__special_characters] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), - [anon_sym_BQUOTE] = ACTIONS(2921), - [anon_sym_LT_LPAREN] = ACTIONS(2921), - [anon_sym_GT_LPAREN] = ACTIONS(2921), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2921), + [1399] = { + [aux_sym_concatenation_repeat1] = STATE(1854), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [sym__special_characters] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(731), }, - [1492] = { - [sym_concatenation] = STATE(1884), - [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), - [aux_sym_expansion_repeat1] = STATE(1884), - [anon_sym_RBRACE] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4383), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4385), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4383), - [anon_sym_COLON_QMARK] = ACTIONS(4383), - [anon_sym_COLON_DASH] = ACTIONS(4383), - [anon_sym_PERCENT] = ACTIONS(4383), - [anon_sym_DASH] = ACTIONS(4383), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1400] = { + [sym__expression] = STATE(1856), + [sym_binary_expression] = STATE(1856), + [sym_unary_expression] = STATE(1856), + [sym_parenthesized_expression] = STATE(1856), + [sym_concatenation] = STATE(1856), + [sym_string] = STATE(1102), + [sym_simple_expansion] = STATE(1102), + [sym_string_expansion] = STATE(1102), + [sym_expansion] = STATE(1102), + [sym_command_substitution] = STATE(1102), + [sym_process_substitution] = STATE(1102), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [sym__special_characters] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [sym_raw_string] = ACTIONS(2347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), + [anon_sym_BQUOTE] = ACTIONS(2353), + [anon_sym_LT_LPAREN] = ACTIONS(2355), + [anon_sym_GT_LPAREN] = ACTIONS(2355), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2357), + [sym_test_operator] = ACTIONS(2359), }, - [1493] = { - [aux_sym_concatenation_repeat1] = STATE(1493), - [sym__concat] = ACTIONS(2311), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), + [1401] = { + [anon_sym_SEMI_SEMI] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_LF] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4309), }, - [1494] = { - [anon_sym_esac] = ACTIONS(4387), - [anon_sym_PIPE] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4387), - [anon_sym_SEMI_SEMI] = ACTIONS(4387), - [anon_sym_PIPE_AMP] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_LF] = ACTIONS(4389), - [anon_sym_AMP] = ACTIONS(4387), + [1402] = { + [sym__expression] = STATE(1858), + [sym_binary_expression] = STATE(1858), + [sym_unary_expression] = STATE(1858), + [sym_parenthesized_expression] = STATE(1858), + [sym_concatenation] = STATE(1858), + [sym_string] = STATE(230), + [sym_simple_expansion] = STATE(230), + [sym_string_expansion] = STATE(230), + [sym_expansion] = STATE(230), + [sym_command_substitution] = STATE(230), + [sym_process_substitution] = STATE(230), + [anon_sym_SEMI_SEMI] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [sym__special_characters] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(417), + [sym_raw_string] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(419), + [sym_test_operator] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_LF] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4309), }, - [1495] = { - [anon_sym_esac] = ACTIONS(3514), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_RPAREN] = ACTIONS(3514), - [anon_sym_SEMI_SEMI] = ACTIONS(3514), - [anon_sym_PIPE_AMP] = ACTIONS(3514), - [anon_sym_AMP_AMP] = ACTIONS(3514), - [anon_sym_PIPE_PIPE] = ACTIONS(3514), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3514), - [anon_sym_LF] = ACTIONS(3512), - [anon_sym_AMP] = ACTIONS(3514), + [1403] = { + [sym_concatenation] = STATE(1135), + [sym_string] = STATE(640), + [sym_simple_expansion] = STATE(640), + [sym_string_expansion] = STATE(640), + [sym_expansion] = STATE(640), + [sym_command_substitution] = STATE(640), + [sym_process_substitution] = STATE(640), + [aux_sym_for_statement_repeat1] = STATE(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(4313), + [sym__special_characters] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(73), + [sym_raw_string] = ACTIONS(2421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2425), + [anon_sym_BQUOTE] = ACTIONS(2427), + [anon_sym_LT_LPAREN] = ACTIONS(2429), + [anon_sym_GT_LPAREN] = ACTIONS(2429), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2421), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_LF] = ACTIONS(4315), + [anon_sym_AMP] = ACTIONS(4313), }, - [1496] = { - [sym__terminated_statement] = STATE(1885), + [1404] = { + [sym__terminated_statement] = STATE(1861), [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), [sym_case_statement] = STATE(26), @@ -42094,24 +41341,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1885), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_program_repeat1] = STATE(1861), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(4317), [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(4391), - [anon_sym_elif] = ACTIONS(4391), - [anon_sym_else] = ACTIONS(4391), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -42144,9 +41389,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [1497] = { - [sym__terminated_statement] = STATE(1497), + [1405] = { + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2437), + [anon_sym_PIPE_AMP] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(2437), + [anon_sym_PIPE_PIPE] = ACTIONS(2437), + [anon_sym_BQUOTE] = ACTIONS(2437), + [sym_comment] = ACTIONS(53), + }, + [1406] = { + [sym__simple_heredoc_body] = ACTIONS(2439), + [sym__heredoc_body_beginning] = ACTIONS(2439), + [sym_file_descriptor] = ACTIONS(2439), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_RPAREN] = ACTIONS(2439), + [anon_sym_PIPE_AMP] = ACTIONS(2439), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_PIPE_PIPE] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_GT] = ACTIONS(2441), + [anon_sym_GT_GT] = ACTIONS(2439), + [anon_sym_AMP_GT] = ACTIONS(2441), + [anon_sym_AMP_GT_GT] = ACTIONS(2439), + [anon_sym_LT_AMP] = ACTIONS(2439), + [anon_sym_GT_AMP] = ACTIONS(2439), + [anon_sym_LT_LT] = ACTIONS(2441), + [anon_sym_LT_LT_DASH] = ACTIONS(2439), + [anon_sym_LT_LT_LT] = ACTIONS(2439), + [anon_sym_BQUOTE] = ACTIONS(2439), + [sym_comment] = ACTIONS(53), + }, + [1407] = { + [sym__terminated_statement] = STATE(1139), [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), [sym_case_statement] = STATE(26), @@ -42162,3972 +41439,3993 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1497), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1015), - [sym_variable_name] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_fi] = ACTIONS(3516), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_function] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), - [anon_sym_declare] = ACTIONS(1050), - [anon_sym_typeset] = ACTIONS(1050), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_readonly] = ACTIONS(1050), - [anon_sym_local] = ACTIONS(1050), - [anon_sym_unset] = ACTIONS(1053), - [anon_sym_unsetenv] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1056), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1056), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1083), - [anon_sym_GT_LPAREN] = ACTIONS(1083), + [aux_sym_program_repeat1] = STATE(1139), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(4319), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [1408] = { + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2447), + [anon_sym_PIPE_AMP] = ACTIONS(2447), + [anon_sym_AMP_AMP] = ACTIONS(2447), + [anon_sym_PIPE_PIPE] = ACTIONS(2447), + [anon_sym_BQUOTE] = ACTIONS(2447), + [sym_comment] = ACTIONS(53), + }, + [1409] = { + [sym_file_redirect] = STATE(1003), + [sym_heredoc_redirect] = STATE(1003), + [sym_heredoc_body] = STATE(1863), + [sym_herestring_redirect] = STATE(1003), + [aux_sym_while_statement_repeat1] = STATE(1003), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2447), + [anon_sym_PIPE_AMP] = ACTIONS(2447), + [anon_sym_AMP_AMP] = ACTIONS(2447), + [anon_sym_PIPE_PIPE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(937), + [sym_comment] = ACTIONS(53), + }, + [1410] = { + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2451), + [anon_sym_PIPE_AMP] = ACTIONS(2451), + [anon_sym_AMP_AMP] = ACTIONS(2451), + [anon_sym_PIPE_PIPE] = ACTIONS(2451), + [anon_sym_BQUOTE] = ACTIONS(2451), + [sym_comment] = ACTIONS(53), + }, + [1411] = { + [anon_sym_fi] = ACTIONS(4321), + [sym_comment] = ACTIONS(53), + }, + [1412] = { + [sym__terminated_statement] = STATE(1145), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(1866), + [sym_else_clause] = STATE(1865), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1145), + [aux_sym_if_statement_repeat1] = STATE(1866), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(4323), + [anon_sym_elif] = ACTIONS(1269), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [1413] = { + [sym_elif_clause] = STATE(1147), + [sym_else_clause] = STATE(1865), + [aux_sym_if_statement_repeat1] = STATE(1147), + [anon_sym_fi] = ACTIONS(4321), + [anon_sym_elif] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2461), + [sym_comment] = ACTIONS(53), + }, + [1414] = { + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(1868), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1869), + [anon_sym_esac] = ACTIONS(4325), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2469), + }, + [1415] = { + [anon_sym_SEMI_SEMI] = ACTIONS(4327), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_LF] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + }, + [1416] = { + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(1872), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1873), + [anon_sym_esac] = ACTIONS(4331), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2469), + }, + [1417] = { + [anon_sym_SEMI_SEMI] = ACTIONS(4333), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_LF] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(4333), + }, + [1418] = { + [sym_compound_statement] = STATE(1875), + [anon_sym_LBRACE] = ACTIONS(1960), + [sym_comment] = ACTIONS(53), + }, + [1419] = { + [sym_file_descriptor] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2528), + [anon_sym_RPAREN] = ACTIONS(2526), + [anon_sym_PIPE_AMP] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2528), + [anon_sym_GT] = ACTIONS(2528), + [anon_sym_GT_GT] = ACTIONS(2526), + [anon_sym_AMP_GT] = ACTIONS(2528), + [anon_sym_AMP_GT_GT] = ACTIONS(2526), + [anon_sym_LT_AMP] = ACTIONS(2526), + [anon_sym_GT_AMP] = ACTIONS(2526), + [anon_sym_BQUOTE] = ACTIONS(2526), + [sym_comment] = ACTIONS(53), + }, + [1420] = { + [sym__terminated_statement] = STATE(1182), + [sym_for_statement] = STATE(680), + [sym_c_style_for_statement] = STATE(680), + [sym_while_statement] = STATE(680), + [sym_if_statement] = STATE(680), + [sym_case_statement] = STATE(680), + [sym_function_definition] = STATE(680), + [sym_subshell] = STATE(680), + [sym_pipeline] = STATE(680), + [sym_list] = STATE(680), + [sym_negated_command] = STATE(680), + [sym_test_command] = STATE(680), + [sym_declaration_command] = STATE(680), + [sym_unset_command] = STATE(680), + [sym_command] = STATE(680), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(681), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1182), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [1421] = { + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_GT_GT] = ACTIONS(4341), + [anon_sym_AMP_GT] = ACTIONS(4339), + [anon_sym_AMP_GT_GT] = ACTIONS(4341), + [anon_sym_LT_AMP] = ACTIONS(4341), + [anon_sym_GT_AMP] = ACTIONS(4341), + [sym_comment] = ACTIONS(53), + }, + [1422] = { + [sym_concatenation] = STATE(1880), + [sym_string] = STATE(1879), + [sym_simple_expansion] = STATE(1879), + [sym_string_expansion] = STATE(1879), + [sym_expansion] = STATE(1879), + [sym_command_substitution] = STATE(1879), + [sym_process_substitution] = STATE(1879), + [sym__special_characters] = ACTIONS(4343), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(871), + [sym_raw_string] = ACTIONS(4345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), + [anon_sym_BQUOTE] = ACTIONS(879), + [anon_sym_LT_LPAREN] = ACTIONS(881), + [anon_sym_GT_LPAREN] = ACTIONS(881), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4345), + }, + [1423] = { + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_PIPE_AMP] = ACTIONS(2546), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_BQUOTE] = ACTIONS(2546), + [sym_comment] = ACTIONS(53), + }, + [1424] = { + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_RPAREN] = ACTIONS(2581), + [anon_sym_PIPE_AMP] = ACTIONS(2581), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_PIPE_PIPE] = ACTIONS(2581), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_comment] = ACTIONS(53), + }, + [1425] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(4347), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(997), + [sym_raw_string] = ACTIONS(995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), + [anon_sym_BQUOTE] = ACTIONS(995), + [anon_sym_LT_LPAREN] = ACTIONS(995), + [anon_sym_GT_LPAREN] = ACTIONS(995), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(997), + }, + [1426] = { + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_GT_GT] = ACTIONS(4351), + [anon_sym_AMP_GT] = ACTIONS(4349), + [anon_sym_AMP_GT_GT] = ACTIONS(4351), + [anon_sym_LT_AMP] = ACTIONS(4351), + [anon_sym_GT_AMP] = ACTIONS(4351), + [sym_comment] = ACTIONS(53), + }, + [1427] = { + [sym_concatenation] = STATE(1891), + [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), + [sym__special_characters] = ACTIONS(4353), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4357), + [sym_raw_string] = ACTIONS(4359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4365), + [anon_sym_LT_LPAREN] = ACTIONS(4367), + [anon_sym_GT_LPAREN] = ACTIONS(4367), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4359), + }, + [1428] = { + [sym_heredoc_start] = ACTIONS(4369), + [sym_comment] = ACTIONS(53), + }, + [1429] = { + [sym_concatenation] = STATE(1895), + [sym_string] = STATE(1894), + [sym_simple_expansion] = STATE(1894), + [sym_string_expansion] = STATE(1894), + [sym_expansion] = STATE(1894), + [sym_command_substitution] = STATE(1894), + [sym_process_substitution] = STATE(1894), + [sym__special_characters] = ACTIONS(4371), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4357), + [sym_raw_string] = ACTIONS(4373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4365), + [anon_sym_LT_LPAREN] = ACTIONS(4367), + [anon_sym_GT_LPAREN] = ACTIONS(4367), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4373), + }, + [1430] = { + [sym_file_redirect] = STATE(1896), + [sym_heredoc_redirect] = STATE(1896), + [sym_herestring_redirect] = STATE(1896), + [aux_sym_while_statement_repeat1] = STATE(1896), + [sym_file_descriptor] = ACTIONS(3137), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_PIPE_AMP] = ACTIONS(2692), + [anon_sym_AMP_AMP] = ACTIONS(2692), + [anon_sym_PIPE_PIPE] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3139), + [anon_sym_GT_GT] = ACTIONS(3141), + [anon_sym_AMP_GT] = ACTIONS(3139), + [anon_sym_AMP_GT_GT] = ACTIONS(3141), + [anon_sym_LT_AMP] = ACTIONS(3141), + [anon_sym_GT_AMP] = ACTIONS(3141), + [anon_sym_LT_LT] = ACTIONS(3143), + [anon_sym_LT_LT_DASH] = ACTIONS(3145), + [anon_sym_LT_LT_LT] = ACTIONS(3147), + [sym_comment] = ACTIONS(53), + }, + [1431] = { + [sym_variable_name] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_PIPE_AMP] = ACTIONS(1151), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [sym__special_characters] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1151), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), + [anon_sym_BQUOTE] = ACTIONS(1151), + [anon_sym_LT_LPAREN] = ACTIONS(1151), + [anon_sym_GT_LPAREN] = ACTIONS(1151), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), + [sym_word] = ACTIONS(1153), + }, + [1432] = { + [sym_concatenation] = STATE(1898), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1898), + [anon_sym_RPAREN] = ACTIONS(4375), + [sym__special_characters] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym_raw_string] = ACTIONS(1163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1163), + }, + [1433] = { + [aux_sym_concatenation_repeat1] = STATE(925), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_RPAREN] = ACTIONS(1173), + [anon_sym_PIPE_AMP] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1173), + [anon_sym_PIPE_PIPE] = ACTIONS(1173), + [sym__special_characters] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1173), + [anon_sym_BQUOTE] = ACTIONS(1173), + [anon_sym_LT_LPAREN] = ACTIONS(1173), + [anon_sym_GT_LPAREN] = ACTIONS(1173), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1177), + [sym_word] = ACTIONS(1177), + }, + [1434] = { + [aux_sym_concatenation_repeat1] = STATE(925), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_PIPE_AMP] = ACTIONS(1151), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [sym__special_characters] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1151), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), + [anon_sym_BQUOTE] = ACTIONS(1151), + [anon_sym_LT_LPAREN] = ACTIONS(1151), + [anon_sym_GT_LPAREN] = ACTIONS(1151), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), + [sym_word] = ACTIONS(1153), + }, + [1435] = { + [sym__concat] = ACTIONS(1754), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + }, + [1436] = { + [aux_sym_concatenation_repeat1] = STATE(1436), + [sym__concat] = ACTIONS(4377), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + }, + [1437] = { + [sym__concat] = ACTIONS(1761), + [sym_variable_name] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_PIPE_AMP] = ACTIONS(1761), + [anon_sym_AMP_AMP] = ACTIONS(1761), + [anon_sym_PIPE_PIPE] = ACTIONS(1761), + [sym__special_characters] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), + [anon_sym_BQUOTE] = ACTIONS(1761), + [anon_sym_LT_LPAREN] = ACTIONS(1761), + [anon_sym_GT_LPAREN] = ACTIONS(1761), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1763), + [sym_word] = ACTIONS(1763), + }, + [1438] = { + [anon_sym_DQUOTE] = ACTIONS(4380), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [1439] = { + [sym_concatenation] = STATE(1903), + [sym_string] = STATE(1902), + [sym_simple_expansion] = STATE(1902), + [sym_string_expansion] = STATE(1902), + [sym_expansion] = STATE(1902), + [sym_command_substitution] = STATE(1902), + [sym_process_substitution] = STATE(1902), + [anon_sym_RBRACE] = ACTIONS(4382), + [sym__special_characters] = ACTIONS(4384), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(4386), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4386), + }, + [1440] = { + [sym__concat] = ACTIONS(1846), + [sym_variable_name] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_PIPE_AMP] = ACTIONS(1846), + [anon_sym_AMP_AMP] = ACTIONS(1846), + [anon_sym_PIPE_PIPE] = ACTIONS(1846), + [sym__special_characters] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), + [anon_sym_BQUOTE] = ACTIONS(1846), + [anon_sym_LT_LPAREN] = ACTIONS(1846), + [anon_sym_GT_LPAREN] = ACTIONS(1846), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1848), + [sym_word] = ACTIONS(1848), + }, + [1441] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4388), + }, + [1442] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1443] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(4392), + [sym_comment] = ACTIONS(53), + }, + [1444] = { + [sym_concatenation] = STATE(1909), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1909), + [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4396), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4400), + [anon_sym_COLON] = ACTIONS(4396), + [anon_sym_COLON_QMARK] = ACTIONS(4396), + [anon_sym_COLON_DASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1445] = { + [sym_concatenation] = STATE(1912), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1912), + [anon_sym_RBRACE] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4404), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4406), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4408), + [anon_sym_COLON] = ACTIONS(4404), + [anon_sym_COLON_QMARK] = ACTIONS(4404), + [anon_sym_COLON_DASH] = ACTIONS(4404), + [anon_sym_PERCENT] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1446] = { + [sym_concatenation] = STATE(1914), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1914), + [anon_sym_RBRACE] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4410), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4414), + [anon_sym_COLON] = ACTIONS(4410), + [anon_sym_COLON_QMARK] = ACTIONS(4410), + [anon_sym_COLON_DASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1447] = { + [sym__concat] = ACTIONS(1914), + [sym_variable_name] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_PIPE_AMP] = ACTIONS(1914), + [anon_sym_AMP_AMP] = ACTIONS(1914), + [anon_sym_PIPE_PIPE] = ACTIONS(1914), + [sym__special_characters] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1914), + [anon_sym_LT_LPAREN] = ACTIONS(1914), + [anon_sym_GT_LPAREN] = ACTIONS(1914), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1916), + [sym_word] = ACTIONS(1916), + }, + [1448] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4416), + }, + [1449] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1450] = { + [sym__concat] = ACTIONS(1922), + [sym_variable_name] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_PIPE_AMP] = ACTIONS(1922), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [sym__special_characters] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [anon_sym_LT_LPAREN] = ACTIONS(1922), + [anon_sym_GT_LPAREN] = ACTIONS(1922), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1924), + [sym_word] = ACTIONS(1924), + }, + [1451] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4420), + }, + [1452] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1453] = { + [sym__concat] = ACTIONS(2066), + [sym_variable_name] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), + [sym__special_characters] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), + [anon_sym_BQUOTE] = ACTIONS(2066), + [anon_sym_LT_LPAREN] = ACTIONS(2066), + [anon_sym_GT_LPAREN] = ACTIONS(2066), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), + [sym_word] = ACTIONS(2068), + }, + [1454] = { + [sym__concat] = ACTIONS(2132), + [sym_variable_name] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_PIPE_AMP] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [sym__special_characters] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2132), + [anon_sym_BQUOTE] = ACTIONS(2132), + [anon_sym_LT_LPAREN] = ACTIONS(2132), + [anon_sym_GT_LPAREN] = ACTIONS(2132), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), + [sym_word] = ACTIONS(2134), + }, + [1455] = { + [sym__concat] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + }, + [1456] = { + [aux_sym_concatenation_repeat1] = STATE(1456), + [sym__concat] = ACTIONS(4422), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + }, + [1457] = { + [sym__concat] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_PIPE_AMP] = ACTIONS(1761), + [anon_sym_AMP_AMP] = ACTIONS(1761), + [anon_sym_PIPE_PIPE] = ACTIONS(1761), + [sym__special_characters] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), + [anon_sym_BQUOTE] = ACTIONS(1761), + [anon_sym_LT_LPAREN] = ACTIONS(1761), + [anon_sym_GT_LPAREN] = ACTIONS(1761), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1763), + [sym_word] = ACTIONS(1763), + }, + [1458] = { + [anon_sym_DQUOTE] = ACTIONS(4425), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [1459] = { + [sym_concatenation] = STATE(1922), + [sym_string] = STATE(1921), + [sym_simple_expansion] = STATE(1921), + [sym_string_expansion] = STATE(1921), + [sym_expansion] = STATE(1921), + [sym_command_substitution] = STATE(1921), + [sym_process_substitution] = STATE(1921), + [anon_sym_RBRACE] = ACTIONS(4427), + [sym__special_characters] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(4431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4431), + }, + [1460] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_PIPE_AMP] = ACTIONS(1846), + [anon_sym_AMP_AMP] = ACTIONS(1846), + [anon_sym_PIPE_PIPE] = ACTIONS(1846), + [sym__special_characters] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), + [anon_sym_BQUOTE] = ACTIONS(1846), + [anon_sym_LT_LPAREN] = ACTIONS(1846), + [anon_sym_GT_LPAREN] = ACTIONS(1846), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1848), + [sym_word] = ACTIONS(1848), + }, + [1461] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4433), + }, + [1462] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1463] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(4437), + [sym_comment] = ACTIONS(53), + }, + [1464] = { + [sym_concatenation] = STATE(1928), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1928), + [anon_sym_RBRACE] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4441), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4443), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4445), + [anon_sym_COLON] = ACTIONS(4441), + [anon_sym_COLON_QMARK] = ACTIONS(4441), + [anon_sym_COLON_DASH] = ACTIONS(4441), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1465] = { + [sym_concatenation] = STATE(1931), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1931), + [anon_sym_RBRACE] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4451), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4449), + [anon_sym_COLON_QMARK] = ACTIONS(4449), + [anon_sym_COLON_DASH] = ACTIONS(4449), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1466] = { + [sym_concatenation] = STATE(1933), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1933), + [anon_sym_RBRACE] = ACTIONS(4427), + [anon_sym_EQ] = ACTIONS(4455), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4457), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4459), + [anon_sym_COLON] = ACTIONS(4455), + [anon_sym_COLON_QMARK] = ACTIONS(4455), + [anon_sym_COLON_DASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1467] = { + [sym__concat] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_PIPE_AMP] = ACTIONS(1914), + [anon_sym_AMP_AMP] = ACTIONS(1914), + [anon_sym_PIPE_PIPE] = ACTIONS(1914), + [sym__special_characters] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1914), + [anon_sym_LT_LPAREN] = ACTIONS(1914), + [anon_sym_GT_LPAREN] = ACTIONS(1914), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1916), + [sym_word] = ACTIONS(1916), + }, + [1468] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4461), + }, + [1469] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1470] = { + [sym__concat] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_PIPE_AMP] = ACTIONS(1922), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [sym__special_characters] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [anon_sym_LT_LPAREN] = ACTIONS(1922), + [anon_sym_GT_LPAREN] = ACTIONS(1922), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1924), + [sym_word] = ACTIONS(1924), + }, + [1471] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4465), + }, + [1472] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4427), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1473] = { + [sym__concat] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), + [sym__special_characters] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), + [anon_sym_BQUOTE] = ACTIONS(2066), + [anon_sym_LT_LPAREN] = ACTIONS(2066), + [anon_sym_GT_LPAREN] = ACTIONS(2066), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), + [sym_word] = ACTIONS(2068), + }, + [1474] = { + [sym__concat] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_PIPE_AMP] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [sym__special_characters] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2132), + [anon_sym_BQUOTE] = ACTIONS(2132), + [anon_sym_LT_LPAREN] = ACTIONS(2132), + [anon_sym_GT_LPAREN] = ACTIONS(2132), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), + [sym_word] = ACTIONS(2134), + }, + [1475] = { + [sym__simple_heredoc_body] = ACTIONS(2920), + [sym__heredoc_body_beginning] = ACTIONS(2920), + [sym_file_descriptor] = ACTIONS(2920), + [sym__concat] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_PIPE_AMP] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_EQ_TILDE] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_GT_GT] = ACTIONS(2920), + [anon_sym_AMP_GT] = ACTIONS(2922), + [anon_sym_AMP_GT_GT] = ACTIONS(2920), + [anon_sym_LT_AMP] = ACTIONS(2920), + [anon_sym_GT_AMP] = ACTIONS(2920), + [anon_sym_LT_LT] = ACTIONS(2922), + [anon_sym_LT_LT_DASH] = ACTIONS(2920), + [anon_sym_LT_LT_LT] = ACTIONS(2920), + [sym__special_characters] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2920), + [anon_sym_BQUOTE] = ACTIONS(2920), + [anon_sym_LT_LPAREN] = ACTIONS(2920), + [anon_sym_GT_LPAREN] = ACTIONS(2920), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2922), + }, + [1476] = { + [sym__simple_heredoc_body] = ACTIONS(2934), + [sym__heredoc_body_beginning] = ACTIONS(2934), + [sym_file_descriptor] = ACTIONS(2934), + [sym__concat] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_RPAREN] = 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(53), + [sym_word] = ACTIONS(2936), + }, + [1477] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4467), + [sym_comment] = ACTIONS(53), + }, + [1478] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4469), + [sym_comment] = ACTIONS(53), + }, + [1479] = { + [anon_sym_RBRACE] = ACTIONS(4469), + [sym_comment] = ACTIONS(53), + }, + [1480] = { + [sym_concatenation] = STATE(1940), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1940), + [anon_sym_RBRACE] = ACTIONS(4471), + [anon_sym_EQ] = ACTIONS(4473), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4473), + [anon_sym_COLON_QMARK] = ACTIONS(4473), + [anon_sym_COLON_DASH] = ACTIONS(4473), + [anon_sym_PERCENT] = ACTIONS(4473), + [anon_sym_DASH] = ACTIONS(4473), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1481] = { + [sym__simple_heredoc_body] = ACTIONS(3016), + [sym__heredoc_body_beginning] = ACTIONS(3016), + [sym_file_descriptor] = ACTIONS(3016), + [sym__concat] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3016), + [anon_sym_PIPE_AMP] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [anon_sym_EQ_TILDE] = ACTIONS(3018), + [anon_sym_EQ_EQ] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_GT_GT] = ACTIONS(3016), + [anon_sym_AMP_GT] = ACTIONS(3018), + [anon_sym_AMP_GT_GT] = ACTIONS(3016), + [anon_sym_LT_AMP] = ACTIONS(3016), + [anon_sym_GT_AMP] = ACTIONS(3016), + [anon_sym_LT_LT] = ACTIONS(3018), + [anon_sym_LT_LT_DASH] = ACTIONS(3016), + [anon_sym_LT_LT_LT] = ACTIONS(3016), + [sym__special_characters] = ACTIONS(3016), + [anon_sym_DQUOTE] = ACTIONS(3016), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3016), + [anon_sym_BQUOTE] = ACTIONS(3016), + [anon_sym_LT_LPAREN] = ACTIONS(3016), + [anon_sym_GT_LPAREN] = ACTIONS(3016), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3018), + }, + [1482] = { + [sym_concatenation] = STATE(1943), + [sym_string] = STATE(1942), + [sym_simple_expansion] = STATE(1942), + [sym_string_expansion] = STATE(1942), + [sym_expansion] = STATE(1942), + [sym_command_substitution] = STATE(1942), + [sym_process_substitution] = STATE(1942), + [anon_sym_RBRACE] = ACTIONS(4469), + [sym__special_characters] = ACTIONS(4477), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(4479), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4479), + }, + [1483] = { + [sym__simple_heredoc_body] = ACTIONS(3059), + [sym__heredoc_body_beginning] = ACTIONS(3059), + [sym_file_descriptor] = ACTIONS(3059), + [sym__concat] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_PIPE_AMP] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_EQ_TILDE] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3059), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(3059), + [anon_sym_LT_AMP] = ACTIONS(3059), + [anon_sym_GT_AMP] = ACTIONS(3059), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_LT_LT_DASH] = ACTIONS(3059), + [anon_sym_LT_LT_LT] = ACTIONS(3059), + [sym__special_characters] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(3059), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3059), + [anon_sym_BQUOTE] = ACTIONS(3059), + [anon_sym_LT_LPAREN] = ACTIONS(3059), + [anon_sym_GT_LPAREN] = ACTIONS(3059), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3061), + }, + [1484] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4481), + }, + [1485] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1486] = { + [sym__simple_heredoc_body] = ACTIONS(3067), + [sym__heredoc_body_beginning] = ACTIONS(3067), + [sym_file_descriptor] = ACTIONS(3067), + [sym__concat] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_PIPE_AMP] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_EQ_TILDE] = ACTIONS(3069), + [anon_sym_EQ_EQ] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_GT] = ACTIONS(3067), + [anon_sym_AMP_GT] = ACTIONS(3069), + [anon_sym_AMP_GT_GT] = ACTIONS(3067), + [anon_sym_LT_AMP] = ACTIONS(3067), + [anon_sym_GT_AMP] = ACTIONS(3067), + [anon_sym_LT_LT] = ACTIONS(3069), + [anon_sym_LT_LT_DASH] = ACTIONS(3067), + [anon_sym_LT_LT_LT] = ACTIONS(3067), + [sym__special_characters] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), + [anon_sym_BQUOTE] = ACTIONS(3067), + [anon_sym_LT_LPAREN] = ACTIONS(3067), + [anon_sym_GT_LPAREN] = ACTIONS(3067), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3069), + }, + [1487] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4485), + }, + [1488] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1489] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4489), + }, + [1490] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1491] = { + [sym_concatenation] = STATE(1950), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1950), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4493), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4493), + [anon_sym_COLON_QMARK] = ACTIONS(4493), + [anon_sym_COLON_DASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1492] = { + [sym__simple_heredoc_body] = ACTIONS(3083), + [sym__heredoc_body_beginning] = ACTIONS(3083), + [sym_file_descriptor] = ACTIONS(3083), + [sym__concat] = ACTIONS(3083), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_RPAREN] = ACTIONS(3083), + [anon_sym_PIPE_AMP] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [anon_sym_EQ_TILDE] = ACTIONS(3085), + [anon_sym_EQ_EQ] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_GT] = ACTIONS(3085), + [anon_sym_GT_GT] = ACTIONS(3083), + [anon_sym_AMP_GT] = ACTIONS(3085), + [anon_sym_AMP_GT_GT] = ACTIONS(3083), + [anon_sym_LT_AMP] = ACTIONS(3083), + [anon_sym_GT_AMP] = ACTIONS(3083), + [anon_sym_LT_LT] = ACTIONS(3085), + [anon_sym_LT_LT_DASH] = ACTIONS(3083), + [anon_sym_LT_LT_LT] = ACTIONS(3083), + [sym__special_characters] = ACTIONS(3083), + [anon_sym_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3083), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), + [anon_sym_BQUOTE] = ACTIONS(3083), + [anon_sym_LT_LPAREN] = ACTIONS(3083), + [anon_sym_GT_LPAREN] = ACTIONS(3083), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3085), + }, + [1493] = { + [sym_concatenation] = STATE(1952), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1952), + [anon_sym_RBRACE] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4499), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_COLON_QMARK] = ACTIONS(4499), + [anon_sym_COLON_DASH] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1494] = { + [sym_file_redirect] = STATE(1953), + [sym_file_descriptor] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_PIPE_AMP] = ACTIONS(2546), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_GT_GT] = ACTIONS(3127), + [anon_sym_AMP_GT] = ACTIONS(3125), + [anon_sym_AMP_GT_GT] = ACTIONS(3127), + [anon_sym_LT_AMP] = ACTIONS(3127), + [anon_sym_GT_AMP] = ACTIONS(3127), + [sym_comment] = ACTIONS(53), + }, + [1495] = { + [anon_sym_PIPE] = ACTIONS(3510), + [anon_sym_RPAREN] = ACTIONS(3512), + [anon_sym_PIPE_AMP] = ACTIONS(3512), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_PIPE_PIPE] = ACTIONS(3512), + [anon_sym_BQUOTE] = ACTIONS(3512), + [sym_comment] = ACTIONS(53), + }, + [1496] = { + [aux_sym_concatenation_repeat1] = STATE(1499), + [sym__simple_heredoc_body] = ACTIONS(1133), + [sym__heredoc_body_beginning] = ACTIONS(1133), + [sym_file_descriptor] = ACTIONS(1133), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_RPAREN] = ACTIONS(1133), + [anon_sym_PIPE_AMP] = ACTIONS(1133), + [anon_sym_AMP_AMP] = ACTIONS(1133), + [anon_sym_PIPE_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1133), + [anon_sym_AMP_GT] = ACTIONS(1135), + [anon_sym_AMP_GT_GT] = ACTIONS(1133), + [anon_sym_LT_AMP] = ACTIONS(1133), + [anon_sym_GT_AMP] = ACTIONS(1133), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_LT_LT_DASH] = ACTIONS(1133), + [anon_sym_LT_LT_LT] = ACTIONS(1133), + [sym_comment] = ACTIONS(53), + }, + [1497] = { + [aux_sym_concatenation_repeat1] = STATE(1499), + [sym__simple_heredoc_body] = ACTIONS(1137), + [sym__heredoc_body_beginning] = ACTIONS(1137), + [sym_file_descriptor] = ACTIONS(1137), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1137), + [anon_sym_PIPE_AMP] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1137), + [anon_sym_LT_AMP] = ACTIONS(1137), + [anon_sym_GT_AMP] = ACTIONS(1137), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1137), + [anon_sym_LT_LT_LT] = ACTIONS(1137), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1086), }, [1498] = { - [anon_sym_esac] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_SEMI_SEMI] = ACTIONS(4393), - [anon_sym_PIPE_AMP] = ACTIONS(4393), - [anon_sym_AMP_AMP] = ACTIONS(4393), - [anon_sym_PIPE_PIPE] = ACTIONS(4393), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_LF] = ACTIONS(4395), - [anon_sym_AMP] = ACTIONS(4393), + [sym__simple_heredoc_body] = ACTIONS(1137), + [sym__heredoc_body_beginning] = ACTIONS(1137), + [sym_file_descriptor] = ACTIONS(1137), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1137), + [anon_sym_PIPE_AMP] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1137), + [anon_sym_LT_AMP] = ACTIONS(1137), + [anon_sym_GT_AMP] = ACTIONS(1137), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1137), + [anon_sym_LT_LT_LT] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1137), + [sym_comment] = ACTIONS(53), }, [1499] = { - [anon_sym_fi] = ACTIONS(4397), + [aux_sym_concatenation_repeat1] = STATE(1954), + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_LT_LT_LT] = ACTIONS(731), [sym_comment] = ACTIONS(53), }, [1500] = { - [sym_concatenation] = STATE(1889), - [sym_string] = STATE(1888), - [sym_simple_expansion] = STATE(1888), - [sym_string_expansion] = STATE(1888), - [sym_expansion] = STATE(1888), - [sym_command_substitution] = STATE(1888), - [sym_process_substitution] = STATE(1888), - [sym__special_characters] = ACTIONS(4399), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(4401), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(3527), + [anon_sym_PIPE_AMP] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BQUOTE] = ACTIONS(3527), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4401), }, [1501] = { - [sym__terminated_statement] = STATE(1906), - [sym_for_statement] = STATE(1902), - [sym_while_statement] = STATE(1902), - [sym_if_statement] = STATE(1902), - [sym_case_statement] = STATE(1902), - [sym_function_definition] = STATE(1902), - [sym_subshell] = STATE(1902), - [sym_pipeline] = STATE(1902), - [sym_list] = STATE(1902), - [sym_negated_command] = STATE(1902), - [sym_test_command] = STATE(1902), - [sym_declaration_command] = STATE(1902), - [sym_unset_command] = STATE(1902), - [sym_command] = STATE(1902), - [sym_command_name] = STATE(1903), - [sym_variable_assignment] = STATE(1904), - [sym_subscript] = STATE(1905), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(1900), - [sym_simple_expansion] = STATE(1900), - [sym_string_expansion] = STATE(1900), - [sym_expansion] = STATE(1900), - [sym_command_substitution] = STATE(1900), - [sym_process_substitution] = STATE(1900), - [aux_sym_program_repeat1] = STATE(1906), - [aux_sym_command_repeat1] = STATE(1907), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(4407), - [anon_sym_SEMI_SEMI] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), - [anon_sym_declare] = ACTIONS(4419), - [anon_sym_typeset] = ACTIONS(4419), - [anon_sym_export] = ACTIONS(4419), - [anon_sym_readonly] = ACTIONS(4419), - [anon_sym_local] = ACTIONS(4419), - [anon_sym_unset] = ACTIONS(4421), - [anon_sym_unsetenv] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_file_redirect] = STATE(1003), + [sym_heredoc_redirect] = STATE(1003), + [sym_heredoc_body] = STATE(1955), + [sym_herestring_redirect] = STATE(1003), + [aux_sym_while_statement_repeat1] = STATE(1003), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(3527), + [anon_sym_PIPE_AMP] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(937), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4427), }, [1502] = { - [aux_sym_case_item_repeat1] = STATE(1909), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(4429), + [aux_sym_concatenation_repeat1] = STATE(1956), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [sym__special_characters] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(731), }, [1503] = { - [aux_sym_concatenation_repeat1] = STATE(1910), - [sym__concat] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(705), + [sym_file_redirect] = STATE(1030), + [sym_heredoc_redirect] = STATE(1030), + [sym_heredoc_body] = STATE(1863), + [sym_herestring_redirect] = STATE(1030), + [aux_sym_while_statement_repeat1] = STATE(1030), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_PIPE_AMP] = ACTIONS(2447), + [anon_sym_AMP_AMP] = ACTIONS(2447), + [anon_sym_PIPE_PIPE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(977), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(2447), [sym_comment] = ACTIONS(53), }, [1504] = { - [sym__terminated_statement] = STATE(1914), - [sym_for_statement] = STATE(1912), - [sym_while_statement] = STATE(1912), - [sym_if_statement] = STATE(1912), - [sym_case_statement] = STATE(1912), - [sym_function_definition] = STATE(1912), - [sym_subshell] = STATE(1912), - [sym_pipeline] = STATE(1912), - [sym_list] = STATE(1912), - [sym_negated_command] = STATE(1912), - [sym_test_command] = STATE(1912), - [sym_declaration_command] = STATE(1912), - [sym_unset_command] = STATE(1912), - [sym_command] = STATE(1912), - [sym_command_name] = STATE(1903), - [sym_variable_assignment] = STATE(1913), - [sym_subscript] = STATE(1905), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(1900), - [sym_simple_expansion] = STATE(1900), - [sym_string_expansion] = STATE(1900), - [sym_expansion] = STATE(1900), - [sym_command_substitution] = STATE(1900), - [sym_process_substitution] = STATE(1900), - [aux_sym_program_repeat1] = STATE(1914), - [aux_sym_command_repeat1] = STATE(1907), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(4431), - [anon_sym_SEMI_SEMI] = ACTIONS(4433), - [anon_sym_function] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), - [anon_sym_declare] = ACTIONS(4419), - [anon_sym_typeset] = ACTIONS(4419), - [anon_sym_export] = ACTIONS(4419), - [anon_sym_readonly] = ACTIONS(4419), - [anon_sym_local] = ACTIONS(4419), - [anon_sym_unset] = ACTIONS(4421), - [anon_sym_unsetenv] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_compound_statement] = STATE(1957), + [anon_sym_LBRACE] = ACTIONS(1960), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4427), }, [1505] = { - [aux_sym_case_item_repeat1] = STATE(1909), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_GT_GT] = ACTIONS(4505), + [anon_sym_AMP_GT] = ACTIONS(4503), + [anon_sym_AMP_GT_GT] = ACTIONS(4505), + [anon_sym_LT_AMP] = ACTIONS(4505), + [anon_sym_GT_AMP] = ACTIONS(4505), [sym_comment] = ACTIONS(53), }, [1506] = { - [anon_sym_esac] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_RPAREN] = ACTIONS(4437), - [anon_sym_SEMI_SEMI] = ACTIONS(4437), - [anon_sym_PIPE_AMP] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_LF] = ACTIONS(4439), - [anon_sym_AMP] = ACTIONS(4437), + [sym_concatenation] = STATE(1880), + [sym_string] = STATE(1960), + [sym_simple_expansion] = STATE(1960), + [sym_string_expansion] = STATE(1960), + [sym_expansion] = STATE(1960), + [sym_command_substitution] = STATE(1960), + [sym_process_substitution] = STATE(1960), + [sym__special_characters] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(871), + [sym_raw_string] = ACTIONS(4509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), + [anon_sym_BQUOTE] = ACTIONS(879), + [anon_sym_LT_LPAREN] = ACTIONS(881), + [anon_sym_GT_LPAREN] = ACTIONS(881), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4509), }, [1507] = { - [anon_sym_esac] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_GT_GT] = ACTIONS(4513), + [anon_sym_AMP_GT] = ACTIONS(4511), + [anon_sym_AMP_GT_GT] = ACTIONS(4513), + [anon_sym_LT_AMP] = ACTIONS(4513), + [anon_sym_GT_AMP] = ACTIONS(4513), [sym_comment] = ACTIONS(53), }, [1508] = { - [sym_case_item] = STATE(1508), - [sym_concatenation] = STATE(1919), - [sym_string] = STATE(1918), - [sym_simple_expansion] = STATE(1918), - [sym_string_expansion] = STATE(1918), - [sym_expansion] = STATE(1918), - [sym_command_substitution] = STATE(1918), - [sym_process_substitution] = STATE(1918), - [aux_sym_case_statement_repeat1] = STATE(1508), - [sym__special_characters] = ACTIONS(4443), - [anon_sym_DQUOTE] = ACTIONS(4446), - [anon_sym_DOLLAR] = ACTIONS(4449), - [sym_raw_string] = ACTIONS(4452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4455), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4458), - [anon_sym_BQUOTE] = ACTIONS(4461), - [anon_sym_LT_LPAREN] = ACTIONS(4464), - [anon_sym_GT_LPAREN] = ACTIONS(4464), + [sym_concatenation] = STATE(1891), + [sym_string] = STATE(1963), + [sym_simple_expansion] = STATE(1963), + [sym_string_expansion] = STATE(1963), + [sym_expansion] = STATE(1963), + [sym_command_substitution] = STATE(1963), + [sym_process_substitution] = STATE(1963), + [sym__special_characters] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4357), + [sym_raw_string] = ACTIONS(4517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4365), + [anon_sym_LT_LPAREN] = ACTIONS(4367), + [anon_sym_GT_LPAREN] = ACTIONS(4367), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4452), + [sym_word] = ACTIONS(4517), }, [1509] = { - [anon_sym_esac] = ACTIONS(4467), - [anon_sym_PIPE] = ACTIONS(4467), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_SEMI_SEMI] = ACTIONS(4467), - [anon_sym_PIPE_AMP] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_LF] = ACTIONS(4469), - [anon_sym_AMP] = ACTIONS(4467), + [sym_concatenation] = STATE(1895), + [sym_string] = STATE(1965), + [sym_simple_expansion] = STATE(1965), + [sym_string_expansion] = STATE(1965), + [sym_expansion] = STATE(1965), + [sym_command_substitution] = STATE(1965), + [sym_process_substitution] = STATE(1965), + [sym__special_characters] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4357), + [sym_raw_string] = ACTIONS(4521), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4365), + [anon_sym_LT_LPAREN] = ACTIONS(4367), + [anon_sym_GT_LPAREN] = ACTIONS(4367), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4521), }, [1510] = { - [sym_case_item] = STATE(1508), - [sym_last_case_item] = STATE(1920), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1508), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), + [sym_file_redirect] = STATE(1966), + [sym_heredoc_redirect] = STATE(1966), + [sym_herestring_redirect] = STATE(1966), + [aux_sym_while_statement_repeat1] = STATE(1966), + [sym_file_descriptor] = ACTIONS(3415), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_PIPE_AMP] = ACTIONS(2692), + [anon_sym_AMP_AMP] = ACTIONS(2692), + [anon_sym_PIPE_PIPE] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_GT] = ACTIONS(3417), + [anon_sym_GT_GT] = ACTIONS(3419), + [anon_sym_AMP_GT] = ACTIONS(3417), + [anon_sym_AMP_GT_GT] = ACTIONS(3419), + [anon_sym_LT_AMP] = ACTIONS(3419), + [anon_sym_GT_AMP] = ACTIONS(3419), + [anon_sym_LT_LT] = ACTIONS(3143), + [anon_sym_LT_LT_DASH] = ACTIONS(3145), + [anon_sym_LT_LT_LT] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(2692), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), }, [1511] = { - [anon_sym_esac] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_RPAREN] = ACTIONS(4471), - [anon_sym_SEMI_SEMI] = ACTIONS(4471), - [anon_sym_PIPE_AMP] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_LF] = ACTIONS(4473), - [anon_sym_AMP] = ACTIONS(4471), + [aux_sym_concatenation_repeat1] = STATE(1014), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_PIPE_AMP] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1173), + [anon_sym_PIPE_PIPE] = ACTIONS(1173), + [sym__special_characters] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1173), + [anon_sym_BQUOTE] = ACTIONS(1173), + [anon_sym_LT_LPAREN] = ACTIONS(1173), + [anon_sym_GT_LPAREN] = ACTIONS(1173), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1177), + [sym_word] = ACTIONS(1177), }, [1512] = { - [anon_sym_esac] = ACTIONS(4475), + [aux_sym_concatenation_repeat1] = STATE(1014), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(1151), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [sym__special_characters] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1151), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), + [anon_sym_BQUOTE] = ACTIONS(1151), + [anon_sym_LT_LPAREN] = ACTIONS(1151), + [anon_sym_GT_LPAREN] = ACTIONS(1151), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), + [sym_word] = ACTIONS(1153), }, [1513] = { - [anon_sym_esac] = ACTIONS(4477), - [anon_sym_PIPE] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_SEMI_SEMI] = ACTIONS(4477), - [anon_sym_PIPE_AMP] = ACTIONS(4477), - [anon_sym_AMP_AMP] = ACTIONS(4477), - [anon_sym_PIPE_PIPE] = ACTIONS(4477), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4477), - [anon_sym_LF] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(4477), + [aux_sym_concatenation_repeat1] = STATE(1513), + [sym__concat] = ACTIONS(4377), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), }, [1514] = { - [sym_case_item] = STATE(1508), - [sym_last_case_item] = STATE(1922), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1508), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), + [aux_sym_concatenation_repeat1] = STATE(1514), + [sym__concat] = ACTIONS(4422), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), }, [1515] = { - [sym__concat] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3907), - [anon_sym_SEMI_SEMI] = ACTIONS(3907), - [sym__special_characters] = ACTIONS(3907), - [anon_sym_DQUOTE] = ACTIONS(3907), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), - [anon_sym_BQUOTE] = ACTIONS(3907), - [anon_sym_LT_LPAREN] = ACTIONS(3907), - [anon_sym_GT_LPAREN] = ACTIONS(3907), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3907), - [anon_sym_SEMI] = ACTIONS(3907), - [anon_sym_LF] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3907), + [sym_file_redirect] = STATE(1953), + [sym_file_descriptor] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_PIPE_AMP] = ACTIONS(2546), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_GT] = ACTIONS(3411), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_AMP_GT] = ACTIONS(3411), + [anon_sym_AMP_GT_GT] = ACTIONS(3413), + [anon_sym_LT_AMP] = ACTIONS(3413), + [anon_sym_GT_AMP] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(2546), + [sym_comment] = ACTIONS(53), }, [1516] = { - [sym__concat] = ACTIONS(3913), - [anon_sym_in] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3915), + [aux_sym_concatenation_repeat1] = STATE(1518), + [sym__simple_heredoc_body] = ACTIONS(1133), + [sym__heredoc_body_beginning] = ACTIONS(1133), + [sym_file_descriptor] = ACTIONS(1133), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_PIPE_AMP] = ACTIONS(1133), + [anon_sym_AMP_AMP] = ACTIONS(1133), + [anon_sym_PIPE_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1133), + [anon_sym_AMP_GT] = ACTIONS(1135), + [anon_sym_AMP_GT_GT] = ACTIONS(1133), + [anon_sym_LT_AMP] = ACTIONS(1133), + [anon_sym_GT_AMP] = ACTIONS(1133), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_LT_LT_DASH] = ACTIONS(1133), + [anon_sym_LT_LT_LT] = ACTIONS(1133), + [anon_sym_BQUOTE] = ACTIONS(1133), + [sym_comment] = ACTIONS(53), }, [1517] = { - [sym__concat] = ACTIONS(4000), - [anon_sym_in] = ACTIONS(4002), - [anon_sym_SEMI_SEMI] = ACTIONS(4002), - [sym__special_characters] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4002), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), - [anon_sym_BQUOTE] = ACTIONS(4002), - [anon_sym_LT_LPAREN] = ACTIONS(4002), - [anon_sym_GT_LPAREN] = ACTIONS(4002), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_LF] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4002), + [aux_sym_concatenation_repeat1] = STATE(1518), + [sym__simple_heredoc_body] = ACTIONS(1137), + [sym__heredoc_body_beginning] = ACTIONS(1137), + [sym_file_descriptor] = ACTIONS(1137), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1137), + [anon_sym_LT_AMP] = ACTIONS(1137), + [anon_sym_GT_AMP] = ACTIONS(1137), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1137), + [anon_sym_LT_LT_LT] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1137), + [sym_comment] = ACTIONS(53), }, [1518] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(1967), + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_LT_LT_LT] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [sym_comment] = ACTIONS(53), }, [1519] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4483), + [sym_file_redirect] = STATE(1030), + [sym_heredoc_redirect] = STATE(1030), + [sym_heredoc_body] = STATE(1955), + [sym_herestring_redirect] = STATE(1030), + [aux_sym_while_statement_repeat1] = STATE(1030), + [sym__simple_heredoc_body] = ACTIONS(921), + [sym__heredoc_body_beginning] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(3525), + [anon_sym_PIPE_AMP] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(977), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(935), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(3527), [sym_comment] = ACTIONS(53), }, [1520] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4485), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(3854), + [anon_sym_PIPE] = ACTIONS(3854), + [anon_sym_RPAREN] = ACTIONS(3854), + [anon_sym_SEMI_SEMI] = ACTIONS(3854), + [anon_sym_PIPE_AMP] = ACTIONS(3854), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3854), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3854), + [anon_sym_LF] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), }, [1521] = { - [anon_sym_RBRACE] = ACTIONS(4485), + [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), + [anon_sym_RBRACE] = ACTIONS(4523), + [sym__special_characters] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(4527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4527), }, [1522] = { - [sym_concatenation] = STATE(1927), - [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), - [aux_sym_expansion_repeat1] = STATE(1927), - [anon_sym_RBRACE] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4489), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4491), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_COLON_QMARK] = ACTIONS(4489), - [anon_sym_COLON_DASH] = ACTIONS(4489), - [anon_sym_PERCENT] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__heredoc_body_middle] = ACTIONS(1846), + [sym__heredoc_body_end] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), + [sym_comment] = ACTIONS(53), }, [1523] = { - [sym__concat] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_SEMI_SEMI] = ACTIONS(4018), - [sym__special_characters] = ACTIONS(4018), - [anon_sym_DQUOTE] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym_raw_string] = ACTIONS(4018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), - [anon_sym_BQUOTE] = ACTIONS(4018), - [anon_sym_LT_LPAREN] = ACTIONS(4018), - [anon_sym_GT_LPAREN] = ACTIONS(4018), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4018), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4529), }, [1524] = { - [sym_concatenation] = STATE(1929), - [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), - [aux_sym_expansion_repeat1] = STATE(1929), - [anon_sym_RBRACE] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4495), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4497), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4495), - [anon_sym_COLON_QMARK] = ACTIONS(4495), - [anon_sym_COLON_DASH] = ACTIONS(4495), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1525] = { - [sym__concat] = ACTIONS(4026), - [anon_sym_in] = ACTIONS(4028), - [anon_sym_SEMI_SEMI] = ACTIONS(4028), - [sym__special_characters] = ACTIONS(4028), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), - [anon_sym_BQUOTE] = ACTIONS(4028), - [anon_sym_LT_LPAREN] = ACTIONS(4028), - [anon_sym_GT_LPAREN] = ACTIONS(4028), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4028), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym_LF] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(4533), + [sym_comment] = ACTIONS(53), }, [1526] = { - [sym_concatenation] = STATE(1931), - [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), - [aux_sym_expansion_repeat1] = STATE(1931), - [anon_sym_RBRACE] = ACTIONS(4499), - [anon_sym_EQ] = ACTIONS(4501), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4503), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4501), - [anon_sym_COLON_QMARK] = ACTIONS(4501), - [anon_sym_COLON_DASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(1977), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1977), + [anon_sym_RBRACE] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4537), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4539), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4537), + [anon_sym_COLON_QMARK] = ACTIONS(4537), + [anon_sym_COLON_DASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1527] = { - [sym__concat] = ACTIONS(4036), - [anon_sym_in] = ACTIONS(4038), - [anon_sym_SEMI_SEMI] = ACTIONS(4038), - [sym__special_characters] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4038), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), - [anon_sym_BQUOTE] = ACTIONS(4038), - [anon_sym_LT_LPAREN] = ACTIONS(4038), - [anon_sym_GT_LPAREN] = ACTIONS(4038), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4038), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4038), + [sym_concatenation] = STATE(1980), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1980), + [anon_sym_RBRACE] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4545), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4547), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4549), + [anon_sym_COLON] = ACTIONS(4545), + [anon_sym_COLON_QMARK] = ACTIONS(4545), + [anon_sym_COLON_DASH] = ACTIONS(4545), + [anon_sym_PERCENT] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1528] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4505), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(1982), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1982), + [anon_sym_RBRACE] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4551), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4553), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_COLON_QMARK] = ACTIONS(4551), + [anon_sym_COLON_DASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1529] = { - [sym__concat] = ACTIONS(4042), - [anon_sym_in] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4044), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4044), + [sym__heredoc_body_middle] = ACTIONS(1914), + [sym__heredoc_body_end] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), + [sym_comment] = ACTIONS(53), }, [1530] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4557), }, [1531] = { - [anon_sym_esac] = ACTIONS(4509), - [anon_sym_PIPE] = ACTIONS(4509), - [anon_sym_RPAREN] = ACTIONS(4509), - [anon_sym_SEMI_SEMI] = ACTIONS(4509), - [anon_sym_PIPE_AMP] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_LF] = ACTIONS(4511), - [anon_sym_AMP] = ACTIONS(4509), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1532] = { - [aux_sym_concatenation_repeat1] = STATE(1535), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_SEMI_SEMI] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), + [sym__heredoc_body_middle] = ACTIONS(1922), + [sym__heredoc_body_end] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), + [sym_comment] = ACTIONS(53), }, [1533] = { - [aux_sym_concatenation_repeat1] = STATE(1535), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = 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), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_LF] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1111), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4561), }, [1534] = { - [anon_sym_esac] = ACTIONS(1111), - [anon_sym_PIPE] = ACTIONS(1111), - [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), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_LF] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1111), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1535] = { - [aux_sym_concatenation_repeat1] = STATE(1934), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = 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), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), + [aux_sym_concatenation_repeat1] = STATE(1535), + [sym__simple_heredoc_body] = ACTIONS(1754), + [sym__heredoc_body_beginning] = ACTIONS(1754), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1756), + [anon_sym_LT_LT_LT] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), }, [1536] = { - [aux_sym_concatenation_repeat1] = STATE(1536), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(3439), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_esac] = ACTIONS(4563), + [anon_sym_PIPE] = ACTIONS(4563), + [anon_sym_RPAREN] = ACTIONS(4563), + [anon_sym_SEMI_SEMI] = ACTIONS(4563), + [anon_sym_PIPE_AMP] = ACTIONS(4563), + [anon_sym_AMP_AMP] = ACTIONS(4563), + [anon_sym_PIPE_PIPE] = ACTIONS(4563), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4563), + [anon_sym_LF] = ACTIONS(4565), + [anon_sym_AMP] = ACTIONS(4563), }, [1537] = { - [sym_file_redirect] = STATE(1531), - [sym_file_descriptor] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_RPAREN] = ACTIONS(3595), - [anon_sym_SEMI_SEMI] = ACTIONS(3595), - [anon_sym_PIPE_AMP] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_LT] = ACTIONS(2388), - [anon_sym_GT] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2388), - [anon_sym_AMP_GT] = ACTIONS(2388), - [anon_sym_AMP_GT_GT] = ACTIONS(2388), - [anon_sym_LT_AMP] = ACTIONS(2388), - [anon_sym_GT_AMP] = ACTIONS(2388), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3595), - [anon_sym_LF] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_PLUS_EQ] = ACTIONS(4567), + [sym_comment] = ACTIONS(53), }, [1538] = { - [sym_concatenation] = STATE(1534), - [sym_string] = STATE(1936), - [sym_simple_expansion] = STATE(1936), - [sym_string_expansion] = STATE(1936), - [sym_expansion] = STATE(1936), - [sym_command_substitution] = STATE(1936), - [sym_process_substitution] = STATE(1936), - [sym__special_characters] = ACTIONS(4513), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(4515), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1549), - [anon_sym_BQUOTE] = ACTIONS(1551), - [anon_sym_LT_LPAREN] = ACTIONS(1553), - [anon_sym_GT_LPAREN] = ACTIONS(1553), + [anon_sym_EQ] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4515), }, [1539] = { - [aux_sym_concatenation_repeat1] = STATE(1937), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(675), + [sym__concat] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1754), }, [1540] = { - [aux_sym_concatenation_repeat1] = STATE(1937), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(691), - [anon_sym_SEMI_SEMI] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LF] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), + [aux_sym_concatenation_repeat1] = STATE(1540), + [sym__concat] = ACTIONS(4571), + [anon_sym_RPAREN] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1754), }, [1541] = { - [sym_concatenation] = STATE(1567), - [sym_string] = STATE(1939), - [sym_simple_expansion] = STATE(1939), - [sym_string_expansion] = STATE(1939), - [sym_expansion] = STATE(1939), - [sym_command_substitution] = STATE(1939), - [sym_process_substitution] = STATE(1939), - [sym__special_characters] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2508), - [sym_raw_string] = ACTIONS(4519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), - [anon_sym_BQUOTE] = ACTIONS(2516), - [anon_sym_LT_LPAREN] = ACTIONS(2518), - [anon_sym_GT_LPAREN] = ACTIONS(2518), + [sym__concat] = ACTIONS(1761), + [anon_sym_RPAREN] = ACTIONS(1761), + [sym__special_characters] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), + [anon_sym_BQUOTE] = ACTIONS(1761), + [anon_sym_LT_LPAREN] = ACTIONS(1761), + [anon_sym_GT_LPAREN] = ACTIONS(1761), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4519), + [sym_word] = ACTIONS(1761), }, [1542] = { - [aux_sym_concatenation_repeat1] = STATE(1940), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_LT_LT_LT] = ACTIONS(675), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(4574), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [1543] = { - [aux_sym_concatenation_repeat1] = STATE(1940), - [sym_file_descriptor] = ACTIONS(689), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(691), - [anon_sym_SEMI_SEMI] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(691), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(691), - [anon_sym_LT_AMP] = ACTIONS(691), - [anon_sym_GT_AMP] = ACTIONS(691), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(691), - [anon_sym_LT_LT_LT] = ACTIONS(691), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LF] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), + [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(4576), + [sym__special_characters] = ACTIONS(4578), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(4580), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4580), }, [1544] = { - [aux_sym_concatenation_repeat1] = STATE(1940), - [sym_file_descriptor] = ACTIONS(2098), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_SEMI_SEMI] = ACTIONS(2100), - [anon_sym_PIPE_AMP] = ACTIONS(2100), - [anon_sym_AMP_AMP] = ACTIONS(2100), - [anon_sym_PIPE_PIPE] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2100), - [anon_sym_AMP_GT] = ACTIONS(2100), - [anon_sym_AMP_GT_GT] = ACTIONS(2100), - [anon_sym_LT_AMP] = ACTIONS(2100), - [anon_sym_GT_AMP] = ACTIONS(2100), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_LT_LT_DASH] = ACTIONS(2100), - [anon_sym_LT_LT_LT] = ACTIONS(2100), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_LF] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2100), + [sym__concat] = ACTIONS(1846), + [anon_sym_RPAREN] = ACTIONS(1846), + [sym__special_characters] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), + [anon_sym_BQUOTE] = ACTIONS(1846), + [anon_sym_LT_LPAREN] = ACTIONS(1846), + [anon_sym_GT_LPAREN] = ACTIONS(1846), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1846), }, [1545] = { - [aux_sym_concatenation_repeat1] = STATE(1940), - [sym_file_descriptor] = ACTIONS(2102), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_SEMI_SEMI] = ACTIONS(2104), - [anon_sym_PIPE_AMP] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2104), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2104), - [anon_sym_LT_AMP] = ACTIONS(2104), - [anon_sym_GT_AMP] = ACTIONS(2104), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2104), - [anon_sym_LT_LT_LT] = ACTIONS(2104), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_LF] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2104), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4582), }, [1546] = { - [sym_file_redirect] = STATE(1546), - [sym_heredoc_redirect] = STATE(1546), - [sym_herestring_redirect] = STATE(1546), - [aux_sym_while_statement_repeat1] = STATE(1546), - [sym_file_descriptor] = ACTIONS(4521), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_SEMI_SEMI] = ACTIONS(2115), - [anon_sym_PIPE_AMP] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(4524), - [anon_sym_GT] = ACTIONS(4524), - [anon_sym_GT_GT] = ACTIONS(4524), - [anon_sym_AMP_GT] = ACTIONS(4524), - [anon_sym_AMP_GT_GT] = ACTIONS(4524), - [anon_sym_LT_AMP] = ACTIONS(4524), - [anon_sym_GT_AMP] = ACTIONS(4524), - [anon_sym_LT_LT] = ACTIONS(3703), - [anon_sym_LT_LT_DASH] = ACTIONS(3703), - [anon_sym_LT_LT_LT] = ACTIONS(4527), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_LF] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2115), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1547] = { - [aux_sym_concatenation_repeat1] = STATE(1547), - [sym__simple_heredoc_body] = ACTIONS(1672), - [sym__heredoc_body_beginning] = ACTIONS(1672), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_LT_LT_LT] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(4586), + [sym_comment] = ACTIONS(53), }, [1548] = { - [sym_file_descriptor] = ACTIONS(3409), - [sym_variable_name] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_RPAREN] = ACTIONS(3409), - [anon_sym_PIPE_AMP] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_GT_GT] = ACTIONS(3409), - [anon_sym_AMP_GT] = ACTIONS(3411), - [anon_sym_AMP_GT_GT] = ACTIONS(3409), - [anon_sym_LT_AMP] = ACTIONS(3409), - [anon_sym_GT_AMP] = ACTIONS(3409), - [sym__special_characters] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_DOLLAR] = ACTIONS(3411), - [sym_raw_string] = ACTIONS(3409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3409), - [anon_sym_BQUOTE] = ACTIONS(3409), - [anon_sym_LT_LPAREN] = ACTIONS(3409), - [anon_sym_GT_LPAREN] = ACTIONS(3409), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3409), + [sym_concatenation] = STATE(1996), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1996), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4590), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4592), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4594), + [anon_sym_COLON] = ACTIONS(4590), + [anon_sym_COLON_QMARK] = ACTIONS(4590), + [anon_sym_COLON_DASH] = ACTIONS(4590), + [anon_sym_PERCENT] = ACTIONS(4590), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1549] = { - [sym__concat] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_RBRACK] = ACTIONS(3905), - [anon_sym_EQ_TILDE] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_EQ] = ACTIONS(3907), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3905), + [sym_concatenation] = STATE(1999), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(1999), + [anon_sym_RBRACE] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4598), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_COLON] = ACTIONS(4598), + [anon_sym_COLON_QMARK] = ACTIONS(4598), + [anon_sym_COLON_DASH] = ACTIONS(4598), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1550] = { - [sym__concat] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_RBRACK] = ACTIONS(3913), - [anon_sym_EQ_TILDE] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3913), - [anon_sym_GT] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3913), + [sym_concatenation] = STATE(2001), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2001), + [anon_sym_RBRACE] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4604), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [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_DASH] = ACTIONS(4604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1551] = { - [sym__concat] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_PIPE_PIPE] = ACTIONS(4000), - [anon_sym_RBRACK] = ACTIONS(4000), - [anon_sym_EQ_TILDE] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ] = ACTIONS(4002), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_BANG_EQ] = ACTIONS(4000), + [sym__concat] = ACTIONS(1914), + [anon_sym_RPAREN] = ACTIONS(1914), + [sym__special_characters] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1914), + [anon_sym_LT_LPAREN] = ACTIONS(1914), + [anon_sym_GT_LPAREN] = ACTIONS(1914), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4000), + [sym_word] = ACTIONS(1914), }, [1552] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4610), }, [1553] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4532), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4612), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1554] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4534), + [sym__concat] = ACTIONS(1922), + [anon_sym_RPAREN] = ACTIONS(1922), + [sym__special_characters] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [anon_sym_LT_LPAREN] = ACTIONS(1922), + [anon_sym_GT_LPAREN] = ACTIONS(1922), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1922), }, [1555] = { - [anon_sym_RBRACE] = ACTIONS(4534), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4614), }, [1556] = { - [sym_concatenation] = STATE(1945), - [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), - [aux_sym_expansion_repeat1] = STATE(1945), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_EQ] = ACTIONS(4538), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4538), - [anon_sym_COLON_QMARK] = ACTIONS(4538), - [anon_sym_COLON_DASH] = ACTIONS(4538), - [anon_sym_PERCENT] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1557] = { - [sym__concat] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [anon_sym_RBRACK] = ACTIONS(4016), - [anon_sym_EQ_TILDE] = ACTIONS(4016), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_EQ] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), + [sym__concat] = ACTIONS(2066), + [anon_sym_RPAREN] = ACTIONS(2066), + [sym__special_characters] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), + [anon_sym_BQUOTE] = ACTIONS(2066), + [anon_sym_LT_LPAREN] = ACTIONS(2066), + [anon_sym_GT_LPAREN] = ACTIONS(2066), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4016), + [sym_word] = ACTIONS(2066), }, [1558] = { - [sym_concatenation] = STATE(1947), - [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), - [aux_sym_expansion_repeat1] = STATE(1947), - [anon_sym_RBRACE] = ACTIONS(4542), - [anon_sym_EQ] = ACTIONS(4544), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4544), - [anon_sym_COLON_QMARK] = ACTIONS(4544), - [anon_sym_COLON_DASH] = ACTIONS(4544), - [anon_sym_PERCENT] = ACTIONS(4544), - [anon_sym_DASH] = ACTIONS(4544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2132), + [sym__special_characters] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2132), + [anon_sym_BQUOTE] = ACTIONS(2132), + [anon_sym_LT_LPAREN] = ACTIONS(2132), + [anon_sym_GT_LPAREN] = ACTIONS(2132), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2132), }, [1559] = { - [sym__concat] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [anon_sym_RBRACK] = ACTIONS(4026), - [anon_sym_EQ_TILDE] = ACTIONS(4026), - [anon_sym_EQ_EQ] = ACTIONS(4026), - [anon_sym_EQ] = ACTIONS(4028), - [anon_sym_LT] = ACTIONS(4026), - [anon_sym_GT] = ACTIONS(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4026), + [sym_file_descriptor] = ACTIONS(2920), + [sym__concat] = ACTIONS(2920), + [sym_variable_name] = ACTIONS(2920), + [anon_sym_esac] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2922), + [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [anon_sym_PIPE_AMP] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_GT_GT] = ACTIONS(2922), + [anon_sym_AMP_GT] = ACTIONS(2922), + [anon_sym_AMP_GT_GT] = ACTIONS(2922), + [anon_sym_LT_AMP] = ACTIONS(2922), + [anon_sym_GT_AMP] = ACTIONS(2922), + [sym__special_characters] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), + [anon_sym_BQUOTE] = ACTIONS(2922), + [anon_sym_LT_LPAREN] = ACTIONS(2922), + [anon_sym_GT_LPAREN] = ACTIONS(2922), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2922), }, [1560] = { - [sym_concatenation] = STATE(1949), - [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), - [aux_sym_expansion_repeat1] = STATE(1949), - [anon_sym_RBRACE] = ACTIONS(4548), - [anon_sym_EQ] = ACTIONS(4550), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4550), - [anon_sym_COLON_QMARK] = ACTIONS(4550), - [anon_sym_COLON_DASH] = ACTIONS(4550), - [anon_sym_PERCENT] = ACTIONS(4550), - [anon_sym_DASH] = ACTIONS(4550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(2934), + [sym__concat] = ACTIONS(2934), + [sym_variable_name] = ACTIONS(2934), + [anon_sym_esac] = ACTIONS(2936), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_RPAREN] = ACTIONS(2936), + [anon_sym_SEMI_SEMI] = ACTIONS(2936), + [anon_sym_PIPE_AMP] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_GT] = ACTIONS(2936), + [anon_sym_GT_GT] = ACTIONS(2936), + [anon_sym_AMP_GT] = ACTIONS(2936), + [anon_sym_AMP_GT_GT] = ACTIONS(2936), + [anon_sym_LT_AMP] = ACTIONS(2936), + [anon_sym_GT_AMP] = ACTIONS(2936), + [sym__special_characters] = ACTIONS(2936), + [anon_sym_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2936), + [sym_raw_string] = ACTIONS(2936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), + [anon_sym_BQUOTE] = ACTIONS(2936), + [anon_sym_LT_LPAREN] = ACTIONS(2936), + [anon_sym_GT_LPAREN] = ACTIONS(2936), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_LF] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2936), }, [1561] = { - [sym__concat] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_RBRACK] = ACTIONS(4036), - [anon_sym_EQ_TILDE] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ] = ACTIONS(4038), - [anon_sym_LT] = ACTIONS(4036), - [anon_sym_GT] = ACTIONS(4036), - [anon_sym_BANG_EQ] = ACTIONS(4036), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4616), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4036), }, [1562] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4554), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4618), + [sym_comment] = ACTIONS(53), }, [1563] = { - [sym__concat] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_RBRACK] = ACTIONS(4042), - [anon_sym_EQ_TILDE] = ACTIONS(4042), - [anon_sym_EQ_EQ] = ACTIONS(4042), - [anon_sym_EQ] = ACTIONS(4044), - [anon_sym_LT] = ACTIONS(4042), - [anon_sym_GT] = ACTIONS(4042), - [anon_sym_BANG_EQ] = ACTIONS(4042), + [anon_sym_RBRACE] = ACTIONS(4618), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4042), }, [1564] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1565] = { - [aux_sym_concatenation_repeat1] = STATE(1569), - [sym_file_descriptor] = ACTIONS(1105), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_SEMI_SEMI] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_AMP_GT] = ACTIONS(1107), - [anon_sym_AMP_GT_GT] = ACTIONS(1107), - [anon_sym_LT_AMP] = ACTIONS(1107), - [anon_sym_GT_AMP] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_LT_LT_DASH] = ACTIONS(1107), - [anon_sym_LT_LT_LT] = ACTIONS(1107), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - }, - [1566] = { - [aux_sym_concatenation_repeat1] = STATE(1569), - [sym_file_descriptor] = ACTIONS(1109), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = 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(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_LF] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1111), - }, - [1567] = { - [sym_file_descriptor] = ACTIONS(1109), - [anon_sym_esac] = ACTIONS(1111), - [anon_sym_PIPE] = ACTIONS(1111), - [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(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_LF] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1111), - }, - [1568] = { - [sym_string] = STATE(1952), - [sym_simple_expansion] = STATE(1952), - [sym_string_expansion] = STATE(1952), - [sym_expansion] = STATE(1952), - [sym_command_substitution] = STATE(1952), - [sym_process_substitution] = STATE(1952), - [sym__special_characters] = ACTIONS(4558), - [anon_sym_DQUOTE] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2508), - [sym_raw_string] = ACTIONS(4558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), - [anon_sym_BQUOTE] = ACTIONS(2516), - [anon_sym_LT_LPAREN] = ACTIONS(2518), - [anon_sym_GT_LPAREN] = ACTIONS(2518), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4558), - }, - [1569] = { - [aux_sym_concatenation_repeat1] = STATE(1953), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = 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(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(707), - [anon_sym_LT_AMP] = ACTIONS(707), - [anon_sym_GT_AMP] = ACTIONS(707), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_LT_LT_DASH] = ACTIONS(707), - [anon_sym_LT_LT_LT] = ACTIONS(707), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [1570] = { - [sym_file_descriptor] = ACTIONS(709), - [sym__concat] = ACTIONS(709), - [anon_sym_esac] = ACTIONS(711), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_PIPE_AMP] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_GT] = ACTIONS(711), - [anon_sym_GT_GT] = ACTIONS(711), - [anon_sym_AMP_GT] = ACTIONS(711), - [anon_sym_AMP_GT_GT] = ACTIONS(711), - [anon_sym_LT_AMP] = ACTIONS(711), - [anon_sym_GT_AMP] = ACTIONS(711), - [anon_sym_LT_LT] = ACTIONS(711), - [anon_sym_LT_LT_DASH] = ACTIONS(711), - [anon_sym_LT_LT_LT] = ACTIONS(711), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_LF] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(711), - }, - [1571] = { - [anon_sym_DQUOTE] = ACTIONS(4560), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [1572] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(4560), - [anon_sym_DOLLAR] = ACTIONS(4562), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [1573] = { - [sym_file_descriptor] = ACTIONS(741), - [sym__concat] = ACTIONS(741), - [anon_sym_esac] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_PIPE_AMP] = ACTIONS(743), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_GT_GT] = ACTIONS(743), - [anon_sym_AMP_GT] = ACTIONS(743), - [anon_sym_AMP_GT_GT] = ACTIONS(743), - [anon_sym_LT_AMP] = ACTIONS(743), - [anon_sym_GT_AMP] = ACTIONS(743), - [anon_sym_LT_LT] = ACTIONS(743), - [anon_sym_LT_LT_DASH] = ACTIONS(743), - [anon_sym_LT_LT_LT] = ACTIONS(743), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LF] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), - }, - [1574] = { - [sym_file_descriptor] = ACTIONS(745), - [sym__concat] = ACTIONS(745), - [anon_sym_esac] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_GT] = ACTIONS(747), - [anon_sym_AMP_GT] = ACTIONS(747), - [anon_sym_AMP_GT_GT] = ACTIONS(747), - [anon_sym_LT_AMP] = ACTIONS(747), - [anon_sym_GT_AMP] = ACTIONS(747), - [anon_sym_LT_LT] = ACTIONS(747), - [anon_sym_LT_LT_DASH] = ACTIONS(747), - [anon_sym_LT_LT_LT] = ACTIONS(747), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - }, - [1575] = { - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(749), - [anon_sym_esac] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_PIPE_AMP] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(751), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(751), - [anon_sym_LT_AMP] = ACTIONS(751), - [anon_sym_GT_AMP] = ACTIONS(751), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(751), - [anon_sym_LT_LT_LT] = ACTIONS(751), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [1576] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(4564), - [sym_comment] = ACTIONS(53), - }, - [1577] = { - [sym_concatenation] = STATE(1959), - [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), - [aux_sym_expansion_repeat1] = STATE(1959), - [anon_sym_RBRACE] = ACTIONS(4566), - [anon_sym_EQ] = ACTIONS(4568), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4572), - [anon_sym_COLON] = ACTIONS(4568), - [anon_sym_COLON_QMARK] = ACTIONS(4568), - [anon_sym_COLON_DASH] = ACTIONS(4568), - [anon_sym_PERCENT] = ACTIONS(4568), - [anon_sym_DASH] = ACTIONS(4568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1578] = { - [sym_subscript] = STATE(1963), - [sym_variable_name] = ACTIONS(4574), - [anon_sym_DOLLAR] = ACTIONS(4576), - [anon_sym_DASH] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4578), - [anon_sym_STAR] = ACTIONS(4576), - [anon_sym_AT] = ACTIONS(4576), - [anon_sym_QMARK] = ACTIONS(4576), - [anon_sym_0] = ACTIONS(4580), - [anon_sym__] = ACTIONS(4580), - }, - [1579] = { - [sym_concatenation] = STATE(1966), - [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), - [aux_sym_expansion_repeat1] = STATE(1966), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_EQ] = ACTIONS(4584), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4586), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4588), - [anon_sym_COLON] = ACTIONS(4584), - [anon_sym_COLON_QMARK] = ACTIONS(4584), - [anon_sym_COLON_DASH] = ACTIONS(4584), - [anon_sym_PERCENT] = ACTIONS(4584), - [anon_sym_DASH] = ACTIONS(4584), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1580] = { - [sym_concatenation] = STATE(1969), - [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), - [aux_sym_expansion_repeat1] = STATE(1969), - [anon_sym_RBRACE] = ACTIONS(4590), - [anon_sym_EQ] = ACTIONS(4592), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4594), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4596), - [anon_sym_COLON] = ACTIONS(4592), - [anon_sym_COLON_QMARK] = ACTIONS(4592), - [anon_sym_COLON_DASH] = ACTIONS(4592), - [anon_sym_PERCENT] = ACTIONS(4592), - [anon_sym_DASH] = ACTIONS(4592), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1581] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(4598), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [1582] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(4598), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1583] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(4598), - [sym_comment] = ACTIONS(53), - }, - [1584] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(4598), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1585] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(4600), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [1586] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(4600), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1587] = { - [sym__concat] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3905), - [anon_sym_EQ_TILDE] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_EQ] = ACTIONS(3907), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3905), - }, - [1588] = { - [sym__concat] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3913), - [anon_sym_EQ_TILDE] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3913), - [anon_sym_GT] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3913), - }, - [1589] = { - [sym__concat] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_PIPE_PIPE] = ACTIONS(4000), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4000), - [anon_sym_EQ_TILDE] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ] = ACTIONS(4002), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_BANG_EQ] = ACTIONS(4000), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4000), - }, - [1590] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4602), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1591] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4604), - [sym_comment] = ACTIONS(53), - }, - [1592] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4606), - [sym_comment] = ACTIONS(53), - }, - [1593] = { - [anon_sym_RBRACE] = ACTIONS(4606), - [sym_comment] = ACTIONS(53), - }, - [1594] = { - [sym_concatenation] = STATE(1976), - [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), - [aux_sym_expansion_repeat1] = STATE(1976), - [anon_sym_RBRACE] = ACTIONS(4608), - [anon_sym_EQ] = ACTIONS(4610), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4610), - [anon_sym_COLON_QMARK] = ACTIONS(4610), - [anon_sym_COLON_DASH] = ACTIONS(4610), - [anon_sym_PERCENT] = ACTIONS(4610), - [anon_sym_DASH] = ACTIONS(4610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1595] = { - [sym__concat] = ACTIONS(4016), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4016), - [anon_sym_EQ_TILDE] = ACTIONS(4016), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_EQ] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4016), - }, - [1596] = { - [sym_concatenation] = STATE(1978), - [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), - [aux_sym_expansion_repeat1] = STATE(1978), - [anon_sym_RBRACE] = ACTIONS(4614), - [anon_sym_EQ] = ACTIONS(4616), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4616), - [anon_sym_COLON_QMARK] = ACTIONS(4616), - [anon_sym_COLON_DASH] = ACTIONS(4616), - [anon_sym_PERCENT] = ACTIONS(4616), - [anon_sym_DASH] = ACTIONS(4616), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1597] = { - [sym__concat] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4026), - [anon_sym_EQ_TILDE] = ACTIONS(4026), - [anon_sym_EQ_EQ] = ACTIONS(4026), - [anon_sym_EQ] = ACTIONS(4028), - [anon_sym_LT] = ACTIONS(4026), - [anon_sym_GT] = ACTIONS(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4026), - }, - [1598] = { - [sym_concatenation] = STATE(1980), - [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), - [aux_sym_expansion_repeat1] = STATE(1980), + [sym_concatenation] = STATE(2008), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2008), [anon_sym_RBRACE] = ACTIONS(4620), [anon_sym_EQ] = ACTIONS(4622), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(4624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), [anon_sym_COLON] = ACTIONS(4622), [anon_sym_COLON_QMARK] = ACTIONS(4622), [anon_sym_COLON_DASH] = ACTIONS(4622), [anon_sym_PERCENT] = ACTIONS(4622), [anon_sym_DASH] = ACTIONS(4622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1599] = { - [sym__concat] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4036), - [anon_sym_EQ_TILDE] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ] = ACTIONS(4038), - [anon_sym_LT] = ACTIONS(4036), - [anon_sym_GT] = ACTIONS(4036), - [anon_sym_BANG_EQ] = ACTIONS(4036), + [1565] = { + [sym_file_descriptor] = ACTIONS(3016), + [sym__concat] = ACTIONS(3016), + [sym_variable_name] = ACTIONS(3016), + [anon_sym_esac] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3018), + [anon_sym_SEMI_SEMI] = ACTIONS(3018), + [anon_sym_PIPE_AMP] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_GT_GT] = ACTIONS(3018), + [anon_sym_AMP_GT] = ACTIONS(3018), + [anon_sym_AMP_GT_GT] = ACTIONS(3018), + [anon_sym_LT_AMP] = ACTIONS(3018), + [anon_sym_GT_AMP] = ACTIONS(3018), + [sym__special_characters] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), + [anon_sym_BQUOTE] = ACTIONS(3018), + [anon_sym_LT_LPAREN] = ACTIONS(3018), + [anon_sym_GT_LPAREN] = ACTIONS(3018), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3018), + }, + [1566] = { + [sym_concatenation] = STATE(2011), + [sym_string] = STATE(2010), + [sym_simple_expansion] = STATE(2010), + [sym_string_expansion] = STATE(2010), + [sym_expansion] = STATE(2010), + [sym_command_substitution] = STATE(2010), + [sym_process_substitution] = STATE(2010), + [anon_sym_RBRACE] = ACTIONS(4618), + [sym__special_characters] = ACTIONS(4626), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(4628), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4036), + [sym_word] = ACTIONS(4628), }, - [1600] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1567] = { + [sym_file_descriptor] = ACTIONS(3059), + [sym__concat] = ACTIONS(3059), + [sym_variable_name] = ACTIONS(3059), + [anon_sym_esac] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_SEMI_SEMI] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(3061), + [anon_sym_LT_AMP] = ACTIONS(3061), + [anon_sym_GT_AMP] = ACTIONS(3061), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), + [anon_sym_BQUOTE] = ACTIONS(3061), + [anon_sym_LT_LPAREN] = ACTIONS(3061), + [anon_sym_GT_LPAREN] = ACTIONS(3061), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), }, - [1601] = { - [sym__concat] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4042), - [anon_sym_EQ_TILDE] = ACTIONS(4042), - [anon_sym_EQ_EQ] = ACTIONS(4042), - [anon_sym_EQ] = ACTIONS(4044), - [anon_sym_LT] = ACTIONS(4042), - [anon_sym_GT] = ACTIONS(4042), - [anon_sym_BANG_EQ] = ACTIONS(4042), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4042), + [1568] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4630), }, - [1602] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4628), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1603] = { - [sym_variable_name] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_RPAREN] = ACTIONS(3411), - [anon_sym_SEMI_SEMI] = ACTIONS(3411), - [anon_sym_PIPE_AMP] = ACTIONS(3411), - [anon_sym_AMP_AMP] = ACTIONS(3411), - [anon_sym_PIPE_PIPE] = ACTIONS(3411), - [sym__special_characters] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3411), - [sym_raw_string] = ACTIONS(3411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3411), - [anon_sym_BQUOTE] = ACTIONS(3411), - [anon_sym_LT_LPAREN] = ACTIONS(3411), - [anon_sym_GT_LPAREN] = ACTIONS(3411), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3411), - [sym_word] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_LF] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3411), - }, - [1604] = { - [sym__concat] = ACTIONS(3905), - [sym_variable_name] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3907), - [anon_sym_SEMI_SEMI] = ACTIONS(3907), - [anon_sym_PIPE_AMP] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [sym__special_characters] = ACTIONS(3907), - [anon_sym_DQUOTE] = ACTIONS(3907), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), - [anon_sym_BQUOTE] = ACTIONS(3907), - [anon_sym_LT_LPAREN] = ACTIONS(3907), - [anon_sym_GT_LPAREN] = ACTIONS(3907), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3907), - [sym_word] = ACTIONS(3907), - [anon_sym_SEMI] = ACTIONS(3907), - [anon_sym_LF] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3907), - }, - [1605] = { - [sym__concat] = ACTIONS(3913), - [sym_variable_name] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3915), - [sym_word] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3915), - }, - [1606] = { - [sym__concat] = ACTIONS(4000), - [sym_variable_name] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4002), - [anon_sym_SEMI_SEMI] = ACTIONS(4002), - [anon_sym_PIPE_AMP] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [sym__special_characters] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4002), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), - [anon_sym_BQUOTE] = ACTIONS(4002), - [anon_sym_LT_LPAREN] = ACTIONS(4002), - [anon_sym_GT_LPAREN] = ACTIONS(4002), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4002), - [sym_word] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_LF] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4002), - }, - [1607] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4630), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1608] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), + [1569] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), [anon_sym_RBRACE] = ACTIONS(4632), - [sym_comment] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1609] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4634), - [sym_comment] = ACTIONS(53), + [1570] = { + [sym_file_descriptor] = ACTIONS(3067), + [sym__concat] = ACTIONS(3067), + [sym_variable_name] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_SEMI_SEMI] = ACTIONS(3069), + [anon_sym_PIPE_AMP] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_GT] = ACTIONS(3069), + [anon_sym_AMP_GT] = ACTIONS(3069), + [anon_sym_AMP_GT_GT] = ACTIONS(3069), + [anon_sym_LT_AMP] = ACTIONS(3069), + [anon_sym_GT_AMP] = ACTIONS(3069), + [sym__special_characters] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), + [anon_sym_BQUOTE] = ACTIONS(3069), + [anon_sym_LT_LPAREN] = ACTIONS(3069), + [anon_sym_GT_LPAREN] = ACTIONS(3069), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3069), }, - [1610] = { - [anon_sym_RBRACE] = ACTIONS(4634), - [sym_comment] = ACTIONS(53), + [1571] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4634), }, - [1611] = { - [sym_concatenation] = STATE(1987), - [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), - [aux_sym_expansion_repeat1] = STATE(1987), + [1572] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), [anon_sym_RBRACE] = ACTIONS(4636), - [anon_sym_EQ] = ACTIONS(4638), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4640), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4638), - [anon_sym_COLON_QMARK] = ACTIONS(4638), - [anon_sym_COLON_DASH] = ACTIONS(4638), - [anon_sym_PERCENT] = ACTIONS(4638), - [anon_sym_DASH] = ACTIONS(4638), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1612] = { - [sym__concat] = ACTIONS(4016), - [sym_variable_name] = ACTIONS(4016), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_SEMI_SEMI] = ACTIONS(4018), - [anon_sym_PIPE_AMP] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [sym__special_characters] = ACTIONS(4018), - [anon_sym_DQUOTE] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym_raw_string] = ACTIONS(4018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), - [anon_sym_BQUOTE] = ACTIONS(4018), - [anon_sym_LT_LPAREN] = ACTIONS(4018), - [anon_sym_GT_LPAREN] = ACTIONS(4018), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4018), - [sym_word] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4018), + [1573] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4638), }, - [1613] = { - [sym_concatenation] = STATE(1989), - [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), - [aux_sym_expansion_repeat1] = STATE(1989), - [anon_sym_RBRACE] = ACTIONS(4642), - [anon_sym_EQ] = ACTIONS(4644), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4646), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4644), - [anon_sym_COLON_QMARK] = ACTIONS(4644), - [anon_sym_COLON_DASH] = ACTIONS(4644), - [anon_sym_PERCENT] = ACTIONS(4644), - [anon_sym_DASH] = ACTIONS(4644), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1574] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1614] = { - [sym__concat] = ACTIONS(4026), - [sym_variable_name] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_RPAREN] = ACTIONS(4028), - [anon_sym_SEMI_SEMI] = ACTIONS(4028), - [anon_sym_PIPE_AMP] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_PIPE_PIPE] = ACTIONS(4028), - [sym__special_characters] = ACTIONS(4028), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), - [anon_sym_BQUOTE] = ACTIONS(4028), - [anon_sym_LT_LPAREN] = ACTIONS(4028), - [anon_sym_GT_LPAREN] = ACTIONS(4028), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4028), - [sym_word] = ACTIONS(4028), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym_LF] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4028), + [1575] = { + [sym_concatenation] = STATE(2018), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2018), + [anon_sym_RBRACE] = ACTIONS(4640), + [anon_sym_EQ] = ACTIONS(4642), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_COLON_QMARK] = ACTIONS(4642), + [anon_sym_COLON_DASH] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1615] = { - [sym_concatenation] = STATE(1991), - [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), - [aux_sym_expansion_repeat1] = STATE(1991), - [anon_sym_RBRACE] = ACTIONS(4648), - [anon_sym_EQ] = ACTIONS(4650), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4650), - [anon_sym_COLON_QMARK] = ACTIONS(4650), - [anon_sym_COLON_DASH] = ACTIONS(4650), - [anon_sym_PERCENT] = ACTIONS(4650), - [anon_sym_DASH] = ACTIONS(4650), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1576] = { + [sym_file_descriptor] = ACTIONS(3083), + [sym__concat] = ACTIONS(3083), + [sym_variable_name] = ACTIONS(3083), + [anon_sym_esac] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_RPAREN] = ACTIONS(3085), + [anon_sym_SEMI_SEMI] = ACTIONS(3085), + [anon_sym_PIPE_AMP] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_GT] = ACTIONS(3085), + [anon_sym_GT_GT] = ACTIONS(3085), + [anon_sym_AMP_GT] = ACTIONS(3085), + [anon_sym_AMP_GT_GT] = ACTIONS(3085), + [anon_sym_LT_AMP] = ACTIONS(3085), + [anon_sym_GT_AMP] = ACTIONS(3085), + [sym__special_characters] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), + [anon_sym_BQUOTE] = ACTIONS(3085), + [anon_sym_LT_LPAREN] = ACTIONS(3085), + [anon_sym_GT_LPAREN] = ACTIONS(3085), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), }, - [1616] = { - [sym__concat] = ACTIONS(4036), - [sym_variable_name] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_RPAREN] = ACTIONS(4038), - [anon_sym_SEMI_SEMI] = ACTIONS(4038), - [anon_sym_PIPE_AMP] = ACTIONS(4038), - [anon_sym_AMP_AMP] = ACTIONS(4038), - [anon_sym_PIPE_PIPE] = ACTIONS(4038), - [sym__special_characters] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4038), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), - [anon_sym_BQUOTE] = ACTIONS(4038), - [anon_sym_LT_LPAREN] = ACTIONS(4038), - [anon_sym_GT_LPAREN] = ACTIONS(4038), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4038), - [sym_word] = ACTIONS(4038), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4038), + [1577] = { + [sym_concatenation] = STATE(2020), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2020), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_EQ] = ACTIONS(4648), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_COLON_QMARK] = ACTIONS(4648), + [anon_sym_COLON_DASH] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1617] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1618] = { - [sym__concat] = ACTIONS(4042), - [sym_variable_name] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4044), - [sym_word] = ACTIONS(4044), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4044), - }, - [1619] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4656), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1620] = { - [sym__concat] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3907), - [anon_sym_SEMI_SEMI] = ACTIONS(3907), - [anon_sym_PIPE_AMP] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [sym__special_characters] = ACTIONS(3907), - [anon_sym_DQUOTE] = ACTIONS(3907), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), - [anon_sym_BQUOTE] = ACTIONS(3907), - [anon_sym_LT_LPAREN] = ACTIONS(3907), - [anon_sym_GT_LPAREN] = ACTIONS(3907), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3907), - [sym_word] = ACTIONS(3907), - [anon_sym_SEMI] = ACTIONS(3907), - [anon_sym_LF] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3907), - }, - [1621] = { - [sym__concat] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3915), - [sym_word] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3915), - }, - [1622] = { - [sym__concat] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4002), - [anon_sym_SEMI_SEMI] = ACTIONS(4002), - [anon_sym_PIPE_AMP] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [sym__special_characters] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4002), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), - [anon_sym_BQUOTE] = ACTIONS(4002), - [anon_sym_LT_LPAREN] = ACTIONS(4002), - [anon_sym_GT_LPAREN] = ACTIONS(4002), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4002), - [sym_word] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_LF] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4002), - }, - [1623] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4658), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1624] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4660), + [1578] = { + [sym__terminated_statement] = STATE(2022), + [sym_for_statement] = STATE(680), + [sym_c_style_for_statement] = STATE(680), + [sym_while_statement] = STATE(680), + [sym_if_statement] = STATE(680), + [sym_case_statement] = STATE(680), + [sym_function_definition] = STATE(680), + [sym_subshell] = STATE(680), + [sym_pipeline] = STATE(680), + [sym_list] = STATE(680), + [sym_negated_command] = STATE(680), + [sym_test_command] = STATE(680), + [sym_declaration_command] = STATE(680), + [sym_unset_command] = STATE(680), + [sym_command] = STATE(680), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(681), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2022), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, - [1625] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4662), + [1579] = { + [anon_sym_esac] = ACTIONS(4654), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_SEMI_SEMI] = ACTIONS(4654), + [anon_sym_PIPE_AMP] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_LF] = ACTIONS(4656), + [anon_sym_AMP] = ACTIONS(4654), + }, + [1580] = { + [anon_sym_RPAREN] = ACTIONS(4658), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_PIPE_PIPE] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1393), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1391), }, - [1626] = { - [anon_sym_RBRACE] = ACTIONS(4662), + [1581] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_EQ_TILDE] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3688), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3684), }, - [1627] = { - [sym_concatenation] = STATE(1998), - [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), - [aux_sym_expansion_repeat1] = STATE(1998), - [anon_sym_RBRACE] = ACTIONS(4664), + [1582] = { + [sym_string] = STATE(2024), + [sym_simple_expansion] = STATE(2024), + [sym_string_expansion] = STATE(2024), + [sym_expansion] = STATE(2024), + [sym_command_substitution] = STATE(2024), + [sym_process_substitution] = STATE(2024), + [sym__special_characters] = ACTIONS(4660), + [anon_sym_DQUOTE] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [sym_raw_string] = ACTIONS(4660), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), + [anon_sym_BQUOTE] = ACTIONS(2353), + [anon_sym_LT_LPAREN] = ACTIONS(2355), + [anon_sym_GT_LPAREN] = ACTIONS(2355), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4660), + }, + [1583] = { + [aux_sym_concatenation_repeat1] = STATE(2025), + [sym__concat] = ACTIONS(3658), + [anon_sym_RPAREN_RPAREN] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_EQ_TILDE] = ACTIONS(731), + [anon_sym_EQ_EQ] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_BANG_EQ] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(731), + }, + [1584] = { + [sym__concat] = ACTIONS(735), + [anon_sym_RPAREN_RPAREN] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_EQ_TILDE] = ACTIONS(735), + [anon_sym_EQ_EQ] = ACTIONS(735), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_GT] = ACTIONS(735), + [anon_sym_BANG_EQ] = ACTIONS(735), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(735), + }, + [1585] = { + [anon_sym_DQUOTE] = ACTIONS(4662), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [1586] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(4662), + [anon_sym_DOLLAR] = ACTIONS(4664), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [1587] = { + [sym__concat] = ACTIONS(767), + [anon_sym_RPAREN_RPAREN] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_EQ_TILDE] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(767), + }, + [1588] = { + [sym__concat] = ACTIONS(771), + [anon_sym_RPAREN_RPAREN] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_EQ_TILDE] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(771), + }, + [1589] = { + [sym__concat] = ACTIONS(775), + [anon_sym_RPAREN_RPAREN] = ACTIONS(775), + [anon_sym_AMP_AMP] = ACTIONS(775), + [anon_sym_PIPE_PIPE] = ACTIONS(775), + [anon_sym_EQ_TILDE] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_BANG_EQ] = ACTIONS(775), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(775), + }, + [1590] = { + [anon_sym_LBRACK] = ACTIONS(779), [anon_sym_EQ] = ACTIONS(4666), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4668), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4666), - [anon_sym_COLON_QMARK] = ACTIONS(4666), - [anon_sym_COLON_DASH] = ACTIONS(4666), - [anon_sym_PERCENT] = ACTIONS(4666), - [anon_sym_DASH] = ACTIONS(4666), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_comment] = ACTIONS(53), }, - [1628] = { - [sym__concat] = ACTIONS(4016), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_SEMI_SEMI] = ACTIONS(4018), - [anon_sym_PIPE_AMP] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [sym__special_characters] = ACTIONS(4018), - [anon_sym_DQUOTE] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym_raw_string] = ACTIONS(4018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), - [anon_sym_BQUOTE] = ACTIONS(4018), - [anon_sym_LT_LPAREN] = ACTIONS(4018), - [anon_sym_GT_LPAREN] = ACTIONS(4018), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4018), - [sym_word] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4018), + [1591] = { + [sym_concatenation] = STATE(2031), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2031), + [anon_sym_RBRACE] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(4670), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4674), + [anon_sym_COLON] = ACTIONS(4670), + [anon_sym_COLON_QMARK] = ACTIONS(4670), + [anon_sym_COLON_DASH] = ACTIONS(4670), + [anon_sym_PERCENT] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1629] = { - [sym_concatenation] = STATE(2000), - [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), - [aux_sym_expansion_repeat1] = STATE(2000), - [anon_sym_RBRACE] = ACTIONS(4670), - [anon_sym_EQ] = ACTIONS(4672), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COLON_QMARK] = ACTIONS(4672), - [anon_sym_COLON_DASH] = ACTIONS(4672), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_DASH] = ACTIONS(4672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1630] = { - [sym__concat] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_RPAREN] = ACTIONS(4028), - [anon_sym_SEMI_SEMI] = ACTIONS(4028), - [anon_sym_PIPE_AMP] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_PIPE_PIPE] = ACTIONS(4028), - [sym__special_characters] = ACTIONS(4028), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), - [anon_sym_BQUOTE] = ACTIONS(4028), - [anon_sym_LT_LPAREN] = ACTIONS(4028), - [anon_sym_GT_LPAREN] = ACTIONS(4028), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4028), - [sym_word] = ACTIONS(4028), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym_LF] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4028), - }, - [1631] = { - [sym_concatenation] = STATE(2002), - [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), - [aux_sym_expansion_repeat1] = STATE(2002), - [anon_sym_RBRACE] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4678), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4680), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4678), - [anon_sym_COLON_QMARK] = ACTIONS(4678), - [anon_sym_COLON_DASH] = ACTIONS(4678), - [anon_sym_PERCENT] = ACTIONS(4678), + [1592] = { + [sym_subscript] = STATE(2035), + [sym_variable_name] = ACTIONS(4676), + [anon_sym_DOLLAR] = ACTIONS(4678), [anon_sym_DASH] = ACTIONS(4678), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4678), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_0] = ACTIONS(4682), + [anon_sym__] = ACTIONS(4682), }, - [1632] = { - [sym__concat] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_RPAREN] = ACTIONS(4038), - [anon_sym_SEMI_SEMI] = ACTIONS(4038), - [anon_sym_PIPE_AMP] = ACTIONS(4038), - [anon_sym_AMP_AMP] = ACTIONS(4038), - [anon_sym_PIPE_PIPE] = ACTIONS(4038), - [sym__special_characters] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4038), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), - [anon_sym_BQUOTE] = ACTIONS(4038), - [anon_sym_LT_LPAREN] = ACTIONS(4038), - [anon_sym_GT_LPAREN] = ACTIONS(4038), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4038), - [sym_word] = ACTIONS(4038), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4038), - }, - [1633] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4682), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1634] = { - [sym__concat] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4044), - [sym_word] = ACTIONS(4044), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4044), - }, - [1635] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), + [1593] = { + [sym_concatenation] = STATE(2038), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2038), [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_EQ] = ACTIONS(4686), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4686), + [anon_sym_COLON_QMARK] = ACTIONS(4686), + [anon_sym_COLON_DASH] = ACTIONS(4686), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_DASH] = ACTIONS(4686), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1636] = { - [sym_file_descriptor] = ACTIONS(3905), - [sym__concat] = ACTIONS(3905), - [sym_variable_name] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3905), - [anon_sym_PIPE_AMP] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_AMP_GT] = ACTIONS(3907), - [anon_sym_AMP_GT_GT] = ACTIONS(3905), - [anon_sym_LT_AMP] = ACTIONS(3905), - [anon_sym_GT_AMP] = ACTIONS(3905), - [sym__special_characters] = ACTIONS(3905), - [anon_sym_DQUOTE] = ACTIONS(3905), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3905), - [anon_sym_BQUOTE] = ACTIONS(3905), - [anon_sym_LT_LPAREN] = ACTIONS(3905), - [anon_sym_GT_LPAREN] = ACTIONS(3905), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3905), - }, - [1637] = { - [sym_file_descriptor] = ACTIONS(3913), - [sym__concat] = ACTIONS(3913), - [sym_variable_name] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3913), - [anon_sym_PIPE_AMP] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_AMP_GT] = ACTIONS(3915), - [anon_sym_AMP_GT_GT] = ACTIONS(3913), - [anon_sym_LT_AMP] = ACTIONS(3913), - [anon_sym_GT_AMP] = ACTIONS(3913), - [sym__special_characters] = ACTIONS(3913), - [anon_sym_DQUOTE] = ACTIONS(3913), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), - [anon_sym_BQUOTE] = ACTIONS(3913), - [anon_sym_LT_LPAREN] = ACTIONS(3913), - [anon_sym_GT_LPAREN] = ACTIONS(3913), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3913), - }, - [1638] = { - [sym_file_descriptor] = ACTIONS(4000), - [sym__concat] = ACTIONS(4000), - [sym_variable_name] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4000), - [anon_sym_PIPE_AMP] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_PIPE_PIPE] = ACTIONS(4000), - [anon_sym_LT] = ACTIONS(4002), - [anon_sym_GT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4000), - [anon_sym_AMP_GT] = ACTIONS(4002), - [anon_sym_AMP_GT_GT] = ACTIONS(4000), - [anon_sym_LT_AMP] = ACTIONS(4000), - [anon_sym_GT_AMP] = ACTIONS(4000), - [sym__special_characters] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), - [anon_sym_BQUOTE] = ACTIONS(4000), - [anon_sym_LT_LPAREN] = ACTIONS(4000), - [anon_sym_GT_LPAREN] = ACTIONS(4000), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4000), - }, - [1639] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1640] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4688), - [sym_comment] = ACTIONS(53), - }, - [1641] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4690), - [sym_comment] = ACTIONS(53), - }, - [1642] = { - [anon_sym_RBRACE] = ACTIONS(4690), - [sym_comment] = ACTIONS(53), - }, - [1643] = { - [sym_concatenation] = STATE(2009), - [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), - [aux_sym_expansion_repeat1] = STATE(2009), + [1594] = { + [sym_concatenation] = STATE(2041), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2041), [anon_sym_RBRACE] = ACTIONS(4692), [anon_sym_EQ] = ACTIONS(4694), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(4696), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [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_DASH] = ACTIONS(4694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1644] = { - [sym_file_descriptor] = ACTIONS(4016), - [sym__concat] = ACTIONS(4016), - [sym_variable_name] = ACTIONS(4016), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4016), - [anon_sym_PIPE_AMP] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_AMP_GT] = ACTIONS(4018), - [anon_sym_AMP_GT_GT] = ACTIONS(4016), - [anon_sym_LT_AMP] = ACTIONS(4016), - [anon_sym_GT_AMP] = ACTIONS(4016), - [sym__special_characters] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym_raw_string] = ACTIONS(4016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4016), - [anon_sym_BQUOTE] = ACTIONS(4016), - [anon_sym_LT_LPAREN] = ACTIONS(4016), - [anon_sym_GT_LPAREN] = ACTIONS(4016), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4016), - }, - [1645] = { - [sym_concatenation] = STATE(2011), - [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), - [aux_sym_expansion_repeat1] = STATE(2011), - [anon_sym_RBRACE] = ACTIONS(4698), - [anon_sym_EQ] = ACTIONS(4700), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4700), - [anon_sym_COLON_QMARK] = ACTIONS(4700), - [anon_sym_COLON_DASH] = ACTIONS(4700), - [anon_sym_PERCENT] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1646] = { - [sym_file_descriptor] = ACTIONS(4026), - [sym__concat] = ACTIONS(4026), - [sym_variable_name] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4028), - [anon_sym_GT] = ACTIONS(4028), - [anon_sym_GT_GT] = ACTIONS(4026), - [anon_sym_AMP_GT] = ACTIONS(4028), - [anon_sym_AMP_GT_GT] = ACTIONS(4026), - [anon_sym_LT_AMP] = ACTIONS(4026), - [anon_sym_GT_AMP] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4026), - }, - [1647] = { - [sym_concatenation] = STATE(2013), - [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), - [aux_sym_expansion_repeat1] = STATE(2013), - [anon_sym_RBRACE] = ACTIONS(4704), - [anon_sym_EQ] = ACTIONS(4706), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4706), - [anon_sym_COLON_QMARK] = ACTIONS(4706), - [anon_sym_COLON_DASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4706), - [anon_sym_DASH] = ACTIONS(4706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1648] = { - [sym_file_descriptor] = ACTIONS(4036), - [sym__concat] = ACTIONS(4036), - [sym_variable_name] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4038), - [anon_sym_GT] = ACTIONS(4038), - [anon_sym_GT_GT] = ACTIONS(4036), - [anon_sym_AMP_GT] = ACTIONS(4038), - [anon_sym_AMP_GT_GT] = ACTIONS(4036), - [anon_sym_LT_AMP] = ACTIONS(4036), - [anon_sym_GT_AMP] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4036), - }, - [1649] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4710), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1650] = { - [sym_file_descriptor] = ACTIONS(4042), - [sym__concat] = ACTIONS(4042), - [sym_variable_name] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4042), - [anon_sym_PIPE_AMP] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_LT] = ACTIONS(4044), - [anon_sym_GT] = ACTIONS(4044), - [anon_sym_GT_GT] = ACTIONS(4042), - [anon_sym_AMP_GT] = ACTIONS(4044), - [anon_sym_AMP_GT_GT] = ACTIONS(4042), - [anon_sym_LT_AMP] = ACTIONS(4042), - [anon_sym_GT_AMP] = ACTIONS(4042), - [sym__special_characters] = ACTIONS(4042), - [anon_sym_DQUOTE] = ACTIONS(4042), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), - [anon_sym_BQUOTE] = ACTIONS(4042), - [anon_sym_LT_LPAREN] = ACTIONS(4042), - [anon_sym_GT_LPAREN] = ACTIONS(4042), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4042), - }, - [1651] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4712), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1652] = { - [sym__concat] = ACTIONS(3905), - [anon_sym_DQUOTE] = ACTIONS(3907), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym__string_content] = ACTIONS(3905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_comment] = ACTIONS(177), - }, - [1653] = { - [sym__concat] = ACTIONS(3913), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym__string_content] = ACTIONS(3913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [sym_comment] = ACTIONS(177), - }, - [1654] = { - [sym__concat] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4002), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym__string_content] = ACTIONS(4000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), - [anon_sym_BQUOTE] = ACTIONS(4002), - [sym_comment] = ACTIONS(177), - }, - [1655] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1656] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4716), + [1595] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(4700), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), [sym_comment] = ACTIONS(53), }, - [1657] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4718), + [1596] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(4700), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [1597] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(4700), [sym_comment] = ACTIONS(53), }, - [1658] = { - [anon_sym_RBRACE] = ACTIONS(4718), + [1598] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(4700), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [1599] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(4702), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), [sym_comment] = ACTIONS(53), }, - [1659] = { - [sym_concatenation] = STATE(2020), - [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), - [aux_sym_expansion_repeat1] = STATE(2020), - [anon_sym_RBRACE] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4722), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4722), - [anon_sym_COLON_QMARK] = ACTIONS(4722), - [anon_sym_COLON_DASH] = ACTIONS(4722), - [anon_sym_PERCENT] = ACTIONS(4722), - [anon_sym_DASH] = ACTIONS(4722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1600] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(4702), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, - [1660] = { - [sym__concat] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym__string_content] = ACTIONS(4016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), - [anon_sym_BQUOTE] = ACTIONS(4018), - [sym_comment] = ACTIONS(177), + [1601] = { + [sym_do_group] = STATE(2044), + [sym_compound_statement] = STATE(2044), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(3656), + [sym_comment] = ACTIONS(53), }, - [1661] = { - [sym_concatenation] = STATE(2022), - [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), - [aux_sym_expansion_repeat1] = STATE(2022), + [1602] = { + [sym__expression] = STATE(2045), + [sym_binary_expression] = STATE(2045), + [sym_unary_expression] = STATE(2045), + [sym_parenthesized_expression] = STATE(2045), + [sym_concatenation] = STATE(2045), + [sym_string] = STATE(1102), + [sym_simple_expansion] = STATE(1102), + [sym_string_expansion] = STATE(1102), + [sym_expansion] = STATE(1102), + [sym_command_substitution] = STATE(1102), + [sym_process_substitution] = STATE(1102), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [sym__special_characters] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [sym_raw_string] = ACTIONS(2347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), + [anon_sym_BQUOTE] = ACTIONS(2353), + [anon_sym_LT_LPAREN] = ACTIONS(2355), + [anon_sym_GT_LPAREN] = ACTIONS(2355), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2357), + [sym_test_operator] = ACTIONS(2359), + }, + [1603] = { + [sym__expression] = STATE(2045), + [sym_binary_expression] = STATE(2045), + [sym_unary_expression] = STATE(2045), + [sym_parenthesized_expression] = STATE(2045), + [sym_concatenation] = STATE(2045), + [sym_string] = STATE(1102), + [sym_simple_expansion] = STATE(1102), + [sym_string_expansion] = STATE(1102), + [sym_expansion] = STATE(1102), + [sym_command_substitution] = STATE(1102), + [sym_process_substitution] = STATE(1102), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(2339), + [sym__special_characters] = ACTIONS(4706), + [anon_sym_DQUOTE] = ACTIONS(4708), + [anon_sym_DOLLAR] = ACTIONS(2345), + [sym_raw_string] = ACTIONS(2357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4712), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4716), + [anon_sym_GT_LPAREN] = ACTIONS(4716), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2357), + [sym_test_operator] = ACTIONS(2339), + [sym_regex] = ACTIONS(4718), + }, + [1604] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_EQ_TILDE] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3688), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3684), + }, + [1605] = { + [sym__concat] = ACTIONS(2920), + [anon_sym_esac] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [anon_sym_PIPE_AMP] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [anon_sym_EQ_TILDE] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2922), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2922), + }, + [1606] = { + [sym__concat] = ACTIONS(2934), + [anon_sym_esac] = ACTIONS(2936), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_SEMI_SEMI] = ACTIONS(2936), + [anon_sym_PIPE_AMP] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [anon_sym_EQ_TILDE] = ACTIONS(2936), + [anon_sym_EQ_EQ] = ACTIONS(2936), + [anon_sym_EQ] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_GT] = ACTIONS(2936), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_LF] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2936), + }, + [1607] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4722), + [sym_comment] = ACTIONS(53), + }, + [1608] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4724), + [sym_comment] = ACTIONS(53), + }, + [1609] = { + [anon_sym_RBRACE] = ACTIONS(4724), + [sym_comment] = ACTIONS(53), + }, + [1610] = { + [sym_concatenation] = STATE(2051), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2051), [anon_sym_RBRACE] = ACTIONS(4726), [anon_sym_EQ] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(4730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), [anon_sym_COLON] = ACTIONS(4728), [anon_sym_COLON_QMARK] = ACTIONS(4728), [anon_sym_COLON_DASH] = ACTIONS(4728), [anon_sym_PERCENT] = ACTIONS(4728), [anon_sym_DASH] = ACTIONS(4728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1662] = { - [sym__concat] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym__string_content] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), - [anon_sym_BQUOTE] = ACTIONS(4028), - [sym_comment] = ACTIONS(177), + [1611] = { + [sym__concat] = ACTIONS(3016), + [anon_sym_esac] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_SEMI_SEMI] = ACTIONS(3018), + [anon_sym_PIPE_AMP] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [anon_sym_EQ_TILDE] = ACTIONS(3018), + [anon_sym_EQ_EQ] = ACTIONS(3018), + [anon_sym_EQ] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_BANG_EQ] = ACTIONS(3018), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3018), }, - [1663] = { - [sym_concatenation] = STATE(2024), - [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), - [aux_sym_expansion_repeat1] = STATE(2024), - [anon_sym_RBRACE] = ACTIONS(4732), - [anon_sym_EQ] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4734), - [anon_sym_COLON_QMARK] = ACTIONS(4734), - [anon_sym_COLON_DASH] = ACTIONS(4734), - [anon_sym_PERCENT] = ACTIONS(4734), - [anon_sym_DASH] = ACTIONS(4734), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1664] = { - [sym__concat] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4038), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym__string_content] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), - [anon_sym_BQUOTE] = ACTIONS(4038), - [sym_comment] = ACTIONS(177), - }, - [1665] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4738), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1666] = { - [sym__concat] = ACTIONS(4042), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym__string_content] = ACTIONS(4042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [sym_comment] = ACTIONS(177), - }, - [1667] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1668] = { - [sym__concat] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(4744), - [sym__special_characters] = ACTIONS(4744), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(4744), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_POUND] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_COLON] = ACTIONS(4744), - [anon_sym_COLON_QMARK] = ACTIONS(4744), - [anon_sym_COLON_DASH] = ACTIONS(4744), - [anon_sym_PERCENT] = ACTIONS(4744), - [anon_sym_DASH] = ACTIONS(4744), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4744), - }, - [1669] = { - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(4744), - [sym__special_characters] = ACTIONS(4744), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(4744), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_POUND] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_COLON] = ACTIONS(4744), - [anon_sym_COLON_QMARK] = ACTIONS(4744), - [anon_sym_COLON_DASH] = ACTIONS(4744), - [anon_sym_PERCENT] = ACTIONS(4744), - [anon_sym_DASH] = ACTIONS(4744), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4744), - }, - [1670] = { - [sym__concat] = ACTIONS(4746), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_EQ] = ACTIONS(4748), - [sym__special_characters] = ACTIONS(4748), - [anon_sym_DQUOTE] = ACTIONS(3363), - [anon_sym_DOLLAR] = ACTIONS(4748), - [sym_raw_string] = ACTIONS(3363), - [anon_sym_POUND] = ACTIONS(3363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COLON_QMARK] = ACTIONS(4748), - [anon_sym_COLON_DASH] = ACTIONS(4748), - [anon_sym_PERCENT] = ACTIONS(4748), - [anon_sym_DASH] = ACTIONS(4748), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3363), - [anon_sym_BQUOTE] = ACTIONS(3363), - [anon_sym_LT_LPAREN] = ACTIONS(3363), - [anon_sym_GT_LPAREN] = ACTIONS(3363), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4748), - }, - [1671] = { - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_EQ] = ACTIONS(4748), - [sym__special_characters] = ACTIONS(4748), - [anon_sym_DQUOTE] = ACTIONS(3363), - [anon_sym_DOLLAR] = ACTIONS(4748), - [sym_raw_string] = ACTIONS(3363), - [anon_sym_POUND] = ACTIONS(3363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COLON_QMARK] = ACTIONS(4748), - [anon_sym_COLON_DASH] = ACTIONS(4748), - [anon_sym_PERCENT] = ACTIONS(4748), - [anon_sym_DASH] = ACTIONS(4748), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3363), - [anon_sym_BQUOTE] = ACTIONS(3363), - [anon_sym_LT_LPAREN] = ACTIONS(3363), - [anon_sym_GT_LPAREN] = ACTIONS(3363), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4748), - }, - [1672] = { - [sym__concat] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - }, - [1673] = { - [aux_sym_concatenation_repeat1] = STATE(1673), - [sym__concat] = ACTIONS(4750), - [anon_sym_RBRACE] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - }, - [1674] = { - [sym__concat] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [sym_comment] = ACTIONS(53), - }, - [1675] = { - [anon_sym_DQUOTE] = ACTIONS(4753), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [1676] = { - [sym_concatenation] = STATE(2033), - [sym_string] = STATE(2032), - [sym_simple_expansion] = STATE(2032), - [sym_string_expansion] = STATE(2032), - [sym_expansion] = STATE(2032), - [sym_command_substitution] = STATE(2032), - [sym_process_substitution] = STATE(2032), - [anon_sym_RBRACE] = ACTIONS(4755), - [sym__special_characters] = ACTIONS(4757), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(4759), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4759), - }, - [1677] = { - [sym__concat] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [sym_comment] = ACTIONS(53), - }, - [1678] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4761), - }, - [1679] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1680] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(4765), - [sym_comment] = ACTIONS(53), - }, - [1681] = { - [sym_concatenation] = STATE(2039), - [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), - [aux_sym_expansion_repeat1] = STATE(2039), - [anon_sym_RBRACE] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4769), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4773), - [anon_sym_COLON] = ACTIONS(4769), - [anon_sym_COLON_QMARK] = ACTIONS(4769), - [anon_sym_COLON_DASH] = ACTIONS(4769), - [anon_sym_PERCENT] = ACTIONS(4769), - [anon_sym_DASH] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1682] = { - [sym_concatenation] = STATE(2042), - [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), - [aux_sym_expansion_repeat1] = STATE(2042), - [anon_sym_RBRACE] = ACTIONS(4775), - [anon_sym_EQ] = ACTIONS(4777), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4779), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4781), - [anon_sym_COLON] = ACTIONS(4777), - [anon_sym_COLON_QMARK] = ACTIONS(4777), - [anon_sym_COLON_DASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1683] = { - [sym_concatenation] = STATE(2044), - [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), - [aux_sym_expansion_repeat1] = STATE(2044), - [anon_sym_RBRACE] = ACTIONS(4755), - [anon_sym_EQ] = ACTIONS(4783), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4785), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(4787), - [anon_sym_COLON] = ACTIONS(4783), - [anon_sym_COLON_QMARK] = ACTIONS(4783), - [anon_sym_COLON_DASH] = ACTIONS(4783), - [anon_sym_PERCENT] = ACTIONS(4783), - [anon_sym_DASH] = ACTIONS(4783), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1684] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - }, - [1685] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4789), - }, - [1686] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4791), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1687] = { - [sym__concat] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), - }, - [1688] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4793), - }, - [1689] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4755), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1690] = { - [sym__concat] = ACTIONS(1980), - [anon_sym_RBRACE] = ACTIONS(1980), - [sym_comment] = ACTIONS(53), - }, - [1691] = { - [sym__concat] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2046), - [sym_comment] = ACTIONS(53), - }, - [1692] = { - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_EQ] = ACTIONS(2758), - [sym__special_characters] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(2756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2758), - [anon_sym_COLON_QMARK] = ACTIONS(2758), - [anon_sym_COLON_DASH] = ACTIONS(2758), - [anon_sym_PERCENT] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), - [anon_sym_BQUOTE] = ACTIONS(2756), - [anon_sym_LT_LPAREN] = ACTIONS(2756), - [anon_sym_GT_LPAREN] = ACTIONS(2756), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2758), - }, - [1693] = { - [sym__concat] = ACTIONS(2770), - [anon_sym_RBRACE] = ACTIONS(2770), - [anon_sym_EQ] = ACTIONS(2772), - [sym__special_characters] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2770), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2770), - [anon_sym_POUND] = ACTIONS(2770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), - [anon_sym_COLON] = ACTIONS(2772), - [anon_sym_COLON_QMARK] = ACTIONS(2772), - [anon_sym_COLON_DASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2770), - [anon_sym_BQUOTE] = ACTIONS(2770), - [anon_sym_LT_LPAREN] = ACTIONS(2770), - [anon_sym_GT_LPAREN] = ACTIONS(2770), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2772), - }, - [1694] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4795), - [sym_comment] = ACTIONS(53), - }, - [1695] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4797), - [sym_comment] = ACTIONS(53), - }, - [1696] = { - [anon_sym_RBRACE] = ACTIONS(4797), - [sym_comment] = ACTIONS(53), - }, - [1697] = { - [sym_concatenation] = STATE(2051), - [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), - [aux_sym_expansion_repeat1] = STATE(2051), - [anon_sym_RBRACE] = ACTIONS(4799), - [anon_sym_EQ] = ACTIONS(4801), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4801), - [anon_sym_COLON_QMARK] = ACTIONS(4801), - [anon_sym_COLON_DASH] = ACTIONS(4801), - [anon_sym_PERCENT] = ACTIONS(4801), - [anon_sym_DASH] = ACTIONS(4801), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1698] = { - [sym__concat] = ACTIONS(2852), - [anon_sym_RBRACE] = ACTIONS(2852), - [anon_sym_EQ] = ACTIONS(2854), - [sym__special_characters] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2852), - [anon_sym_POUND] = ACTIONS(2852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_COLON_QMARK] = ACTIONS(2854), - [anon_sym_COLON_DASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2852), - [anon_sym_BQUOTE] = ACTIONS(2852), - [anon_sym_LT_LPAREN] = ACTIONS(2852), - [anon_sym_GT_LPAREN] = ACTIONS(2852), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2854), - }, - [1699] = { + [1612] = { [sym_concatenation] = STATE(2054), [sym_string] = STATE(2053), [sym_simple_expansion] = STATE(2053), @@ -46135,687 +45433,313 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2053), [sym_command_substitution] = STATE(2053), [sym_process_substitution] = STATE(2053), - [anon_sym_RBRACE] = ACTIONS(4797), - [sym__special_characters] = ACTIONS(4805), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(4807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(4724), + [sym__special_characters] = ACTIONS(4732), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4807), + [sym_word] = ACTIONS(4734), }, - [1700] = { - [sym__concat] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2895), - [anon_sym_EQ] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2895), - [anon_sym_POUND] = ACTIONS(2895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), - [anon_sym_COLON] = ACTIONS(2897), - [anon_sym_COLON_QMARK] = ACTIONS(2897), - [anon_sym_COLON_DASH] = ACTIONS(2897), - [anon_sym_PERCENT] = ACTIONS(2897), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2895), - [anon_sym_BQUOTE] = ACTIONS(2895), - [anon_sym_LT_LPAREN] = ACTIONS(2895), - [anon_sym_GT_LPAREN] = ACTIONS(2895), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2897), + [1613] = { + [sym__concat] = ACTIONS(3059), + [anon_sym_esac] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_SEMI_SEMI] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [anon_sym_EQ_TILDE] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(3061), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), }, - [1701] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4809), + [1614] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4736), }, - [1702] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4811), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1615] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1703] = { - [sym__concat] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [anon_sym_EQ] = ACTIONS(2905), - [sym__special_characters] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2903), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), - [anon_sym_COLON] = ACTIONS(2905), - [anon_sym_COLON_QMARK] = ACTIONS(2905), - [anon_sym_COLON_DASH] = ACTIONS(2905), - [anon_sym_PERCENT] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2903), - [anon_sym_BQUOTE] = ACTIONS(2903), - [anon_sym_LT_LPAREN] = ACTIONS(2903), - [anon_sym_GT_LPAREN] = ACTIONS(2903), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2905), + [1616] = { + [sym__concat] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_SEMI_SEMI] = ACTIONS(3069), + [anon_sym_PIPE_AMP] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_EQ_TILDE] = ACTIONS(3069), + [anon_sym_EQ_EQ] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3069), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3069), }, - [1704] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4813), + [1617] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4740), }, - [1705] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1618] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1706] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4817), + [1619] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4744), }, - [1707] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1620] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1708] = { + [1621] = { [sym_concatenation] = STATE(2061), - [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_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), [aux_sym_expansion_repeat1] = STATE(2061), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_EQ] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_COLON_QMARK] = ACTIONS(4821), - [anon_sym_COLON_DASH] = ACTIONS(4821), - [anon_sym_PERCENT] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_RBRACE] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4748), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4748), + [anon_sym_COLON_QMARK] = ACTIONS(4748), + [anon_sym_COLON_DASH] = ACTIONS(4748), + [anon_sym_PERCENT] = ACTIONS(4748), + [anon_sym_DASH] = ACTIONS(4748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1709] = { - [sym__concat] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_EQ] = ACTIONS(2921), - [sym__special_characters] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2921), - [anon_sym_COLON_QMARK] = ACTIONS(2921), - [anon_sym_COLON_DASH] = ACTIONS(2921), - [anon_sym_PERCENT] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2919), - [anon_sym_BQUOTE] = ACTIONS(2919), - [anon_sym_LT_LPAREN] = ACTIONS(2919), - [anon_sym_GT_LPAREN] = ACTIONS(2919), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2921), + [1622] = { + [sym__concat] = ACTIONS(3083), + [anon_sym_esac] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_SEMI_SEMI] = ACTIONS(3085), + [anon_sym_PIPE_AMP] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_EQ_TILDE] = ACTIONS(3085), + [anon_sym_EQ_EQ] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_GT] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3085), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), }, - [1710] = { + [1623] = { [sym_concatenation] = STATE(2063), - [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_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), [aux_sym_expansion_repeat1] = STATE(2063), - [anon_sym_RBRACE] = ACTIONS(4825), - [anon_sym_EQ] = ACTIONS(4827), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4829), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_COLON_QMARK] = ACTIONS(4827), - [anon_sym_COLON_DASH] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_EQ] = ACTIONS(4754), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_COLON_QMARK] = ACTIONS(4754), + [anon_sym_COLON_DASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1711] = { - [sym__simple_heredoc_body] = ACTIONS(4831), - [sym__heredoc_body_beginning] = ACTIONS(4831), - [sym_file_descriptor] = ACTIONS(4831), - [sym__concat] = ACTIONS(4831), - [anon_sym_esac] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_RPAREN] = ACTIONS(4833), - [anon_sym_SEMI_SEMI] = ACTIONS(4833), - [anon_sym_PIPE_AMP] = ACTIONS(4833), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [anon_sym_EQ_TILDE] = ACTIONS(4833), - [anon_sym_EQ_EQ] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_GT_GT] = ACTIONS(4833), - [anon_sym_AMP_GT] = ACTIONS(4833), - [anon_sym_AMP_GT_GT] = ACTIONS(4833), - [anon_sym_LT_AMP] = ACTIONS(4833), - [anon_sym_GT_AMP] = ACTIONS(4833), - [anon_sym_LT_LT] = ACTIONS(4833), - [anon_sym_LT_LT_DASH] = ACTIONS(4833), - [anon_sym_LT_LT_LT] = ACTIONS(4833), - [sym__special_characters] = ACTIONS(4833), - [anon_sym_DQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4833), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), - [anon_sym_BQUOTE] = ACTIONS(4833), - [anon_sym_LT_LPAREN] = ACTIONS(4833), - [anon_sym_GT_LPAREN] = ACTIONS(4833), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4833), - [anon_sym_SEMI] = ACTIONS(4833), - [anon_sym_LF] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4833), - }, - [1712] = { - [sym__simple_heredoc_body] = ACTIONS(4835), - [sym__heredoc_body_beginning] = ACTIONS(4835), - [sym_file_descriptor] = ACTIONS(4835), - [sym__concat] = ACTIONS(4835), - [anon_sym_esac] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_RPAREN] = ACTIONS(4837), - [anon_sym_SEMI_SEMI] = ACTIONS(4837), - [anon_sym_PIPE_AMP] = ACTIONS(4837), - [anon_sym_AMP_AMP] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4837), - [anon_sym_EQ_TILDE] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_AMP_GT] = ACTIONS(4837), - [anon_sym_AMP_GT_GT] = ACTIONS(4837), - [anon_sym_LT_AMP] = ACTIONS(4837), - [anon_sym_GT_AMP] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_LT_LT_DASH] = ACTIONS(4837), - [anon_sym_LT_LT_LT] = ACTIONS(4837), - [sym__special_characters] = ACTIONS(4837), - [anon_sym_DQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4837), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4837), - [anon_sym_LT_LPAREN] = ACTIONS(4837), - [anon_sym_GT_LPAREN] = ACTIONS(4837), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym_LF] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - }, - [1713] = { - [sym__simple_heredoc_body] = ACTIONS(4839), - [sym__heredoc_body_beginning] = ACTIONS(4839), - [sym_file_descriptor] = ACTIONS(4839), - [sym__concat] = ACTIONS(4839), - [anon_sym_esac] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_RPAREN] = ACTIONS(4841), - [anon_sym_SEMI_SEMI] = ACTIONS(4841), - [anon_sym_PIPE_AMP] = ACTIONS(4841), - [anon_sym_AMP_AMP] = ACTIONS(4841), - [anon_sym_PIPE_PIPE] = ACTIONS(4841), - [anon_sym_EQ_TILDE] = ACTIONS(4841), - [anon_sym_EQ_EQ] = ACTIONS(4841), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_GT_GT] = ACTIONS(4841), - [anon_sym_AMP_GT] = ACTIONS(4841), - [anon_sym_AMP_GT_GT] = ACTIONS(4841), - [anon_sym_LT_AMP] = ACTIONS(4841), - [anon_sym_GT_AMP] = ACTIONS(4841), - [anon_sym_LT_LT] = ACTIONS(4841), - [anon_sym_LT_LT_DASH] = ACTIONS(4841), - [anon_sym_LT_LT_LT] = ACTIONS(4841), - [sym__special_characters] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), - [anon_sym_BQUOTE] = ACTIONS(4841), - [anon_sym_LT_LPAREN] = ACTIONS(4841), - [anon_sym_GT_LPAREN] = ACTIONS(4841), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4841), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_LF] = ACTIONS(4839), - [anon_sym_AMP] = ACTIONS(4841), - }, - [1714] = { - [sym__simple_heredoc_body] = ACTIONS(4843), - [sym__heredoc_body_beginning] = ACTIONS(4843), - [sym_file_descriptor] = ACTIONS(4843), - [sym__concat] = ACTIONS(4843), - [anon_sym_esac] = ACTIONS(4845), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_RPAREN] = ACTIONS(4845), - [anon_sym_SEMI_SEMI] = ACTIONS(4845), - [anon_sym_PIPE_AMP] = ACTIONS(4845), - [anon_sym_AMP_AMP] = ACTIONS(4845), - [anon_sym_PIPE_PIPE] = ACTIONS(4845), - [anon_sym_EQ_TILDE] = ACTIONS(4845), - [anon_sym_EQ_EQ] = ACTIONS(4845), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_GT_GT] = ACTIONS(4845), - [anon_sym_AMP_GT] = ACTIONS(4845), - [anon_sym_AMP_GT_GT] = ACTIONS(4845), - [anon_sym_LT_AMP] = ACTIONS(4845), - [anon_sym_GT_AMP] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4845), - [anon_sym_LT_LT_DASH] = ACTIONS(4845), - [anon_sym_LT_LT_LT] = ACTIONS(4845), - [sym__special_characters] = ACTIONS(4845), - [anon_sym_DQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), - [anon_sym_BQUOTE] = ACTIONS(4845), - [anon_sym_LT_LPAREN] = ACTIONS(4845), - [anon_sym_GT_LPAREN] = ACTIONS(4845), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4845), - [anon_sym_SEMI] = ACTIONS(4845), - [anon_sym_LF] = ACTIONS(4843), - [anon_sym_AMP] = ACTIONS(4845), - }, - [1715] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1716] = { - [sym__simple_heredoc_body] = ACTIONS(4849), - [sym__heredoc_body_beginning] = ACTIONS(4849), - [sym_file_descriptor] = ACTIONS(4849), - [sym__concat] = ACTIONS(4849), - [anon_sym_esac] = ACTIONS(4851), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4851), - [anon_sym_SEMI_SEMI] = ACTIONS(4851), - [anon_sym_PIPE_AMP] = ACTIONS(4851), - [anon_sym_AMP_AMP] = ACTIONS(4851), - [anon_sym_PIPE_PIPE] = ACTIONS(4851), - [anon_sym_EQ_TILDE] = ACTIONS(4851), - [anon_sym_EQ_EQ] = ACTIONS(4851), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_GT_GT] = ACTIONS(4851), - [anon_sym_AMP_GT] = ACTIONS(4851), - [anon_sym_AMP_GT_GT] = ACTIONS(4851), - [anon_sym_LT_AMP] = ACTIONS(4851), - [anon_sym_GT_AMP] = ACTIONS(4851), - [anon_sym_LT_LT] = ACTIONS(4851), - [anon_sym_LT_LT_DASH] = ACTIONS(4851), - [anon_sym_LT_LT_LT] = ACTIONS(4851), - [sym__special_characters] = ACTIONS(4851), - [anon_sym_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4851), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4851), - [anon_sym_LT_LPAREN] = ACTIONS(4851), - [anon_sym_GT_LPAREN] = ACTIONS(4851), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4851), - [anon_sym_SEMI] = ACTIONS(4851), - [anon_sym_LF] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4851), - }, - [1717] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4853), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1718] = { - [sym__simple_heredoc_body] = ACTIONS(4855), - [sym__heredoc_body_beginning] = ACTIONS(4855), - [sym_file_descriptor] = ACTIONS(4855), - [sym__concat] = ACTIONS(4855), - [anon_sym_esac] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_RPAREN] = ACTIONS(4857), - [anon_sym_SEMI_SEMI] = ACTIONS(4857), - [anon_sym_PIPE_AMP] = ACTIONS(4857), - [anon_sym_AMP_AMP] = ACTIONS(4857), - [anon_sym_PIPE_PIPE] = ACTIONS(4857), - [anon_sym_EQ_TILDE] = ACTIONS(4857), - [anon_sym_EQ_EQ] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_GT_GT] = ACTIONS(4857), - [anon_sym_AMP_GT] = ACTIONS(4857), - [anon_sym_AMP_GT_GT] = ACTIONS(4857), - [anon_sym_LT_AMP] = ACTIONS(4857), - [anon_sym_GT_AMP] = ACTIONS(4857), - [anon_sym_LT_LT] = ACTIONS(4857), - [anon_sym_LT_LT_DASH] = ACTIONS(4857), - [anon_sym_LT_LT_LT] = ACTIONS(4857), - [sym__special_characters] = ACTIONS(4857), - [anon_sym_DQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4857), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), - [anon_sym_BQUOTE] = ACTIONS(4857), - [anon_sym_LT_LPAREN] = ACTIONS(4857), - [anon_sym_GT_LPAREN] = ACTIONS(4857), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4857), - [anon_sym_SEMI] = ACTIONS(4857), - [anon_sym_LF] = ACTIONS(4855), - [anon_sym_AMP] = ACTIONS(4857), - }, - [1719] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4859), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1720] = { - [sym__simple_heredoc_body] = ACTIONS(4861), - [sym__heredoc_body_beginning] = ACTIONS(4861), - [sym_file_descriptor] = ACTIONS(4861), - [sym__concat] = ACTIONS(4861), - [anon_sym_esac] = ACTIONS(4863), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_SEMI_SEMI] = ACTIONS(4863), - [anon_sym_PIPE_AMP] = ACTIONS(4863), - [anon_sym_AMP_AMP] = ACTIONS(4863), - [anon_sym_PIPE_PIPE] = ACTIONS(4863), - [anon_sym_EQ_TILDE] = ACTIONS(4863), - [anon_sym_EQ_EQ] = ACTIONS(4863), - [anon_sym_LT] = ACTIONS(4863), - [anon_sym_GT] = ACTIONS(4863), - [anon_sym_GT_GT] = ACTIONS(4863), - [anon_sym_AMP_GT] = ACTIONS(4863), - [anon_sym_AMP_GT_GT] = ACTIONS(4863), - [anon_sym_LT_AMP] = ACTIONS(4863), - [anon_sym_GT_AMP] = ACTIONS(4863), - [anon_sym_LT_LT] = ACTIONS(4863), - [anon_sym_LT_LT_DASH] = ACTIONS(4863), - [anon_sym_LT_LT_LT] = ACTIONS(4863), - [sym__special_characters] = ACTIONS(4863), - [anon_sym_DQUOTE] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4863), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), - [anon_sym_BQUOTE] = ACTIONS(4863), - [anon_sym_LT_LPAREN] = ACTIONS(4863), - [anon_sym_GT_LPAREN] = ACTIONS(4863), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4863), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4863), - }, - [1721] = { - [sym__simple_heredoc_body] = ACTIONS(4865), - [sym__heredoc_body_beginning] = ACTIONS(4865), - [sym_file_descriptor] = ACTIONS(4865), - [sym__concat] = ACTIONS(4865), - [anon_sym_esac] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_RPAREN] = ACTIONS(4867), - [anon_sym_SEMI_SEMI] = ACTIONS(4867), - [anon_sym_PIPE_AMP] = ACTIONS(4867), - [anon_sym_AMP_AMP] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4867), - [anon_sym_EQ_TILDE] = ACTIONS(4867), - [anon_sym_EQ_EQ] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4867), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4867), - [anon_sym_AMP_GT] = ACTIONS(4867), - [anon_sym_AMP_GT_GT] = ACTIONS(4867), - [anon_sym_LT_AMP] = ACTIONS(4867), - [anon_sym_GT_AMP] = ACTIONS(4867), - [anon_sym_LT_LT] = ACTIONS(4867), - [anon_sym_LT_LT_DASH] = ACTIONS(4867), - [anon_sym_LT_LT_LT] = ACTIONS(4867), - [sym__special_characters] = ACTIONS(4867), - [anon_sym_DQUOTE] = ACTIONS(4867), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), - [anon_sym_BQUOTE] = ACTIONS(4867), - [anon_sym_LT_LPAREN] = ACTIONS(4867), - [anon_sym_GT_LPAREN] = ACTIONS(4867), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_LF] = ACTIONS(4865), - [anon_sym_AMP] = ACTIONS(4867), - }, - [1722] = { - [aux_sym_concatenation_repeat1] = STATE(1722), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(2667), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1672), - [anon_sym_LT_AMP] = ACTIONS(1672), - [anon_sym_GT_AMP] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), + [1624] = { + [sym__expression] = STATE(2064), + [sym_binary_expression] = STATE(2064), + [sym_unary_expression] = STATE(2064), + [sym_parenthesized_expression] = STATE(2064), + [sym_concatenation] = STATE(2064), + [sym_string] = STATE(1102), + [sym_simple_expansion] = STATE(1102), + [sym_string_expansion] = STATE(1102), + [sym_expansion] = STATE(1102), + [sym_command_substitution] = STATE(1102), + [sym_process_substitution] = STATE(1102), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4720), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [sym__special_characters] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [sym_raw_string] = ACTIONS(2347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), + [anon_sym_BQUOTE] = ACTIONS(2353), + [anon_sym_LT_LPAREN] = ACTIONS(2355), + [anon_sym_GT_LPAREN] = ACTIONS(2355), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1672), + [sym_word] = ACTIONS(2357), + [sym_test_operator] = ACTIONS(2359), }, - [1723] = { - [sym_do_group] = STATE(2067), - [anon_sym_do] = ACTIONS(2929), - [sym_comment] = ACTIONS(53), + [1625] = { + [aux_sym_concatenation_repeat1] = STATE(1625), + [sym__concat] = ACTIONS(2475), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), }, - [1724] = { - [anon_sym_PIPE] = ACTIONS(2275), - [anon_sym_RPAREN] = ACTIONS(2273), - [anon_sym_PIPE_AMP] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(2273), - [anon_sym_PIPE_PIPE] = ACTIONS(2273), - [anon_sym_BQUOTE] = ACTIONS(2273), - [sym_comment] = ACTIONS(53), + [1626] = { + [anon_sym_esac] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_RPAREN] = ACTIONS(4758), + [anon_sym_SEMI_SEMI] = ACTIONS(4758), + [anon_sym_PIPE_AMP] = ACTIONS(4758), + [anon_sym_AMP_AMP] = ACTIONS(4758), + [anon_sym_PIPE_PIPE] = ACTIONS(4758), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4758), + [anon_sym_LF] = ACTIONS(4760), + [anon_sym_AMP] = ACTIONS(4758), }, - [1725] = { - [sym__terminated_statement] = STATE(1058), + [1627] = { + [anon_sym_esac] = ACTIONS(3769), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_RPAREN] = ACTIONS(3769), + [anon_sym_SEMI_SEMI] = ACTIONS(3769), + [anon_sym_PIPE_AMP] = ACTIONS(3769), + [anon_sym_AMP_AMP] = ACTIONS(3769), + [anon_sym_PIPE_PIPE] = ACTIONS(3769), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3769), + [anon_sym_LF] = ACTIONS(3767), + [anon_sym_AMP] = ACTIONS(3769), + }, + [1628] = { + [sym__terminated_statement] = STATE(2065), [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), [sym_case_statement] = STATE(26), @@ -46831,22 +45755,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1058), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_program_repeat1] = STATE(2065), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(4869), [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(4762), + [anon_sym_elif] = ACTIONS(4762), + [anon_sym_else] = ACTIONS(4762), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -46879,419 +45805,159 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [1726] = { - [sym__simple_heredoc_body] = ACTIONS(3512), - [sym__heredoc_body_beginning] = ACTIONS(3512), - [sym_file_descriptor] = ACTIONS(3512), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_RPAREN] = ACTIONS(3512), - [anon_sym_PIPE_AMP] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_GT] = ACTIONS(3514), - [anon_sym_GT_GT] = ACTIONS(3512), - [anon_sym_AMP_GT] = ACTIONS(3514), - [anon_sym_AMP_GT_GT] = ACTIONS(3512), - [anon_sym_LT_AMP] = ACTIONS(3512), - [anon_sym_GT_AMP] = ACTIONS(3512), - [anon_sym_LT_LT] = ACTIONS(3514), - [anon_sym_LT_LT_DASH] = ACTIONS(3512), - [anon_sym_LT_LT_LT] = ACTIONS(3512), - [anon_sym_BQUOTE] = ACTIONS(3512), + [1629] = { + [sym__terminated_statement] = STATE(1629), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1629), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(1043), + [sym_variable_name] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_fi] = ACTIONS(3771), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_function] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_typeset] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_readonly] = ACTIONS(1078), + [anon_sym_local] = ACTIONS(1078), + [anon_sym_unset] = ACTIONS(1081), + [anon_sym_unsetenv] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1084), + [anon_sym_GT_GT] = ACTIONS(1087), + [anon_sym_AMP_GT] = ACTIONS(1084), + [anon_sym_AMP_GT_GT] = ACTIONS(1087), + [anon_sym_LT_AMP] = ACTIONS(1087), + [anon_sym_GT_AMP] = ACTIONS(1087), + [sym__special_characters] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1096), + [sym_raw_string] = ACTIONS(1099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1111), + [anon_sym_GT_LPAREN] = ACTIONS(1111), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1114), + }, + [1630] = { + [anon_sym_esac] = ACTIONS(4764), + [anon_sym_PIPE] = ACTIONS(4764), + [anon_sym_RPAREN] = ACTIONS(4764), + [anon_sym_SEMI_SEMI] = ACTIONS(4764), + [anon_sym_PIPE_AMP] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4764), + [anon_sym_LF] = ACTIONS(4766), + [anon_sym_AMP] = ACTIONS(4764), + }, + [1631] = { + [anon_sym_fi] = ACTIONS(4768), [sym_comment] = ACTIONS(53), }, - [1727] = { - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_RPAREN] = ACTIONS(3520), - [anon_sym_PIPE_AMP] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BQUOTE] = ACTIONS(3520), + [1632] = { + [sym_concatenation] = STATE(2069), + [sym_string] = STATE(2068), + [sym_simple_expansion] = STATE(2068), + [sym_string_expansion] = STATE(2068), + [sym_expansion] = STATE(2068), + [sym_command_substitution] = STATE(2068), + [sym_process_substitution] = STATE(2068), + [sym__special_characters] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(4772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4772), }, - [1728] = { - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_RPAREN] = ACTIONS(3528), - [anon_sym_PIPE_AMP] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [anon_sym_BQUOTE] = ACTIONS(3528), - [sym_comment] = ACTIONS(53), - }, - [1729] = { - [anon_sym_fi] = ACTIONS(4871), - [sym_comment] = ACTIONS(53), - }, - [1730] = { - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(2070), - [aux_sym_if_statement_repeat1] = STATE(1066), - [anon_sym_fi] = ACTIONS(4871), - [anon_sym_elif] = ACTIONS(2295), - [anon_sym_else] = ACTIONS(2297), - [sym_comment] = ACTIONS(53), - }, - [1731] = { - [anon_sym_PIPE] = ACTIONS(3537), - [anon_sym_RPAREN] = ACTIONS(3539), - [anon_sym_PIPE_AMP] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [anon_sym_BQUOTE] = ACTIONS(3539), - [sym_comment] = ACTIONS(53), - }, - [1732] = { - [anon_sym_esac] = ACTIONS(4873), - [sym_comment] = ACTIONS(53), - }, - [1733] = { - [sym_case_item] = STATE(1508), - [sym_last_case_item] = STATE(2072), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1508), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), - }, - [1734] = { - [sym_case_item] = STATE(2074), - [sym_last_case_item] = STATE(2072), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(2074), - [anon_sym_esac] = ACTIONS(4875), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2305), - }, - [1735] = { - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_RPAREN] = ACTIONS(3553), - [anon_sym_PIPE_AMP] = ACTIONS(3553), - [anon_sym_AMP_AMP] = ACTIONS(3553), - [anon_sym_PIPE_PIPE] = ACTIONS(3553), - [anon_sym_BQUOTE] = ACTIONS(3553), - [sym_comment] = ACTIONS(53), - }, - [1736] = { - [anon_sym_esac] = ACTIONS(4877), - [sym_comment] = ACTIONS(53), - }, - [1737] = { - [sym_case_item] = STATE(1508), - [sym_last_case_item] = STATE(2076), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1508), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), - }, - [1738] = { - [sym_case_item] = STATE(2078), - [sym_last_case_item] = STATE(2076), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(2078), - [anon_sym_esac] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2305), - }, - [1739] = { - [sym_file_redirect] = STATE(2079), - [sym_file_descriptor] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_RPAREN] = ACTIONS(3597), - [anon_sym_PIPE_AMP] = ACTIONS(3597), - [anon_sym_AMP_AMP] = ACTIONS(3597), - [anon_sym_PIPE_PIPE] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(2953), - [anon_sym_GT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_AMP_GT] = ACTIONS(2953), - [anon_sym_AMP_GT_GT] = ACTIONS(2955), - [anon_sym_LT_AMP] = ACTIONS(2955), - [anon_sym_GT_AMP] = ACTIONS(2955), - [sym_comment] = ACTIONS(53), - }, - [1740] = { - [sym_file_descriptor] = ACTIONS(3599), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_RPAREN] = ACTIONS(3599), - [anon_sym_PIPE_AMP] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3599), - [anon_sym_AMP_GT] = ACTIONS(3601), - [anon_sym_AMP_GT_GT] = ACTIONS(3599), - [anon_sym_LT_AMP] = ACTIONS(3599), - [anon_sym_GT_AMP] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [sym_comment] = ACTIONS(53), - }, - [1741] = { - [sym_concatenation] = STATE(2082), - [sym_string] = STATE(2081), - [sym_simple_expansion] = STATE(2081), - [sym_string_expansion] = STATE(2081), - [sym_expansion] = STATE(2081), - [sym_command_substitution] = STATE(2081), - [sym_process_substitution] = STATE(2081), - [sym__special_characters] = ACTIONS(4881), - [anon_sym_DQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(843), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(851), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4883), - }, - [1742] = { - [aux_sym_concatenation_repeat1] = STATE(2083), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(671), - [anon_sym_PIPE_AMP] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [sym_comment] = ACTIONS(53), - }, - [1743] = { - [aux_sym_concatenation_repeat1] = STATE(2083), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_PIPE_AMP] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - }, - [1744] = { - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_PIPE_AMP] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - }, - [1745] = { - [anon_sym_PIPE] = ACTIONS(3627), - [anon_sym_RPAREN] = ACTIONS(3629), - [anon_sym_PIPE_AMP] = ACTIONS(3629), - [anon_sym_AMP_AMP] = ACTIONS(3629), - [anon_sym_PIPE_PIPE] = ACTIONS(3629), - [anon_sym_BQUOTE] = ACTIONS(3629), - [sym_comment] = ACTIONS(53), - }, - [1746] = { - [sym_concatenation] = STATE(2086), - [sym_string] = STATE(2085), - [sym_simple_expansion] = STATE(2085), - [sym_string_expansion] = STATE(2085), - [sym_expansion] = STATE(2085), - [sym_command_substitution] = STATE(2085), - [sym_process_substitution] = STATE(2085), - [sym__special_characters] = ACTIONS(4885), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4887), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), - [anon_sym_BQUOTE] = ACTIONS(4100), - [anon_sym_LT_LPAREN] = ACTIONS(4102), - [anon_sym_GT_LPAREN] = ACTIONS(4102), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4887), - }, - [1747] = { - [aux_sym_concatenation_repeat1] = STATE(2088), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(671), - [anon_sym_PIPE_AMP] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_AMP_GT] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(671), - [anon_sym_GT_AMP] = ACTIONS(671), - [anon_sym_LT_LT] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(671), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [sym_comment] = ACTIONS(53), - }, - [1748] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2091), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4893), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [1749] = { - [sym_string] = STATE(2093), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4895), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_POUND] = ACTIONS(4895), - [anon_sym_DASH] = ACTIONS(4895), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4895), - [anon_sym_AT] = ACTIONS(4895), - [anon_sym_QMARK] = ACTIONS(4895), - [anon_sym_0] = ACTIONS(4901), - [anon_sym__] = ACTIONS(4901), - }, - [1750] = { - [aux_sym_concatenation_repeat1] = STATE(2088), - [sym_file_descriptor] = ACTIONS(689), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_PIPE_AMP] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_AMP] = ACTIONS(689), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(689), - [anon_sym_LT_LT_LT] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - }, - [1751] = { - [sym_subscript] = STATE(2099), - [sym_variable_name] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4905), - [anon_sym_POUND] = ACTIONS(4907), - [anon_sym_DASH] = ACTIONS(4905), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4909), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_AT] = ACTIONS(4905), - [anon_sym_QMARK] = ACTIONS(4905), - [anon_sym_0] = ACTIONS(4911), - [anon_sym__] = ACTIONS(4911), - }, - [1752] = { - [sym_for_statement] = STATE(2100), - [sym_while_statement] = STATE(2100), - [sym_if_statement] = STATE(2100), - [sym_case_statement] = STATE(2100), - [sym_function_definition] = STATE(2100), - [sym_subshell] = STATE(2100), - [sym_pipeline] = STATE(2100), - [sym_list] = STATE(2100), - [sym_negated_command] = STATE(2100), - [sym_test_command] = STATE(2100), - [sym_declaration_command] = STATE(2100), - [sym_unset_command] = STATE(2100), - [sym_command] = STATE(2100), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2101), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [1633] = { + [sym__terminated_statement] = STATE(2086), + [sym_for_statement] = STATE(2082), + [sym_c_style_for_statement] = STATE(2082), + [sym_while_statement] = STATE(2082), + [sym_if_statement] = STATE(2082), + [sym_case_statement] = STATE(2082), + [sym_function_definition] = STATE(2082), + [sym_subshell] = STATE(2082), + [sym_pipeline] = STATE(2082), + [sym_list] = STATE(2082), + [sym_negated_command] = STATE(2082), + [sym_test_command] = STATE(2082), + [sym_declaration_command] = STATE(2082), + [sym_unset_command] = STATE(2082), + [sym_command] = STATE(2082), + [sym_command_name] = STATE(2083), + [sym_variable_assignment] = STATE(2084), + [sym_subscript] = STATE(2085), + [sym_file_redirect] = STATE(2087), + [sym_concatenation] = STATE(30), + [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), + [aux_sym_program_repeat1] = STATE(2086), + [aux_sym_command_repeat1] = STATE(2087), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(4774), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(4778), + [anon_sym_SEMI_SEMI] = ACTIONS(4780), + [anon_sym_function] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), + [anon_sym_declare] = ACTIONS(4790), + [anon_sym_typeset] = ACTIONS(4790), + [anon_sym_export] = ACTIONS(4790), + [anon_sym_readonly] = ACTIONS(4790), + [anon_sym_local] = ACTIONS(4790), + [anon_sym_unset] = ACTIONS(4792), + [anon_sym_unsetenv] = ACTIONS(4792), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -47299,62 +45965,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(4798), }, - [1753] = { - [sym_for_statement] = STATE(2102), - [sym_while_statement] = STATE(2102), - [sym_if_statement] = STATE(2102), - [sym_case_statement] = STATE(2102), - [sym_function_definition] = STATE(2102), - [sym_subshell] = STATE(2102), - [sym_pipeline] = STATE(2102), - [sym_list] = STATE(2102), - [sym_negated_command] = STATE(2102), - [sym_test_command] = STATE(2102), - [sym_declaration_command] = STATE(2102), - [sym_unset_command] = STATE(2102), - [sym_command] = STATE(2102), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2103), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), + [1634] = { + [aux_sym_case_item_repeat1] = STATE(2089), + [anon_sym_PIPE] = ACTIONS(3796), + [anon_sym_RPAREN] = ACTIONS(4800), + [sym_comment] = ACTIONS(53), + }, + [1635] = { + [aux_sym_concatenation_repeat1] = STATE(2090), + [sym__concat] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + }, + [1636] = { + [sym__terminated_statement] = STATE(2094), + [sym_for_statement] = STATE(2092), + [sym_c_style_for_statement] = STATE(2092), + [sym_while_statement] = STATE(2092), + [sym_if_statement] = STATE(2092), + [sym_case_statement] = STATE(2092), + [sym_function_definition] = STATE(2092), + [sym_subshell] = STATE(2092), + [sym_pipeline] = STATE(2092), + [sym_list] = STATE(2092), + [sym_negated_command] = STATE(2092), + [sym_test_command] = STATE(2092), + [sym_declaration_command] = STATE(2092), + [sym_unset_command] = STATE(2092), + [sym_command] = STATE(2092), + [sym_command_name] = STATE(2083), + [sym_variable_assignment] = STATE(2093), + [sym_subscript] = STATE(2085), + [sym_file_redirect] = STATE(2087), + [sym_concatenation] = STATE(30), + [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), + [aux_sym_program_repeat1] = STATE(2094), + [aux_sym_command_repeat1] = STATE(2087), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), + [sym_variable_name] = ACTIONS(4774), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(4802), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_function] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), + [anon_sym_declare] = ACTIONS(4790), + [anon_sym_typeset] = ACTIONS(4790), + [anon_sym_export] = ACTIONS(4790), + [anon_sym_readonly] = ACTIONS(4790), + [anon_sym_local] = ACTIONS(4790), + [anon_sym_unset] = ACTIONS(4792), + [anon_sym_unsetenv] = ACTIONS(4792), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -47362,2639 +46046,4505 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [sym_word] = ACTIONS(4798), }, - [1754] = { - [sym_for_statement] = STATE(2104), - [sym_while_statement] = STATE(2104), - [sym_if_statement] = STATE(2104), - [sym_case_statement] = STATE(2104), - [sym_function_definition] = STATE(2104), - [sym_subshell] = STATE(2104), - [sym_pipeline] = STATE(2104), - [sym_list] = STATE(2104), - [sym_negated_command] = STATE(2104), - [sym_test_command] = STATE(2104), - [sym_declaration_command] = STATE(2104), - [sym_unset_command] = STATE(2104), - [sym_command] = STATE(2104), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2105), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [1755] = { - [sym_file_descriptor] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_PIPE_AMP] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_AMP] = ACTIONS(689), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(689), - [anon_sym_LT_LT_LT] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), + [1637] = { + [aux_sym_case_item_repeat1] = STATE(2089), + [anon_sym_PIPE] = ACTIONS(3796), + [anon_sym_RPAREN] = ACTIONS(4806), [sym_comment] = ACTIONS(53), }, - [1756] = { - [sym_file_descriptor] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2094), - [anon_sym_PIPE_AMP] = ACTIONS(2094), - [anon_sym_AMP_AMP] = ACTIONS(2094), - [anon_sym_PIPE_PIPE] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2094), - [anon_sym_AMP_GT] = ACTIONS(2096), - [anon_sym_AMP_GT_GT] = ACTIONS(2094), - [anon_sym_LT_AMP] = ACTIONS(2094), - [anon_sym_GT_AMP] = ACTIONS(2094), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_LT_LT_DASH] = ACTIONS(2094), - [anon_sym_LT_LT_LT] = ACTIONS(2094), - [anon_sym_BQUOTE] = ACTIONS(2094), + [1638] = { + [anon_sym_esac] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4808), + [anon_sym_RPAREN] = ACTIONS(4808), + [anon_sym_SEMI_SEMI] = ACTIONS(4808), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4808), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4808), + }, + [1639] = { + [anon_sym_esac] = ACTIONS(4812), [sym_comment] = ACTIONS(53), }, - [1757] = { - [aux_sym_concatenation_repeat1] = STATE(2088), - [sym_file_descriptor] = ACTIONS(2098), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_PIPE_AMP] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_AMP_GT] = ACTIONS(2100), - [anon_sym_AMP_GT_GT] = ACTIONS(2098), - [anon_sym_LT_AMP] = ACTIONS(2098), - [anon_sym_GT_AMP] = ACTIONS(2098), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_LT_LT_DASH] = ACTIONS(2098), - [anon_sym_LT_LT_LT] = ACTIONS(2098), + [1640] = { + [sym_case_item] = STATE(1151), + [sym_concatenation] = STATE(2099), + [sym_string] = STATE(2098), + [sym_simple_expansion] = STATE(2098), + [sym_string_expansion] = STATE(2098), + [sym_expansion] = STATE(2098), + [sym_command_substitution] = STATE(2098), + [sym_process_substitution] = STATE(2098), + [aux_sym_case_statement_repeat1] = STATE(1640), + [sym__special_characters] = ACTIONS(4814), + [anon_sym_DQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR] = ACTIONS(4820), + [sym_raw_string] = ACTIONS(4823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), + [anon_sym_BQUOTE] = ACTIONS(4832), + [anon_sym_LT_LPAREN] = ACTIONS(4835), + [anon_sym_GT_LPAREN] = ACTIONS(4835), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4823), + }, + [1641] = { + [anon_sym_esac] = ACTIONS(4838), + [anon_sym_PIPE] = ACTIONS(4838), + [anon_sym_RPAREN] = ACTIONS(4838), + [anon_sym_SEMI_SEMI] = ACTIONS(4838), + [anon_sym_PIPE_AMP] = ACTIONS(4838), + [anon_sym_AMP_AMP] = ACTIONS(4838), + [anon_sym_PIPE_PIPE] = ACTIONS(4838), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym_LF] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4838), + }, + [1642] = { + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(2100), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1640), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2467), + }, + [1643] = { + [anon_sym_esac] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_SEMI_SEMI] = ACTIONS(4842), + [anon_sym_PIPE_AMP] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_LF] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4842), + }, + [1644] = { + [anon_sym_esac] = ACTIONS(4846), [sym_comment] = ACTIONS(53), }, - [1758] = { - [aux_sym_concatenation_repeat1] = STATE(2088), - [sym_file_descriptor] = ACTIONS(2102), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2102), - [anon_sym_PIPE_AMP] = ACTIONS(2102), - [anon_sym_AMP_AMP] = ACTIONS(2102), - [anon_sym_PIPE_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2102), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2102), - [anon_sym_LT_AMP] = ACTIONS(2102), - [anon_sym_GT_AMP] = ACTIONS(2102), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2102), - [anon_sym_LT_LT_LT] = ACTIONS(2102), + [1645] = { + [anon_sym_esac] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [anon_sym_SEMI_SEMI] = ACTIONS(4848), + [anon_sym_PIPE_AMP] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_LF] = ACTIONS(4850), + [anon_sym_AMP] = ACTIONS(4848), + }, + [1646] = { + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(2102), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1640), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2467), + }, + [1647] = { + [sym__concat] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_SEMI_SEMI] = ACTIONS(4166), + [sym__special_characters] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), + [anon_sym_BQUOTE] = ACTIONS(4166), + [anon_sym_LT_LPAREN] = ACTIONS(4166), + [anon_sym_GT_LPAREN] = ACTIONS(4166), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_LF] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4166), + }, + [1648] = { + [sym__concat] = ACTIONS(4172), + [anon_sym_in] = ACTIONS(4174), + [anon_sym_SEMI_SEMI] = ACTIONS(4174), + [sym__special_characters] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), + [anon_sym_BQUOTE] = ACTIONS(4174), + [anon_sym_LT_LPAREN] = ACTIONS(4174), + [anon_sym_GT_LPAREN] = ACTIONS(4174), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym_LF] = ACTIONS(4172), + [anon_sym_AMP] = ACTIONS(4174), + }, + [1649] = { + [sym__concat] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4261), + [anon_sym_SEMI_SEMI] = ACTIONS(4261), + [sym__special_characters] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4261), + [anon_sym_LT_LPAREN] = ACTIONS(4261), + [anon_sym_GT_LPAREN] = ACTIONS(4261), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4261), + [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_LF] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + }, + [1650] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1651] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4854), [sym_comment] = ACTIONS(53), }, - [1759] = { - [sym_file_descriptor] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2102), - [anon_sym_PIPE_AMP] = ACTIONS(2102), - [anon_sym_AMP_AMP] = ACTIONS(2102), - [anon_sym_PIPE_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2102), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2102), - [anon_sym_LT_AMP] = ACTIONS(2102), - [anon_sym_GT_AMP] = ACTIONS(2102), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2102), - [anon_sym_LT_LT_LT] = ACTIONS(2102), - [anon_sym_BQUOTE] = ACTIONS(2102), + [1652] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4856), [sym_comment] = ACTIONS(53), }, - [1760] = { - [sym_file_redirect] = STATE(1760), - [sym_heredoc_redirect] = STATE(1760), - [sym_herestring_redirect] = STATE(1760), - [aux_sym_while_statement_repeat1] = STATE(1760), - [sym_file_descriptor] = ACTIONS(4913), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_RPAREN] = ACTIONS(2110), - [anon_sym_PIPE_AMP] = ACTIONS(2110), - [anon_sym_AMP_AMP] = ACTIONS(2110), - [anon_sym_PIPE_PIPE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4919), - [anon_sym_AMP_GT] = ACTIONS(4916), - [anon_sym_AMP_GT_GT] = ACTIONS(4919), - [anon_sym_LT_AMP] = ACTIONS(4919), - [anon_sym_GT_AMP] = ACTIONS(4919), - [anon_sym_LT_LT] = ACTIONS(4922), - [anon_sym_LT_LT_DASH] = ACTIONS(4925), - [anon_sym_LT_LT_LT] = ACTIONS(4928), + [1653] = { + [anon_sym_RBRACE] = ACTIONS(4856), [sym_comment] = ACTIONS(53), }, - [1761] = { - [sym_variable_name] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2167), - [anon_sym_PIPE_AMP] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2167), - [anon_sym_PIPE_PIPE] = ACTIONS(2167), - [sym__special_characters] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_DOLLAR] = ACTIONS(2169), - [sym_raw_string] = ACTIONS(2167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2167), - [anon_sym_BQUOTE] = ACTIONS(2167), - [anon_sym_LT_LPAREN] = ACTIONS(2167), - [anon_sym_GT_LPAREN] = ACTIONS(2167), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2169), - [sym_word] = ACTIONS(2169), + [1654] = { + [sym_concatenation] = STATE(2107), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2107), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_EQ] = ACTIONS(4860), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4862), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_COLON_QMARK] = ACTIONS(4860), + [anon_sym_COLON_DASH] = ACTIONS(4860), + [anon_sym_PERCENT] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1762] = { - [sym_concatenation] = STATE(1031), - [sym_string] = STATE(571), - [sym_simple_expansion] = STATE(571), - [sym_string_expansion] = STATE(571), - [sym_expansion] = STATE(571), - [sym_command_substitution] = STATE(571), - [sym_process_substitution] = STATE(571), - [aux_sym_for_statement_repeat1] = STATE(1031), - [anon_sym_RPAREN] = ACTIONS(4931), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1135), + [1655] = { + [sym__concat] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4277), + [anon_sym_SEMI_SEMI] = ACTIONS(4277), + [sym__special_characters] = ACTIONS(4277), + [anon_sym_DQUOTE] = ACTIONS(4277), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4277), + [anon_sym_LT_LPAREN] = ACTIONS(4277), + [anon_sym_GT_LPAREN] = ACTIONS(4277), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4277), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_LF] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), }, - [1763] = { - [sym__concat] = ACTIONS(2756), - [sym_variable_name] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_PIPE_AMP] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [sym__special_characters] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), - [anon_sym_BQUOTE] = ACTIONS(2756), - [anon_sym_LT_LPAREN] = ACTIONS(2756), - [anon_sym_GT_LPAREN] = ACTIONS(2756), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), - [sym_word] = ACTIONS(2758), + [1656] = { + [sym_concatenation] = STATE(2109), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2109), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4866), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4866), + [anon_sym_COLON_QMARK] = ACTIONS(4866), + [anon_sym_COLON_DASH] = ACTIONS(4866), + [anon_sym_PERCENT] = ACTIONS(4866), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1764] = { - [sym__concat] = ACTIONS(2770), - [sym_variable_name] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2770), - [anon_sym_PIPE_AMP] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [sym__special_characters] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2770), - [anon_sym_BQUOTE] = ACTIONS(2770), - [anon_sym_LT_LPAREN] = ACTIONS(2770), - [anon_sym_GT_LPAREN] = ACTIONS(2770), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2772), - [sym_word] = ACTIONS(2772), + [1657] = { + [sym__concat] = ACTIONS(4285), + [anon_sym_in] = ACTIONS(4287), + [anon_sym_SEMI_SEMI] = ACTIONS(4287), + [sym__special_characters] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), + [anon_sym_BQUOTE] = ACTIONS(4287), + [anon_sym_LT_LPAREN] = ACTIONS(4287), + [anon_sym_GT_LPAREN] = ACTIONS(4287), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_LF] = ACTIONS(4285), + [anon_sym_AMP] = ACTIONS(4287), }, - [1765] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4933), + [1658] = { + [sym_concatenation] = STATE(2111), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2111), + [anon_sym_RBRACE] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4872), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_COLON_QMARK] = ACTIONS(4872), + [anon_sym_COLON_DASH] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1659] = { + [sym__concat] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4297), + [sym__special_characters] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LT_LPAREN] = ACTIONS(4297), + [anon_sym_GT_LPAREN] = ACTIONS(4297), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_LF] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4297), + }, + [1660] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1661] = { + [sym__concat] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [sym__special_characters] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LT_LPAREN] = ACTIONS(4303), + [anon_sym_GT_LPAREN] = ACTIONS(4303), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4303), + }, + [1662] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4878), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1663] = { + [anon_sym_esac] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [anon_sym_SEMI_SEMI] = ACTIONS(4880), + [anon_sym_PIPE_AMP] = ACTIONS(4880), + [anon_sym_AMP_AMP] = ACTIONS(4880), + [anon_sym_PIPE_PIPE] = ACTIONS(4880), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_LF] = ACTIONS(4882), + [anon_sym_AMP] = ACTIONS(4880), + }, + [1664] = { + [aux_sym_concatenation_repeat1] = STATE(1667), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(1135), + [anon_sym_PIPE_AMP] = ACTIONS(1135), + [anon_sym_AMP_AMP] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1135), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), + }, + [1665] = { + [aux_sym_concatenation_repeat1] = STATE(1667), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_SEMI_SEMI] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + }, + [1666] = { + [anon_sym_esac] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_SEMI_SEMI] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + }, + [1667] = { + [aux_sym_concatenation_repeat1] = STATE(2114), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [1668] = { + [aux_sym_concatenation_repeat1] = STATE(1668), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(3611), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [1669] = { + [sym_file_redirect] = STATE(1663), + [sym_file_descriptor] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(3854), + [anon_sym_RPAREN] = ACTIONS(3854), + [anon_sym_SEMI_SEMI] = ACTIONS(3854), + [anon_sym_PIPE_AMP] = ACTIONS(3854), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3854), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_GT] = ACTIONS(2552), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_AMP_GT] = ACTIONS(2552), + [anon_sym_AMP_GT_GT] = ACTIONS(2552), + [anon_sym_LT_AMP] = ACTIONS(2552), + [anon_sym_GT_AMP] = ACTIONS(2552), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3854), + [anon_sym_LF] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), + }, + [1670] = { + [sym_concatenation] = STATE(1666), + [sym_string] = STATE(2116), + [sym_simple_expansion] = STATE(2116), + [sym_string_expansion] = STATE(2116), + [sym_expansion] = STATE(2116), + [sym_command_substitution] = STATE(2116), + [sym_process_substitution] = STATE(2116), + [sym__special_characters] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(665), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(4886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1633), + [anon_sym_LT_LPAREN] = ACTIONS(1635), + [anon_sym_GT_LPAREN] = ACTIONS(1635), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4886), + }, + [1671] = { + [aux_sym_concatenation_repeat1] = STATE(2117), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(701), + [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), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(701), + }, + [1672] = { + [aux_sym_concatenation_repeat1] = STATE(2117), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(717), + [anon_sym_PIPE_PIPE] = ACTIONS(717), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [1673] = { + [sym_concatenation] = STATE(1699), + [sym_string] = STATE(2119), + [sym_simple_expansion] = STATE(2119), + [sym_string_expansion] = STATE(2119), + [sym_expansion] = STATE(2119), + [sym_command_substitution] = STATE(2119), + [sym_process_substitution] = STATE(2119), + [sym__special_characters] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(2672), + [sym_raw_string] = ACTIONS(4890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), + [anon_sym_BQUOTE] = ACTIONS(2680), + [anon_sym_LT_LPAREN] = ACTIONS(2682), + [anon_sym_GT_LPAREN] = ACTIONS(2682), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4890), + }, + [1674] = { + [aux_sym_concatenation_repeat1] = STATE(2120), + [sym_file_descriptor] = ACTIONS(697), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(701), + [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(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(701), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(701), + [anon_sym_LT_AMP] = ACTIONS(701), + [anon_sym_GT_AMP] = ACTIONS(701), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(701), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(701), + }, + [1675] = { + [aux_sym_concatenation_repeat1] = STATE(2120), + [sym_file_descriptor] = ACTIONS(715), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(717), + [anon_sym_PIPE_PIPE] = ACTIONS(717), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(717), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(717), + [anon_sym_LT_AMP] = ACTIONS(717), + [anon_sym_GT_AMP] = ACTIONS(717), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(717), + [anon_sym_LT_LT_LT] = ACTIONS(717), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [1676] = { + [aux_sym_concatenation_repeat1] = STATE(2120), + [sym_file_descriptor] = ACTIONS(2184), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_SEMI_SEMI] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(2186), + [anon_sym_AMP_AMP] = ACTIONS(2186), + [anon_sym_PIPE_PIPE] = ACTIONS(2186), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_GT] = ACTIONS(2186), + [anon_sym_GT_GT] = ACTIONS(2186), + [anon_sym_AMP_GT] = ACTIONS(2186), + [anon_sym_AMP_GT_GT] = ACTIONS(2186), + [anon_sym_LT_AMP] = ACTIONS(2186), + [anon_sym_GT_AMP] = ACTIONS(2186), + [anon_sym_LT_LT] = ACTIONS(2186), + [anon_sym_LT_LT_DASH] = ACTIONS(2186), + [anon_sym_LT_LT_LT] = ACTIONS(2186), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_LF] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + }, + [1677] = { + [aux_sym_concatenation_repeat1] = STATE(2120), + [sym_file_descriptor] = ACTIONS(2188), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_SEMI_SEMI] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2190), + [anon_sym_LT_LT_LT] = ACTIONS(2190), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2190), + }, + [1678] = { + [sym_file_redirect] = STATE(1678), + [sym_heredoc_redirect] = STATE(1678), + [sym_herestring_redirect] = STATE(1678), + [aux_sym_while_statement_repeat1] = STATE(1678), + [sym_file_descriptor] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_SEMI_SEMI] = ACTIONS(2201), + [anon_sym_PIPE_AMP] = ACTIONS(2201), + [anon_sym_AMP_AMP] = ACTIONS(2201), + [anon_sym_PIPE_PIPE] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(4895), + [anon_sym_GT] = ACTIONS(4895), + [anon_sym_GT_GT] = ACTIONS(4895), + [anon_sym_AMP_GT] = ACTIONS(4895), + [anon_sym_AMP_GT_GT] = ACTIONS(4895), + [anon_sym_LT_AMP] = ACTIONS(4895), + [anon_sym_GT_AMP] = ACTIONS(4895), + [anon_sym_LT_LT] = ACTIONS(3962), + [anon_sym_LT_LT_DASH] = ACTIONS(3962), + [anon_sym_LT_LT_LT] = ACTIONS(4898), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2201), + }, + [1679] = { + [aux_sym_concatenation_repeat1] = STATE(1679), + [sym__simple_heredoc_body] = ACTIONS(1754), + [sym__heredoc_body_beginning] = ACTIONS(1754), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1756), + [anon_sym_LT_LT_LT] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [1680] = { + [sym_file_descriptor] = ACTIONS(3581), + [sym_variable_name] = ACTIONS(3581), + [anon_sym_PIPE] = ACTIONS(3583), + [anon_sym_RPAREN] = ACTIONS(3581), + [anon_sym_PIPE_AMP] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_GT] = ACTIONS(3583), + [anon_sym_GT_GT] = ACTIONS(3581), + [anon_sym_AMP_GT] = ACTIONS(3583), + [anon_sym_AMP_GT_GT] = ACTIONS(3581), + [anon_sym_LT_AMP] = ACTIONS(3581), + [anon_sym_GT_AMP] = ACTIONS(3581), + [sym__special_characters] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_DOLLAR] = ACTIONS(3583), + [sym_raw_string] = ACTIONS(3581), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3581), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3581), + [anon_sym_BQUOTE] = ACTIONS(3581), + [anon_sym_LT_LPAREN] = ACTIONS(3581), + [anon_sym_GT_LPAREN] = ACTIONS(3581), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3581), + }, + [1681] = { + [sym__concat] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4164), + [anon_sym_EQ_TILDE] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4164), + }, + [1682] = { + [sym__concat] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_RBRACK] = ACTIONS(4172), + [anon_sym_EQ_TILDE] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4172), + [anon_sym_GT] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4172), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4172), + }, + [1683] = { + [sym__concat] = ACTIONS(4259), + [anon_sym_AMP_AMP] = ACTIONS(4259), + [anon_sym_PIPE_PIPE] = ACTIONS(4259), + [anon_sym_RBRACK] = ACTIONS(4259), + [anon_sym_EQ_TILDE] = ACTIONS(4259), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4261), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4259), + }, + [1684] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4901), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1685] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4903), [sym_comment] = ACTIONS(53), }, - [1766] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4935), + [1686] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4905), [sym_comment] = ACTIONS(53), }, - [1767] = { - [anon_sym_RBRACE] = ACTIONS(4935), + [1687] = { + [anon_sym_RBRACE] = ACTIONS(4905), [sym_comment] = ACTIONS(53), }, - [1768] = { - [sym_concatenation] = STATE(2110), - [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), - [aux_sym_expansion_repeat1] = STATE(2110), + [1688] = { + [sym_concatenation] = STATE(2125), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2125), + [anon_sym_RBRACE] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4909), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4909), + [anon_sym_COLON_QMARK] = ACTIONS(4909), + [anon_sym_COLON_DASH] = ACTIONS(4909), + [anon_sym_PERCENT] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1689] = { + [sym__concat] = ACTIONS(4275), + [anon_sym_AMP_AMP] = ACTIONS(4275), + [anon_sym_PIPE_PIPE] = ACTIONS(4275), + [anon_sym_RBRACK] = ACTIONS(4275), + [anon_sym_EQ_TILDE] = ACTIONS(4275), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4275), + }, + [1690] = { + [sym_concatenation] = STATE(2127), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2127), + [anon_sym_RBRACE] = ACTIONS(4913), + [anon_sym_EQ] = ACTIONS(4915), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4915), + [anon_sym_COLON_QMARK] = ACTIONS(4915), + [anon_sym_COLON_DASH] = ACTIONS(4915), + [anon_sym_PERCENT] = ACTIONS(4915), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1691] = { + [sym__concat] = ACTIONS(4285), + [anon_sym_AMP_AMP] = ACTIONS(4285), + [anon_sym_PIPE_PIPE] = ACTIONS(4285), + [anon_sym_RBRACK] = ACTIONS(4285), + [anon_sym_EQ_TILDE] = ACTIONS(4285), + [anon_sym_EQ_EQ] = ACTIONS(4285), + [anon_sym_EQ] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4285), + [anon_sym_GT] = ACTIONS(4285), + [anon_sym_BANG_EQ] = ACTIONS(4285), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4285), + }, + [1692] = { + [sym_concatenation] = STATE(2129), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2129), + [anon_sym_RBRACE] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4921), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4921), + [anon_sym_COLON_QMARK] = ACTIONS(4921), + [anon_sym_COLON_DASH] = ACTIONS(4921), + [anon_sym_PERCENT] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1693] = { + [sym__concat] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_EQ_TILDE] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4295), + }, + [1694] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1695] = { + [sym__concat] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_RBRACK] = ACTIONS(4301), + [anon_sym_EQ_TILDE] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4301), + [anon_sym_GT] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4301), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4301), + }, + [1696] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4927), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1697] = { + [aux_sym_concatenation_repeat1] = STATE(1701), + [sym_file_descriptor] = ACTIONS(1133), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(1135), + [anon_sym_PIPE_AMP] = ACTIONS(1135), + [anon_sym_AMP_AMP] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1135), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1135), + [anon_sym_AMP_GT] = ACTIONS(1135), + [anon_sym_AMP_GT_GT] = ACTIONS(1135), + [anon_sym_LT_AMP] = ACTIONS(1135), + [anon_sym_GT_AMP] = ACTIONS(1135), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_LT_LT_DASH] = ACTIONS(1135), + [anon_sym_LT_LT_LT] = ACTIONS(1135), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), + }, + [1698] = { + [aux_sym_concatenation_repeat1] = STATE(1701), + [sym_file_descriptor] = ACTIONS(1137), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_SEMI_SEMI] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1139), + [anon_sym_LT_AMP] = ACTIONS(1139), + [anon_sym_GT_AMP] = ACTIONS(1139), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1139), + [anon_sym_LT_LT_LT] = ACTIONS(1139), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + }, + [1699] = { + [sym_file_descriptor] = ACTIONS(1137), + [anon_sym_esac] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_SEMI_SEMI] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1139), + [anon_sym_LT_AMP] = ACTIONS(1139), + [anon_sym_GT_AMP] = ACTIONS(1139), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1139), + [anon_sym_LT_LT_LT] = ACTIONS(1139), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + }, + [1700] = { + [sym_string] = STATE(2132), + [sym_simple_expansion] = STATE(2132), + [sym_string_expansion] = STATE(2132), + [sym_expansion] = STATE(2132), + [sym_command_substitution] = STATE(2132), + [sym_process_substitution] = STATE(2132), + [sym__special_characters] = ACTIONS(4929), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(2672), + [sym_raw_string] = ACTIONS(4929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), + [anon_sym_BQUOTE] = ACTIONS(2680), + [anon_sym_LT_LPAREN] = ACTIONS(2682), + [anon_sym_GT_LPAREN] = ACTIONS(2682), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4929), + }, + [1701] = { + [aux_sym_concatenation_repeat1] = STATE(2133), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_LT_LT_LT] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [1702] = { + [sym_file_descriptor] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [anon_sym_esac] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_GT] = ACTIONS(737), + [anon_sym_AMP_GT] = ACTIONS(737), + [anon_sym_AMP_GT_GT] = ACTIONS(737), + [anon_sym_LT_AMP] = ACTIONS(737), + [anon_sym_GT_AMP] = ACTIONS(737), + [anon_sym_LT_LT] = ACTIONS(737), + [anon_sym_LT_LT_DASH] = ACTIONS(737), + [anon_sym_LT_LT_LT] = ACTIONS(737), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + }, + [1703] = { + [anon_sym_DQUOTE] = ACTIONS(4931), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [1704] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(4931), + [anon_sym_DOLLAR] = ACTIONS(4933), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [1705] = { + [sym_file_descriptor] = ACTIONS(767), + [sym__concat] = ACTIONS(767), + [anon_sym_esac] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_AMP_GT] = ACTIONS(769), + [anon_sym_AMP_GT_GT] = ACTIONS(769), + [anon_sym_LT_AMP] = ACTIONS(769), + [anon_sym_GT_AMP] = ACTIONS(769), + [anon_sym_LT_LT] = ACTIONS(769), + [anon_sym_LT_LT_DASH] = ACTIONS(769), + [anon_sym_LT_LT_LT] = ACTIONS(769), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), + }, + [1706] = { + [sym_file_descriptor] = ACTIONS(771), + [sym__concat] = ACTIONS(771), + [anon_sym_esac] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(773), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(773), + }, + [1707] = { + [sym_file_descriptor] = ACTIONS(775), + [sym__concat] = ACTIONS(775), + [anon_sym_esac] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [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(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(777), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(777), + [anon_sym_LT_AMP] = ACTIONS(777), + [anon_sym_GT_AMP] = ACTIONS(777), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(777), + [anon_sym_LT_LT_LT] = ACTIONS(777), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(777), + }, + [1708] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(4935), + [sym_comment] = ACTIONS(53), + }, + [1709] = { + [sym_concatenation] = STATE(2139), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2139), [anon_sym_RBRACE] = ACTIONS(4937), [anon_sym_EQ] = ACTIONS(4939), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(4941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4943), [anon_sym_COLON] = ACTIONS(4939), [anon_sym_COLON_QMARK] = ACTIONS(4939), [anon_sym_COLON_DASH] = ACTIONS(4939), [anon_sym_PERCENT] = ACTIONS(4939), [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1710] = { + [sym_subscript] = STATE(2143), + [sym_variable_name] = ACTIONS(4945), + [anon_sym_DOLLAR] = ACTIONS(4947), + [anon_sym_DASH] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4949), + [anon_sym_STAR] = ACTIONS(4947), + [anon_sym_AT] = ACTIONS(4947), + [anon_sym_QMARK] = ACTIONS(4947), + [anon_sym_0] = ACTIONS(4951), + [anon_sym__] = ACTIONS(4951), + }, + [1711] = { + [sym_concatenation] = STATE(2146), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2146), + [anon_sym_RBRACE] = ACTIONS(4953), + [anon_sym_EQ] = ACTIONS(4955), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_COLON] = ACTIONS(4955), + [anon_sym_COLON_QMARK] = ACTIONS(4955), + [anon_sym_COLON_DASH] = ACTIONS(4955), + [anon_sym_PERCENT] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1712] = { + [sym_concatenation] = STATE(2149), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2149), + [anon_sym_RBRACE] = ACTIONS(4961), + [anon_sym_EQ] = ACTIONS(4963), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(4967), + [anon_sym_COLON] = ACTIONS(4963), + [anon_sym_COLON_QMARK] = ACTIONS(4963), + [anon_sym_COLON_DASH] = ACTIONS(4963), + [anon_sym_PERCENT] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1713] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(4969), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [1714] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(4969), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [1715] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(4969), + [sym_comment] = ACTIONS(53), + }, + [1716] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(4969), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [1717] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [1718] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [1719] = { + [sym__concat] = ACTIONS(4164), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4164), + [anon_sym_EQ_TILDE] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4164), + }, + [1720] = { + [sym__concat] = ACTIONS(4172), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4172), + [anon_sym_EQ_TILDE] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4172), + [anon_sym_GT] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4172), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4172), + }, + [1721] = { + [sym__concat] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_RPAREN] = ACTIONS(4259), + [anon_sym_AMP_AMP] = ACTIONS(4259), + [anon_sym_PIPE_PIPE] = ACTIONS(4259), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4259), + [anon_sym_EQ_TILDE] = ACTIONS(4259), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4261), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4259), + }, + [1722] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4973), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1723] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4975), + [sym_comment] = ACTIONS(53), + }, + [1724] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(4977), + [sym_comment] = ACTIONS(53), + }, + [1725] = { + [anon_sym_RBRACE] = ACTIONS(4977), + [sym_comment] = ACTIONS(53), + }, + [1726] = { + [sym_concatenation] = STATE(2156), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2156), + [anon_sym_RBRACE] = ACTIONS(4979), + [anon_sym_EQ] = ACTIONS(4981), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4983), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4981), + [anon_sym_COLON_QMARK] = ACTIONS(4981), + [anon_sym_COLON_DASH] = ACTIONS(4981), + [anon_sym_PERCENT] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1727] = { + [sym__concat] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4275), + [anon_sym_AMP_AMP] = ACTIONS(4275), + [anon_sym_PIPE_PIPE] = ACTIONS(4275), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4275), + [anon_sym_EQ_TILDE] = ACTIONS(4275), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4275), + }, + [1728] = { + [sym_concatenation] = STATE(2158), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2158), + [anon_sym_RBRACE] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4987), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_COLON_QMARK] = ACTIONS(4987), + [anon_sym_COLON_DASH] = ACTIONS(4987), + [anon_sym_PERCENT] = ACTIONS(4987), + [anon_sym_DASH] = ACTIONS(4987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1729] = { + [sym__concat] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4285), + [anon_sym_AMP_AMP] = ACTIONS(4285), + [anon_sym_PIPE_PIPE] = ACTIONS(4285), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4285), + [anon_sym_EQ_TILDE] = ACTIONS(4285), + [anon_sym_EQ_EQ] = ACTIONS(4285), + [anon_sym_EQ] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4285), + [anon_sym_GT] = ACTIONS(4285), + [anon_sym_BANG_EQ] = ACTIONS(4285), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4285), + }, + [1730] = { + [sym_concatenation] = STATE(2160), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2160), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_EQ] = ACTIONS(4993), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(4995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(4993), + [anon_sym_COLON_QMARK] = ACTIONS(4993), + [anon_sym_COLON_DASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1731] = { + [sym__concat] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4295), + [anon_sym_EQ_TILDE] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4295), + }, + [1732] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1733] = { + [sym__concat] = ACTIONS(4301), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4301), + [anon_sym_EQ_TILDE] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4301), + [anon_sym_GT] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4301), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4301), + }, + [1734] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(4999), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1735] = { + [sym_variable_name] = ACTIONS(3581), + [anon_sym_PIPE] = ACTIONS(3583), + [anon_sym_RPAREN] = ACTIONS(3583), + [anon_sym_SEMI_SEMI] = ACTIONS(3583), + [anon_sym_PIPE_AMP] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_PIPE_PIPE] = ACTIONS(3583), + [sym__special_characters] = ACTIONS(3583), + [anon_sym_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3583), + [sym_raw_string] = ACTIONS(3583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3583), + [anon_sym_BQUOTE] = ACTIONS(3583), + [anon_sym_LT_LPAREN] = ACTIONS(3583), + [anon_sym_GT_LPAREN] = ACTIONS(3583), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3583), + [sym_word] = ACTIONS(3583), + [anon_sym_SEMI] = ACTIONS(3583), + [anon_sym_LF] = ACTIONS(3581), + [anon_sym_AMP] = ACTIONS(3583), + }, + [1736] = { + [sym__concat] = ACTIONS(4164), + [sym_variable_name] = ACTIONS(4164), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_SEMI_SEMI] = ACTIONS(4166), + [anon_sym_PIPE_AMP] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [sym__special_characters] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), + [anon_sym_BQUOTE] = ACTIONS(4166), + [anon_sym_LT_LPAREN] = ACTIONS(4166), + [anon_sym_GT_LPAREN] = ACTIONS(4166), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4166), + [sym_word] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_LF] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4166), + }, + [1737] = { + [sym__concat] = ACTIONS(4172), + [sym_variable_name] = ACTIONS(4172), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4174), + [anon_sym_SEMI_SEMI] = ACTIONS(4174), + [anon_sym_PIPE_AMP] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4174), + [sym__special_characters] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), + [anon_sym_BQUOTE] = ACTIONS(4174), + [anon_sym_LT_LPAREN] = ACTIONS(4174), + [anon_sym_GT_LPAREN] = ACTIONS(4174), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4174), + [sym_word] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym_LF] = ACTIONS(4172), + [anon_sym_AMP] = ACTIONS(4174), + }, + [1738] = { + [sym__concat] = ACTIONS(4259), + [sym_variable_name] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_RPAREN] = ACTIONS(4261), + [anon_sym_SEMI_SEMI] = ACTIONS(4261), + [anon_sym_PIPE_AMP] = ACTIONS(4261), + [anon_sym_AMP_AMP] = ACTIONS(4261), + [anon_sym_PIPE_PIPE] = ACTIONS(4261), + [sym__special_characters] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4261), + [anon_sym_LT_LPAREN] = ACTIONS(4261), + [anon_sym_GT_LPAREN] = ACTIONS(4261), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4261), + [sym_word] = ACTIONS(4261), + [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_LF] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + }, + [1739] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1740] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5003), + [sym_comment] = ACTIONS(53), + }, + [1741] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5005), + [sym_comment] = ACTIONS(53), + }, + [1742] = { + [anon_sym_RBRACE] = ACTIONS(5005), + [sym_comment] = ACTIONS(53), + }, + [1743] = { + [sym_concatenation] = STATE(2167), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2167), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_EQ] = ACTIONS(5009), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5009), + [anon_sym_COLON_QMARK] = ACTIONS(5009), + [anon_sym_COLON_DASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1744] = { + [sym__concat] = ACTIONS(4275), + [sym_variable_name] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_SEMI_SEMI] = ACTIONS(4277), + [anon_sym_PIPE_AMP] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [sym__special_characters] = ACTIONS(4277), + [anon_sym_DQUOTE] = ACTIONS(4277), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4277), + [anon_sym_LT_LPAREN] = ACTIONS(4277), + [anon_sym_GT_LPAREN] = ACTIONS(4277), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), + [sym_word] = ACTIONS(4277), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_LF] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + }, + [1745] = { + [sym_concatenation] = STATE(2169), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2169), + [anon_sym_RBRACE] = ACTIONS(5013), + [anon_sym_EQ] = ACTIONS(5015), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5015), + [anon_sym_COLON_DASH] = ACTIONS(5015), + [anon_sym_PERCENT] = ACTIONS(5015), + [anon_sym_DASH] = ACTIONS(5015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1746] = { + [sym__concat] = ACTIONS(4285), + [sym_variable_name] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_SEMI_SEMI] = ACTIONS(4287), + [anon_sym_PIPE_AMP] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [sym__special_characters] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), + [anon_sym_BQUOTE] = ACTIONS(4287), + [anon_sym_LT_LPAREN] = ACTIONS(4287), + [anon_sym_GT_LPAREN] = ACTIONS(4287), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4287), + [sym_word] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_LF] = ACTIONS(4285), + [anon_sym_AMP] = ACTIONS(4287), + }, + [1747] = { + [sym_concatenation] = STATE(2171), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2171), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5021), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5023), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5021), + [anon_sym_COLON_QMARK] = ACTIONS(5021), + [anon_sym_COLON_DASH] = ACTIONS(5021), + [anon_sym_PERCENT] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1748] = { + [sym__concat] = ACTIONS(4295), + [sym_variable_name] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4297), + [anon_sym_PIPE_AMP] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [sym__special_characters] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LT_LPAREN] = ACTIONS(4297), + [anon_sym_GT_LPAREN] = ACTIONS(4297), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4297), + [sym_word] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_LF] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4297), + }, + [1749] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1750] = { + [sym__concat] = ACTIONS(4301), + [sym_variable_name] = ACTIONS(4301), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [anon_sym_PIPE_AMP] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_PIPE_PIPE] = ACTIONS(4303), + [sym__special_characters] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LT_LPAREN] = ACTIONS(4303), + [anon_sym_GT_LPAREN] = ACTIONS(4303), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4303), + [sym_word] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4303), + }, + [1751] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1752] = { + [sym__concat] = ACTIONS(4164), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_SEMI_SEMI] = ACTIONS(4166), + [anon_sym_PIPE_AMP] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [sym__special_characters] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), + [anon_sym_BQUOTE] = ACTIONS(4166), + [anon_sym_LT_LPAREN] = ACTIONS(4166), + [anon_sym_GT_LPAREN] = ACTIONS(4166), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4166), + [sym_word] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_LF] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4166), + }, + [1753] = { + [sym__concat] = ACTIONS(4172), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4174), + [anon_sym_SEMI_SEMI] = ACTIONS(4174), + [anon_sym_PIPE_AMP] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4174), + [sym__special_characters] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), + [anon_sym_BQUOTE] = ACTIONS(4174), + [anon_sym_LT_LPAREN] = ACTIONS(4174), + [anon_sym_GT_LPAREN] = ACTIONS(4174), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4174), + [sym_word] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym_LF] = ACTIONS(4172), + [anon_sym_AMP] = ACTIONS(4174), + }, + [1754] = { + [sym__concat] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_RPAREN] = ACTIONS(4261), + [anon_sym_SEMI_SEMI] = ACTIONS(4261), + [anon_sym_PIPE_AMP] = ACTIONS(4261), + [anon_sym_AMP_AMP] = ACTIONS(4261), + [anon_sym_PIPE_PIPE] = ACTIONS(4261), + [sym__special_characters] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4261), + [anon_sym_LT_LPAREN] = ACTIONS(4261), + [anon_sym_GT_LPAREN] = ACTIONS(4261), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4261), + [sym_word] = ACTIONS(4261), + [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_LF] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + }, + [1755] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1756] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5031), + [sym_comment] = ACTIONS(53), + }, + [1757] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5033), + [sym_comment] = ACTIONS(53), + }, + [1758] = { + [anon_sym_RBRACE] = ACTIONS(5033), + [sym_comment] = ACTIONS(53), + }, + [1759] = { + [sym_concatenation] = STATE(2178), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2178), + [anon_sym_RBRACE] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5037), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5037), + [anon_sym_COLON_QMARK] = ACTIONS(5037), + [anon_sym_COLON_DASH] = ACTIONS(5037), + [anon_sym_PERCENT] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1760] = { + [sym__concat] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_SEMI_SEMI] = ACTIONS(4277), + [anon_sym_PIPE_AMP] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [sym__special_characters] = ACTIONS(4277), + [anon_sym_DQUOTE] = ACTIONS(4277), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4277), + [anon_sym_LT_LPAREN] = ACTIONS(4277), + [anon_sym_GT_LPAREN] = ACTIONS(4277), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), + [sym_word] = ACTIONS(4277), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_LF] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + }, + [1761] = { + [sym_concatenation] = STATE(2180), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2180), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_EQ] = ACTIONS(5043), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5043), + [anon_sym_COLON_QMARK] = ACTIONS(5043), + [anon_sym_COLON_DASH] = ACTIONS(5043), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1762] = { + [sym__concat] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_SEMI_SEMI] = ACTIONS(4287), + [anon_sym_PIPE_AMP] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [sym__special_characters] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), + [anon_sym_BQUOTE] = ACTIONS(4287), + [anon_sym_LT_LPAREN] = ACTIONS(4287), + [anon_sym_GT_LPAREN] = ACTIONS(4287), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4287), + [sym_word] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_LF] = ACTIONS(4285), + [anon_sym_AMP] = ACTIONS(4287), + }, + [1763] = { + [sym_concatenation] = STATE(2182), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2182), + [anon_sym_RBRACE] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5049), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5049), + [anon_sym_COLON_QMARK] = ACTIONS(5049), + [anon_sym_COLON_DASH] = ACTIONS(5049), + [anon_sym_PERCENT] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1764] = { + [sym__concat] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4297), + [anon_sym_PIPE_AMP] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [sym__special_characters] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LT_LPAREN] = ACTIONS(4297), + [anon_sym_GT_LPAREN] = ACTIONS(4297), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4297), + [sym_word] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_LF] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4297), + }, + [1765] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1766] = { + [sym__concat] = ACTIONS(4301), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [anon_sym_PIPE_AMP] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_PIPE_PIPE] = ACTIONS(4303), + [sym__special_characters] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LT_LPAREN] = ACTIONS(4303), + [anon_sym_GT_LPAREN] = ACTIONS(4303), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4303), + [sym_word] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4303), + }, + [1767] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5055), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1768] = { + [sym_file_descriptor] = ACTIONS(4164), + [sym__concat] = ACTIONS(4164), + [sym_variable_name] = ACTIONS(4164), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_PIPE_AMP] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4164), + [anon_sym_AMP_GT] = ACTIONS(4166), + [anon_sym_AMP_GT_GT] = ACTIONS(4164), + [anon_sym_LT_AMP] = ACTIONS(4164), + [anon_sym_GT_AMP] = ACTIONS(4164), + [sym__special_characters] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4164), + [anon_sym_BQUOTE] = ACTIONS(4164), + [anon_sym_LT_LPAREN] = ACTIONS(4164), + [anon_sym_GT_LPAREN] = ACTIONS(4164), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4164), }, [1769] = { - [sym__concat] = ACTIONS(2852), - [sym_variable_name] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2852), - [anon_sym_PIPE_AMP] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [sym__special_characters] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2852), - [anon_sym_BQUOTE] = ACTIONS(2852), - [anon_sym_LT_LPAREN] = ACTIONS(2852), - [anon_sym_GT_LPAREN] = ACTIONS(2852), + [sym_file_descriptor] = ACTIONS(4172), + [sym__concat] = ACTIONS(4172), + [sym_variable_name] = ACTIONS(4172), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_PIPE_AMP] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4172), + [anon_sym_AMP_GT] = ACTIONS(4174), + [anon_sym_AMP_GT_GT] = ACTIONS(4172), + [anon_sym_LT_AMP] = ACTIONS(4172), + [anon_sym_GT_AMP] = ACTIONS(4172), + [sym__special_characters] = ACTIONS(4172), + [anon_sym_DQUOTE] = ACTIONS(4172), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4172), + [anon_sym_BQUOTE] = ACTIONS(4172), + [anon_sym_LT_LPAREN] = ACTIONS(4172), + [anon_sym_GT_LPAREN] = ACTIONS(4172), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2854), - [sym_word] = ACTIONS(2854), + [sym_word] = ACTIONS(4172), }, [1770] = { - [sym_concatenation] = STATE(2113), - [sym_string] = STATE(2112), - [sym_simple_expansion] = STATE(2112), - [sym_string_expansion] = STATE(2112), - [sym_expansion] = STATE(2112), - [sym_command_substitution] = STATE(2112), - [sym_process_substitution] = STATE(2112), - [anon_sym_RBRACE] = ACTIONS(4935), - [sym__special_characters] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(4945), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_file_descriptor] = ACTIONS(4259), + [sym__concat] = ACTIONS(4259), + [sym_variable_name] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_RPAREN] = 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), + [sym__special_characters] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4259), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LT_LPAREN] = ACTIONS(4259), + [anon_sym_GT_LPAREN] = ACTIONS(4259), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4945), + [sym_word] = ACTIONS(4259), }, [1771] = { - [sym__concat] = ACTIONS(2895), - [sym_variable_name] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2895), - [anon_sym_PIPE_AMP] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [sym__special_characters] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2895), - [anon_sym_BQUOTE] = ACTIONS(2895), - [anon_sym_LT_LPAREN] = ACTIONS(2895), - [anon_sym_GT_LPAREN] = ACTIONS(2895), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), - [sym_word] = ACTIONS(2897), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1772] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4947), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5059), + [sym_comment] = ACTIONS(53), }, [1773] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5061), + [sym_comment] = ACTIONS(53), }, [1774] = { - [sym__concat] = ACTIONS(2903), - [sym_variable_name] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2903), - [anon_sym_PIPE_AMP] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [sym__special_characters] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2903), - [anon_sym_BQUOTE] = ACTIONS(2903), - [anon_sym_LT_LPAREN] = ACTIONS(2903), - [anon_sym_GT_LPAREN] = ACTIONS(2903), + [anon_sym_RBRACE] = ACTIONS(5061), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2905), - [sym_word] = ACTIONS(2905), }, [1775] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4951), + [sym_concatenation] = STATE(2189), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2189), + [anon_sym_RBRACE] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5065), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5065), + [anon_sym_COLON_QMARK] = ACTIONS(5065), + [anon_sym_COLON_DASH] = ACTIONS(5065), + [anon_sym_PERCENT] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1776] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(4275), + [sym__concat] = ACTIONS(4275), + [sym_variable_name] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4275), + [anon_sym_PIPE_AMP] = ACTIONS(4275), + [anon_sym_AMP_AMP] = ACTIONS(4275), + [anon_sym_PIPE_PIPE] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4277), + [anon_sym_GT_GT] = ACTIONS(4275), + [anon_sym_AMP_GT] = ACTIONS(4277), + [anon_sym_AMP_GT_GT] = ACTIONS(4275), + [anon_sym_LT_AMP] = ACTIONS(4275), + [anon_sym_GT_AMP] = ACTIONS(4275), + [sym__special_characters] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LT_LPAREN] = ACTIONS(4275), + [anon_sym_GT_LPAREN] = ACTIONS(4275), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4275), }, [1777] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4955), + [sym_concatenation] = STATE(2191), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2191), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_EQ] = ACTIONS(5071), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5071), + [anon_sym_COLON_QMARK] = ACTIONS(5071), + [anon_sym_COLON_DASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1778] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(4285), + [sym__concat] = ACTIONS(4285), + [sym_variable_name] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4285), + [anon_sym_PIPE_AMP] = ACTIONS(4285), + [anon_sym_AMP_AMP] = ACTIONS(4285), + [anon_sym_PIPE_PIPE] = ACTIONS(4285), + [anon_sym_LT] = ACTIONS(4287), + [anon_sym_GT] = ACTIONS(4287), + [anon_sym_GT_GT] = ACTIONS(4285), + [anon_sym_AMP_GT] = ACTIONS(4287), + [anon_sym_AMP_GT_GT] = ACTIONS(4285), + [anon_sym_LT_AMP] = ACTIONS(4285), + [anon_sym_GT_AMP] = ACTIONS(4285), + [sym__special_characters] = ACTIONS(4285), + [anon_sym_DQUOTE] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4285), + [anon_sym_BQUOTE] = ACTIONS(4285), + [anon_sym_LT_LPAREN] = ACTIONS(4285), + [anon_sym_GT_LPAREN] = ACTIONS(4285), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4285), }, [1779] = { - [sym_concatenation] = STATE(2120), - [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), - [aux_sym_expansion_repeat1] = STATE(2120), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4959), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_COLON_QMARK] = ACTIONS(4959), - [anon_sym_COLON_DASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(2193), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2193), + [anon_sym_RBRACE] = ACTIONS(5075), + [anon_sym_EQ] = ACTIONS(5077), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5077), + [anon_sym_COLON_QMARK] = ACTIONS(5077), + [anon_sym_COLON_DASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1780] = { - [sym__concat] = ACTIONS(2919), - [sym_variable_name] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2919), - [anon_sym_PIPE_AMP] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [sym__special_characters] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2919), - [anon_sym_BQUOTE] = ACTIONS(2919), - [anon_sym_LT_LPAREN] = ACTIONS(2919), - [anon_sym_GT_LPAREN] = ACTIONS(2919), + [sym_file_descriptor] = ACTIONS(4295), + [sym__concat] = ACTIONS(4295), + [sym_variable_name] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_PIPE_AMP] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_GT_GT] = ACTIONS(4295), + [anon_sym_AMP_GT] = ACTIONS(4297), + [anon_sym_AMP_GT_GT] = ACTIONS(4295), + [anon_sym_LT_AMP] = ACTIONS(4295), + [anon_sym_GT_AMP] = ACTIONS(4295), + [sym__special_characters] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4295), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4295), + [anon_sym_BQUOTE] = ACTIONS(4295), + [anon_sym_LT_LPAREN] = ACTIONS(4295), + [anon_sym_GT_LPAREN] = ACTIONS(4295), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2921), - [sym_word] = ACTIONS(2921), + [sym_word] = ACTIONS(4295), }, [1781] = { - [sym_concatenation] = STATE(2122), - [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), - [aux_sym_expansion_repeat1] = STATE(2122), - [anon_sym_RBRACE] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4965), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4965), - [anon_sym_COLON_QMARK] = ACTIONS(4965), - [anon_sym_COLON_DASH] = ACTIONS(4965), - [anon_sym_PERCENT] = ACTIONS(4965), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5081), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1782] = { - [sym__concat] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_PIPE_AMP] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [sym__special_characters] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), - [anon_sym_BQUOTE] = ACTIONS(2756), - [anon_sym_LT_LPAREN] = ACTIONS(2756), - [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_file_descriptor] = ACTIONS(4301), + [sym__concat] = ACTIONS(4301), + [sym_variable_name] = ACTIONS(4301), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_PIPE_AMP] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_GT_GT] = ACTIONS(4301), + [anon_sym_AMP_GT] = ACTIONS(4303), + [anon_sym_AMP_GT_GT] = ACTIONS(4301), + [anon_sym_LT_AMP] = ACTIONS(4301), + [anon_sym_GT_AMP] = ACTIONS(4301), + [sym__special_characters] = ACTIONS(4301), + [anon_sym_DQUOTE] = ACTIONS(4301), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4301), + [anon_sym_BQUOTE] = ACTIONS(4301), + [anon_sym_LT_LPAREN] = ACTIONS(4301), + [anon_sym_GT_LPAREN] = ACTIONS(4301), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), - [sym_word] = ACTIONS(2758), + [sym_word] = ACTIONS(4301), }, [1783] = { - [sym__concat] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2770), - [anon_sym_PIPE_AMP] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [sym__special_characters] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2770), - [anon_sym_BQUOTE] = ACTIONS(2770), - [anon_sym_LT_LPAREN] = ACTIONS(2770), - [anon_sym_GT_LPAREN] = ACTIONS(2770), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2772), - [sym_word] = ACTIONS(2772), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1784] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4969), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4166), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym__string_content] = ACTIONS(4164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), + [anon_sym_BQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(179), }, [1785] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(4971), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4172), + [anon_sym_DQUOTE] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym__string_content] = ACTIONS(4172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), + [anon_sym_BQUOTE] = ACTIONS(4174), + [sym_comment] = ACTIONS(179), }, [1786] = { - [anon_sym_RBRACE] = ACTIONS(4971), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym__string_content] = ACTIONS(4259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4261), + [sym_comment] = ACTIONS(179), }, [1787] = { - [sym_concatenation] = STATE(2126), - [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), - [aux_sym_expansion_repeat1] = STATE(2126), - [anon_sym_RBRACE] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4975), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4977), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_COLON_QMARK] = ACTIONS(4975), - [anon_sym_COLON_DASH] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [1788] = { - [sym__concat] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2852), - [anon_sym_PIPE_AMP] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [sym__special_characters] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2852), - [anon_sym_BQUOTE] = ACTIONS(2852), - [anon_sym_LT_LPAREN] = ACTIONS(2852), - [anon_sym_GT_LPAREN] = ACTIONS(2852), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5087), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2854), - [sym_word] = ACTIONS(2854), }, [1789] = { - [sym_concatenation] = STATE(2129), - [sym_string] = STATE(2128), - [sym_simple_expansion] = STATE(2128), - [sym_string_expansion] = STATE(2128), - [sym_expansion] = STATE(2128), - [sym_command_substitution] = STATE(2128), - [sym_process_substitution] = STATE(2128), - [anon_sym_RBRACE] = ACTIONS(4971), - [sym__special_characters] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(4981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4981), - }, - [1790] = { - [sym__concat] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2895), - [anon_sym_PIPE_AMP] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [sym__special_characters] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2895), - [anon_sym_BQUOTE] = ACTIONS(2895), - [anon_sym_LT_LPAREN] = ACTIONS(2895), - [anon_sym_GT_LPAREN] = ACTIONS(2895), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), - [sym_word] = ACTIONS(2897), - }, - [1791] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4983), - }, - [1792] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1793] = { - [sym__concat] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2903), - [anon_sym_PIPE_AMP] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [sym__special_characters] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2903), - [anon_sym_BQUOTE] = ACTIONS(2903), - [anon_sym_LT_LPAREN] = ACTIONS(2903), - [anon_sym_GT_LPAREN] = ACTIONS(2903), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2905), - [sym_word] = ACTIONS(2905), - }, - [1794] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4987), - }, - [1795] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1796] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4991), - }, - [1797] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1798] = { - [sym_concatenation] = STATE(2136), - [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), - [aux_sym_expansion_repeat1] = STATE(2136), - [anon_sym_RBRACE] = ACTIONS(4993), - [anon_sym_EQ] = ACTIONS(4995), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(4997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_COLON_QMARK] = ACTIONS(4995), - [anon_sym_COLON_DASH] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1799] = { - [sym__concat] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2919), - [anon_sym_PIPE_AMP] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [sym__special_characters] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2919), - [anon_sym_BQUOTE] = ACTIONS(2919), - [anon_sym_LT_LPAREN] = ACTIONS(2919), - [anon_sym_GT_LPAREN] = ACTIONS(2919), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2921), - [sym_word] = ACTIONS(2921), - }, - [1800] = { - [sym_concatenation] = STATE(2138), - [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), - [aux_sym_expansion_repeat1] = STATE(2138), - [anon_sym_RBRACE] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(5001), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5001), - [anon_sym_COLON_QMARK] = ACTIONS(5001), - [anon_sym_COLON_DASH] = ACTIONS(5001), - [anon_sym_PERCENT] = ACTIONS(5001), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1801] = { - [sym__simple_heredoc_body] = ACTIONS(3905), - [sym__heredoc_body_beginning] = ACTIONS(3905), - [sym_file_descriptor] = ACTIONS(3905), - [sym__concat] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3905), - [anon_sym_PIPE_AMP] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_EQ_TILDE] = ACTIONS(3907), - [anon_sym_EQ_EQ] = ACTIONS(3907), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_AMP_GT] = ACTIONS(3907), - [anon_sym_AMP_GT_GT] = ACTIONS(3905), - [anon_sym_LT_AMP] = ACTIONS(3905), - [anon_sym_GT_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3907), - [anon_sym_LT_LT_DASH] = ACTIONS(3905), - [anon_sym_LT_LT_LT] = ACTIONS(3905), - [sym__special_characters] = ACTIONS(3905), - [anon_sym_DQUOTE] = ACTIONS(3905), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3905), - [anon_sym_BQUOTE] = ACTIONS(3905), - [anon_sym_LT_LPAREN] = ACTIONS(3905), - [anon_sym_GT_LPAREN] = ACTIONS(3905), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3907), - }, - [1802] = { - [sym__simple_heredoc_body] = ACTIONS(3913), - [sym__heredoc_body_beginning] = ACTIONS(3913), - [sym_file_descriptor] = ACTIONS(3913), - [sym__concat] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3913), - [anon_sym_PIPE_AMP] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_EQ_TILDE] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_AMP_GT] = ACTIONS(3915), - [anon_sym_AMP_GT_GT] = ACTIONS(3913), - [anon_sym_LT_AMP] = ACTIONS(3913), - [anon_sym_GT_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_LT_LT_DASH] = ACTIONS(3913), - [anon_sym_LT_LT_LT] = ACTIONS(3913), - [sym__special_characters] = ACTIONS(3913), - [anon_sym_DQUOTE] = ACTIONS(3913), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), - [anon_sym_BQUOTE] = ACTIONS(3913), - [anon_sym_LT_LPAREN] = ACTIONS(3913), - [anon_sym_GT_LPAREN] = ACTIONS(3913), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3915), - }, - [1803] = { - [sym__simple_heredoc_body] = ACTIONS(4000), - [sym__heredoc_body_beginning] = ACTIONS(4000), - [sym_file_descriptor] = ACTIONS(4000), - [sym__concat] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4000), - [anon_sym_PIPE_AMP] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_PIPE_PIPE] = ACTIONS(4000), - [anon_sym_EQ_TILDE] = ACTIONS(4002), - [anon_sym_EQ_EQ] = ACTIONS(4002), - [anon_sym_LT] = ACTIONS(4002), - [anon_sym_GT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4000), - [anon_sym_AMP_GT] = ACTIONS(4002), - [anon_sym_AMP_GT_GT] = ACTIONS(4000), - [anon_sym_LT_AMP] = ACTIONS(4000), - [anon_sym_GT_AMP] = ACTIONS(4000), - [anon_sym_LT_LT] = ACTIONS(4002), - [anon_sym_LT_LT_DASH] = ACTIONS(4000), - [anon_sym_LT_LT_LT] = ACTIONS(4000), - [sym__special_characters] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), - [anon_sym_BQUOTE] = ACTIONS(4000), - [anon_sym_LT_LPAREN] = ACTIONS(4000), - [anon_sym_GT_LPAREN] = ACTIONS(4000), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4002), - }, - [1804] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1805] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5007), - [sym_comment] = ACTIONS(53), - }, - [1806] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5009), - [sym_comment] = ACTIONS(53), - }, - [1807] = { - [anon_sym_RBRACE] = ACTIONS(5009), - [sym_comment] = ACTIONS(53), - }, - [1808] = { - [sym_concatenation] = STATE(2143), - [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), - [aux_sym_expansion_repeat1] = STATE(2143), - [anon_sym_RBRACE] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5013), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5013), - [anon_sym_COLON_QMARK] = ACTIONS(5013), - [anon_sym_COLON_DASH] = ACTIONS(5013), - [anon_sym_PERCENT] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1809] = { - [sym__simple_heredoc_body] = ACTIONS(4016), - [sym__heredoc_body_beginning] = ACTIONS(4016), - [sym_file_descriptor] = ACTIONS(4016), - [sym__concat] = ACTIONS(4016), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4016), - [anon_sym_PIPE_AMP] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [anon_sym_EQ_TILDE] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_AMP_GT] = ACTIONS(4018), - [anon_sym_AMP_GT_GT] = ACTIONS(4016), - [anon_sym_LT_AMP] = ACTIONS(4016), - [anon_sym_GT_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_LT_LT_DASH] = ACTIONS(4016), - [anon_sym_LT_LT_LT] = ACTIONS(4016), - [sym__special_characters] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym_raw_string] = ACTIONS(4016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4016), - [anon_sym_BQUOTE] = ACTIONS(4016), - [anon_sym_LT_LPAREN] = ACTIONS(4016), - [anon_sym_GT_LPAREN] = ACTIONS(4016), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4018), - }, - [1810] = { - [sym_concatenation] = STATE(2145), - [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), - [aux_sym_expansion_repeat1] = STATE(2145), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ] = ACTIONS(5019), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_COLON_QMARK] = ACTIONS(5019), - [anon_sym_COLON_DASH] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1811] = { - [sym__simple_heredoc_body] = ACTIONS(4026), - [sym__heredoc_body_beginning] = ACTIONS(4026), - [sym_file_descriptor] = ACTIONS(4026), - [sym__concat] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [anon_sym_EQ_TILDE] = ACTIONS(4028), - [anon_sym_EQ_EQ] = ACTIONS(4028), - [anon_sym_LT] = ACTIONS(4028), - [anon_sym_GT] = ACTIONS(4028), - [anon_sym_GT_GT] = ACTIONS(4026), - [anon_sym_AMP_GT] = ACTIONS(4028), - [anon_sym_AMP_GT_GT] = ACTIONS(4026), - [anon_sym_LT_AMP] = ACTIONS(4026), - [anon_sym_GT_AMP] = ACTIONS(4026), - [anon_sym_LT_LT] = ACTIONS(4028), - [anon_sym_LT_LT_DASH] = ACTIONS(4026), - [anon_sym_LT_LT_LT] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4028), - }, - [1812] = { - [sym_concatenation] = STATE(2147), - [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), - [aux_sym_expansion_repeat1] = STATE(2147), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_COLON_QMARK] = ACTIONS(5025), - [anon_sym_COLON_DASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1813] = { - [sym__simple_heredoc_body] = ACTIONS(4036), - [sym__heredoc_body_beginning] = ACTIONS(4036), - [sym_file_descriptor] = ACTIONS(4036), - [sym__concat] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_EQ_TILDE] = ACTIONS(4038), - [anon_sym_EQ_EQ] = ACTIONS(4038), - [anon_sym_LT] = ACTIONS(4038), - [anon_sym_GT] = ACTIONS(4038), - [anon_sym_GT_GT] = ACTIONS(4036), - [anon_sym_AMP_GT] = ACTIONS(4038), - [anon_sym_AMP_GT_GT] = ACTIONS(4036), - [anon_sym_LT_AMP] = ACTIONS(4036), - [anon_sym_GT_AMP] = ACTIONS(4036), - [anon_sym_LT_LT] = ACTIONS(4038), - [anon_sym_LT_LT_DASH] = ACTIONS(4036), - [anon_sym_LT_LT_LT] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4038), - }, - [1814] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1815] = { - [sym__simple_heredoc_body] = ACTIONS(4042), - [sym__heredoc_body_beginning] = ACTIONS(4042), - [sym_file_descriptor] = ACTIONS(4042), - [sym__concat] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4042), - [anon_sym_PIPE_AMP] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_EQ_TILDE] = ACTIONS(4044), - [anon_sym_EQ_EQ] = ACTIONS(4044), - [anon_sym_LT] = ACTIONS(4044), - [anon_sym_GT] = ACTIONS(4044), - [anon_sym_GT_GT] = ACTIONS(4042), - [anon_sym_AMP_GT] = ACTIONS(4044), - [anon_sym_AMP_GT_GT] = ACTIONS(4042), - [anon_sym_LT_AMP] = ACTIONS(4042), - [anon_sym_GT_AMP] = ACTIONS(4042), - [anon_sym_LT_LT] = ACTIONS(4044), - [anon_sym_LT_LT_DASH] = ACTIONS(4042), - [anon_sym_LT_LT_LT] = ACTIONS(4042), - [sym__special_characters] = ACTIONS(4042), - [anon_sym_DQUOTE] = ACTIONS(4042), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), - [anon_sym_BQUOTE] = ACTIONS(4042), - [anon_sym_LT_LPAREN] = ACTIONS(4042), - [anon_sym_GT_LPAREN] = ACTIONS(4042), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4044), - }, - [1816] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1817] = { - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_RPAREN] = ACTIONS(3597), - [anon_sym_PIPE_AMP] = ACTIONS(3597), - [anon_sym_AMP_AMP] = ACTIONS(3597), - [anon_sym_PIPE_PIPE] = ACTIONS(3597), - [anon_sym_BQUOTE] = ACTIONS(3597), - [sym_comment] = ACTIONS(53), - }, - [1818] = { - [aux_sym_concatenation_repeat1] = STATE(1818), - [sym__simple_heredoc_body] = ACTIONS(1672), - [sym__heredoc_body_beginning] = ACTIONS(1672), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(3136), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1672), - [anon_sym_LT_AMP] = ACTIONS(1672), - [anon_sym_GT_AMP] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1672), - [anon_sym_LT_LT_LT] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - }, - [1819] = { - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_RPAREN] = ACTIONS(4300), - [anon_sym_PIPE_AMP] = ACTIONS(4300), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [anon_sym_BQUOTE] = ACTIONS(4300), - [sym_comment] = ACTIONS(53), - }, - [1820] = { - [aux_sym_concatenation_repeat1] = STATE(1820), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(2667), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1672), - [anon_sym_LT_AMP] = ACTIONS(1672), - [anon_sym_GT_AMP] = ACTIONS(1672), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_LT_LPAREN] = ACTIONS(1672), - [anon_sym_GT_LPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1672), - }, - [1821] = { - [sym_file_redirect] = STATE(2079), - [sym_file_descriptor] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_PIPE_AMP] = ACTIONS(3597), - [anon_sym_AMP_AMP] = ACTIONS(3597), - [anon_sym_PIPE_PIPE] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3241), - [anon_sym_AMP_GT] = ACTIONS(3239), - [anon_sym_AMP_GT_GT] = ACTIONS(3241), - [anon_sym_LT_AMP] = ACTIONS(3241), - [anon_sym_GT_AMP] = ACTIONS(3241), - [anon_sym_BQUOTE] = ACTIONS(3597), - [sym_comment] = ACTIONS(53), - }, - [1822] = { - [sym_concatenation] = STATE(2082), - [sym_string] = STATE(2151), - [sym_simple_expansion] = STATE(2151), - [sym_string_expansion] = STATE(2151), - [sym_expansion] = STATE(2151), - [sym_command_substitution] = STATE(2151), - [sym_process_substitution] = STATE(2151), - [sym__special_characters] = ACTIONS(5033), - [anon_sym_DQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(843), - [sym_raw_string] = ACTIONS(5035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(851), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5035), - }, - [1823] = { - [aux_sym_concatenation_repeat1] = STATE(2152), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [anon_sym_BQUOTE] = ACTIONS(671), - [sym_comment] = ACTIONS(53), - }, - [1824] = { - [aux_sym_concatenation_repeat1] = STATE(2152), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - }, - [1825] = { - [sym_concatenation] = STATE(2086), - [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), - [sym__special_characters] = ACTIONS(5037), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(5039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), - [anon_sym_BQUOTE] = ACTIONS(4100), - [anon_sym_LT_LPAREN] = ACTIONS(4102), - [anon_sym_GT_LPAREN] = ACTIONS(4102), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5039), - }, - [1826] = { - [aux_sym_concatenation_repeat1] = STATE(2155), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_AMP_GT] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(671), - [anon_sym_GT_AMP] = ACTIONS(671), - [anon_sym_LT_LT] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(671), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_BQUOTE] = ACTIONS(671), - [sym_comment] = ACTIONS(53), - }, - [1827] = { - [aux_sym_concatenation_repeat1] = STATE(2155), - [sym_file_descriptor] = ACTIONS(689), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_AMP] = ACTIONS(689), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(689), - [anon_sym_LT_LT_LT] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - }, - [1828] = { - [aux_sym_concatenation_repeat1] = STATE(2155), - [sym_file_descriptor] = ACTIONS(2098), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_PIPE_AMP] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_AMP_GT] = ACTIONS(2100), - [anon_sym_AMP_GT_GT] = ACTIONS(2098), - [anon_sym_LT_AMP] = ACTIONS(2098), - [anon_sym_GT_AMP] = ACTIONS(2098), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_LT_LT_DASH] = ACTIONS(2098), - [anon_sym_LT_LT_LT] = ACTIONS(2098), - [anon_sym_BQUOTE] = ACTIONS(2098), - [sym_comment] = ACTIONS(53), - }, - [1829] = { - [aux_sym_concatenation_repeat1] = STATE(2155), - [sym_file_descriptor] = ACTIONS(2102), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_PIPE_AMP] = ACTIONS(2102), - [anon_sym_AMP_AMP] = ACTIONS(2102), - [anon_sym_PIPE_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2102), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2102), - [anon_sym_LT_AMP] = ACTIONS(2102), - [anon_sym_GT_AMP] = ACTIONS(2102), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2102), - [anon_sym_LT_LT_LT] = ACTIONS(2102), - [anon_sym_BQUOTE] = ACTIONS(2102), - [sym_comment] = ACTIONS(53), - }, - [1830] = { - [sym_file_redirect] = STATE(1830), - [sym_heredoc_redirect] = STATE(1830), - [sym_herestring_redirect] = STATE(1830), - [aux_sym_while_statement_repeat1] = STATE(1830), - [sym_file_descriptor] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_PIPE_AMP] = ACTIONS(2110), - [anon_sym_AMP_AMP] = ACTIONS(2110), - [anon_sym_PIPE_PIPE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(5044), - [anon_sym_GT] = ACTIONS(5044), - [anon_sym_GT_GT] = ACTIONS(5047), - [anon_sym_AMP_GT] = ACTIONS(5044), - [anon_sym_AMP_GT_GT] = ACTIONS(5047), - [anon_sym_LT_AMP] = ACTIONS(5047), - [anon_sym_GT_AMP] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(4922), - [anon_sym_LT_LT_DASH] = ACTIONS(4925), - [anon_sym_LT_LT_LT] = ACTIONS(5050), - [anon_sym_BQUOTE] = ACTIONS(2110), - [sym_comment] = ACTIONS(53), - }, - [1831] = { - [aux_sym_concatenation_repeat1] = STATE(1831), - [sym__simple_heredoc_body] = ACTIONS(1672), - [sym__heredoc_body_beginning] = ACTIONS(1672), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(3136), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1672), - [anon_sym_LT_AMP] = ACTIONS(1672), - [anon_sym_GT_AMP] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1672), - [anon_sym_LT_LT_LT] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - }, - [1832] = { - [sym__heredoc_body_middle] = ACTIONS(2770), - [sym__heredoc_body_end] = ACTIONS(2770), - [anon_sym_DOLLAR] = ACTIONS(2772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), - [sym_comment] = ACTIONS(53), - }, - [1833] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5053), - [sym_comment] = ACTIONS(53), - }, - [1834] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5055), - [sym_comment] = ACTIONS(53), - }, - [1835] = { - [anon_sym_RBRACE] = ACTIONS(5055), - [sym_comment] = ACTIONS(53), - }, - [1836] = { - [sym_concatenation] = STATE(2159), - [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), - [aux_sym_expansion_repeat1] = STATE(2159), - [anon_sym_RBRACE] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5059), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_COLON_QMARK] = ACTIONS(5059), - [anon_sym_COLON_DASH] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1837] = { - [sym__heredoc_body_middle] = ACTIONS(2852), - [sym__heredoc_body_end] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), - [sym_comment] = ACTIONS(53), - }, - [1838] = { - [sym_concatenation] = STATE(2162), - [sym_string] = STATE(2161), - [sym_simple_expansion] = STATE(2161), - [sym_string_expansion] = STATE(2161), - [sym_expansion] = STATE(2161), - [sym_command_substitution] = STATE(2161), - [sym_process_substitution] = STATE(2161), - [anon_sym_RBRACE] = ACTIONS(5055), - [sym__special_characters] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(5065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5065), - }, - [1839] = { - [sym__heredoc_body_middle] = ACTIONS(2895), - [sym__heredoc_body_end] = ACTIONS(2895), - [anon_sym_DOLLAR] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), - [sym_comment] = ACTIONS(53), - }, - [1840] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5067), - }, - [1841] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1842] = { - [sym__heredoc_body_middle] = ACTIONS(2903), - [sym__heredoc_body_end] = ACTIONS(2903), - [anon_sym_DOLLAR] = ACTIONS(2905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), - [sym_comment] = ACTIONS(53), - }, - [1843] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5071), - }, - [1844] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1845] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5075), - }, - [1846] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1847] = { - [sym_concatenation] = STATE(2169), - [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), - [aux_sym_expansion_repeat1] = STATE(2169), - [anon_sym_RBRACE] = ACTIONS(5077), - [anon_sym_EQ] = ACTIONS(5079), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5081), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_COLON_QMARK] = ACTIONS(5079), - [anon_sym_COLON_DASH] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1848] = { - [sym__heredoc_body_middle] = ACTIONS(2919), - [sym__heredoc_body_end] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), - [sym_comment] = ACTIONS(53), - }, - [1849] = { - [sym_concatenation] = STATE(2171), - [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), - [aux_sym_expansion_repeat1] = STATE(2171), - [anon_sym_RBRACE] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5085), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_COLON_QMARK] = ACTIONS(5085), - [anon_sym_COLON_DASH] = ACTIONS(5085), - [anon_sym_PERCENT] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1850] = { - [sym__concat] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [sym__special_characters] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), - [anon_sym_BQUOTE] = ACTIONS(2756), - [anon_sym_LT_LPAREN] = ACTIONS(2756), - [anon_sym_GT_LPAREN] = ACTIONS(2756), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2756), - }, - [1851] = { - [sym__concat] = ACTIONS(2770), - [anon_sym_RPAREN] = ACTIONS(2770), - [sym__special_characters] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2770), - [anon_sym_BQUOTE] = ACTIONS(2770), - [anon_sym_LT_LPAREN] = ACTIONS(2770), - [anon_sym_GT_LPAREN] = ACTIONS(2770), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2770), - }, - [1852] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), [anon_sym_RBRACE] = ACTIONS(5089), [sym_comment] = ACTIONS(53), }, - [1853] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), + [1790] = { + [anon_sym_RBRACE] = ACTIONS(5089), + [sym_comment] = ACTIONS(53), + }, + [1791] = { + [sym_concatenation] = STATE(2200), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2200), [anon_sym_RBRACE] = ACTIONS(5091), - [sym_comment] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(5093), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_COLON_QMARK] = ACTIONS(5093), + [anon_sym_COLON_DASH] = ACTIONS(5093), + [anon_sym_PERCENT] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(5093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1854] = { - [anon_sym_RBRACE] = ACTIONS(5091), - [sym_comment] = ACTIONS(53), + [1792] = { + [sym__concat] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4277), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym__string_content] = ACTIONS(4275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4277), + [sym_comment] = ACTIONS(179), }, - [1855] = { - [sym_concatenation] = STATE(2175), - [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), - [aux_sym_expansion_repeat1] = STATE(2175), - [anon_sym_RBRACE] = ACTIONS(5093), - [anon_sym_EQ] = ACTIONS(5095), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5097), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_COLON_QMARK] = ACTIONS(5095), - [anon_sym_COLON_DASH] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1793] = { + [sym_concatenation] = STATE(2202), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2202), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_EQ] = ACTIONS(5099), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5099), + [anon_sym_COLON_QMARK] = ACTIONS(5099), + [anon_sym_COLON_DASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1856] = { - [sym__concat] = ACTIONS(2852), - [anon_sym_RPAREN] = ACTIONS(2852), - [sym__special_characters] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2852), - [anon_sym_BQUOTE] = ACTIONS(2852), - [anon_sym_LT_LPAREN] = ACTIONS(2852), - [anon_sym_GT_LPAREN] = ACTIONS(2852), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2852), + [1794] = { + [sym__concat] = ACTIONS(4285), + [anon_sym_DQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym__string_content] = ACTIONS(4285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), + [anon_sym_BQUOTE] = ACTIONS(4287), + [sym_comment] = ACTIONS(179), }, - [1857] = { - [sym_concatenation] = STATE(2178), - [sym_string] = STATE(2177), - [sym_simple_expansion] = STATE(2177), - [sym_string_expansion] = STATE(2177), - [sym_expansion] = STATE(2177), - [sym_command_substitution] = STATE(2177), - [sym_process_substitution] = STATE(2177), - [anon_sym_RBRACE] = ACTIONS(5091), - [sym__special_characters] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(5101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5101), + [1795] = { + [sym_concatenation] = STATE(2204), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2204), + [anon_sym_RBRACE] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5105), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5105), + [anon_sym_COLON_QMARK] = ACTIONS(5105), + [anon_sym_COLON_DASH] = ACTIONS(5105), + [anon_sym_PERCENT] = ACTIONS(5105), + [anon_sym_DASH] = ACTIONS(5105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1858] = { - [sym__concat] = ACTIONS(2895), - [anon_sym_RPAREN] = ACTIONS(2895), - [sym__special_characters] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2895), - [anon_sym_BQUOTE] = ACTIONS(2895), - [anon_sym_LT_LPAREN] = ACTIONS(2895), - [anon_sym_GT_LPAREN] = ACTIONS(2895), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2895), + [1796] = { + [sym__concat] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym__string_content] = ACTIONS(4295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), + [anon_sym_BQUOTE] = ACTIONS(4297), + [sym_comment] = ACTIONS(179), }, - [1859] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5103), - }, - [1860] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5105), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1861] = { - [sym__concat] = ACTIONS(2903), - [anon_sym_RPAREN] = ACTIONS(2903), - [sym__special_characters] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2903), - [anon_sym_BQUOTE] = ACTIONS(2903), - [anon_sym_LT_LPAREN] = ACTIONS(2903), - [anon_sym_GT_LPAREN] = ACTIONS(2903), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2903), - }, - [1862] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5107), - }, - [1863] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), + [1797] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), [anon_sym_RBRACE] = ACTIONS(5109), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1864] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5111), + [1798] = { + [sym__concat] = ACTIONS(4301), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym__string_content] = ACTIONS(4301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), + [anon_sym_BQUOTE] = ACTIONS(4303), + [sym_comment] = ACTIONS(179), }, - [1865] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1799] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5111), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1866] = { - [sym_concatenation] = STATE(2185), - [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), - [aux_sym_expansion_repeat1] = STATE(2185), - [anon_sym_RBRACE] = ACTIONS(5113), + [1800] = { + [sym__concat] = ACTIONS(5113), + [anon_sym_RBRACE] = ACTIONS(3531), [anon_sym_EQ] = ACTIONS(5115), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [sym__special_characters] = ACTIONS(5115), + [anon_sym_DQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR] = ACTIONS(5115), + [sym_raw_string] = ACTIONS(3531), + [anon_sym_POUND] = ACTIONS(3531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3531), + [anon_sym_SLASH] = ACTIONS(3531), [anon_sym_COLON] = ACTIONS(5115), [anon_sym_COLON_QMARK] = ACTIONS(5115), [anon_sym_COLON_DASH] = ACTIONS(5115), [anon_sym_PERCENT] = ACTIONS(5115), [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3531), + [anon_sym_BQUOTE] = ACTIONS(3531), + [anon_sym_LT_LPAREN] = ACTIONS(3531), + [anon_sym_GT_LPAREN] = ACTIONS(3531), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5115), }, - [1867] = { - [sym__concat] = ACTIONS(2919), - [anon_sym_RPAREN] = ACTIONS(2919), - [sym__special_characters] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2919), - [anon_sym_BQUOTE] = ACTIONS(2919), - [anon_sym_LT_LPAREN] = ACTIONS(2919), - [anon_sym_GT_LPAREN] = ACTIONS(2919), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2919), + [1801] = { + [anon_sym_RBRACE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(5115), + [sym__special_characters] = ACTIONS(5115), + [anon_sym_DQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR] = ACTIONS(5115), + [sym_raw_string] = ACTIONS(3531), + [anon_sym_POUND] = ACTIONS(3531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3531), + [anon_sym_SLASH] = ACTIONS(3531), + [anon_sym_COLON] = ACTIONS(5115), + [anon_sym_COLON_QMARK] = ACTIONS(5115), + [anon_sym_COLON_DASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3531), + [anon_sym_BQUOTE] = ACTIONS(3531), + [anon_sym_LT_LPAREN] = ACTIONS(3531), + [anon_sym_GT_LPAREN] = ACTIONS(3531), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5115), }, - [1868] = { - [sym_concatenation] = STATE(2187), - [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), - [aux_sym_expansion_repeat1] = STATE(2187), - [anon_sym_RBRACE] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5121), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_COLON_QMARK] = ACTIONS(5121), - [anon_sym_COLON_DASH] = ACTIONS(5121), - [anon_sym_PERCENT] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1802] = { + [sym__concat] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(5119), + [sym__special_characters] = ACTIONS(5119), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(5119), + [sym_raw_string] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(3535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3535), + [anon_sym_SLASH] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(5119), + [anon_sym_COLON_QMARK] = ACTIONS(5119), + [anon_sym_COLON_DASH] = ACTIONS(5119), + [anon_sym_PERCENT] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3535), + [anon_sym_BQUOTE] = ACTIONS(3535), + [anon_sym_LT_LPAREN] = ACTIONS(3535), + [anon_sym_GT_LPAREN] = ACTIONS(3535), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5119), }, - [1869] = { - [sym_file_descriptor] = ACTIONS(3905), - [sym__concat] = ACTIONS(3905), - [sym_variable_name] = ACTIONS(3905), - [anon_sym_esac] = ACTIONS(3907), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3907), - [anon_sym_SEMI_SEMI] = ACTIONS(3907), - [anon_sym_PIPE_AMP] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_AMP_GT] = ACTIONS(3907), - [anon_sym_AMP_GT_GT] = ACTIONS(3907), - [anon_sym_LT_AMP] = ACTIONS(3907), - [anon_sym_GT_AMP] = ACTIONS(3907), - [sym__special_characters] = ACTIONS(3907), - [anon_sym_DQUOTE] = ACTIONS(3907), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), - [anon_sym_BQUOTE] = ACTIONS(3907), - [anon_sym_LT_LPAREN] = ACTIONS(3907), - [anon_sym_GT_LPAREN] = ACTIONS(3907), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3907), - [anon_sym_SEMI] = ACTIONS(3907), - [anon_sym_LF] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3907), + [1803] = { + [anon_sym_RBRACE] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(5119), + [sym__special_characters] = ACTIONS(5119), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(5119), + [sym_raw_string] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(3535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3535), + [anon_sym_SLASH] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(5119), + [anon_sym_COLON_QMARK] = ACTIONS(5119), + [anon_sym_COLON_DASH] = ACTIONS(5119), + [anon_sym_PERCENT] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3535), + [anon_sym_BQUOTE] = ACTIONS(3535), + [anon_sym_LT_LPAREN] = ACTIONS(3535), + [anon_sym_GT_LPAREN] = ACTIONS(3535), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5119), }, - [1870] = { - [sym_file_descriptor] = ACTIONS(3913), - [sym__concat] = ACTIONS(3913), - [sym_variable_name] = ACTIONS(3913), - [anon_sym_esac] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_AMP_GT] = ACTIONS(3915), - [anon_sym_AMP_GT_GT] = ACTIONS(3915), - [anon_sym_LT_AMP] = ACTIONS(3915), - [anon_sym_GT_AMP] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3915), - }, - [1871] = { - [sym_file_descriptor] = ACTIONS(4000), - [sym__concat] = ACTIONS(4000), - [sym_variable_name] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4002), - [anon_sym_SEMI_SEMI] = ACTIONS(4002), - [anon_sym_PIPE_AMP] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_LT] = ACTIONS(4002), - [anon_sym_GT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4002), - [anon_sym_AMP_GT] = ACTIONS(4002), - [anon_sym_AMP_GT_GT] = ACTIONS(4002), - [anon_sym_LT_AMP] = ACTIONS(4002), - [anon_sym_GT_AMP] = ACTIONS(4002), - [sym__special_characters] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4002), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), - [anon_sym_BQUOTE] = ACTIONS(4002), - [anon_sym_LT_LPAREN] = ACTIONS(4002), - [anon_sym_GT_LPAREN] = ACTIONS(4002), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_LF] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4002), - }, - [1872] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5125), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1873] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5127), + [1804] = { + [sym__concat] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), [sym_comment] = ACTIONS(53), }, - [1874] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5129), + [1805] = { + [aux_sym_concatenation_repeat1] = STATE(1805), + [sym__concat] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(1754), [sym_comment] = ACTIONS(53), }, - [1875] = { - [anon_sym_RBRACE] = ACTIONS(5129), + [1806] = { + [sym__concat] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), [sym_comment] = ACTIONS(53), }, - [1876] = { - [sym_concatenation] = STATE(2192), - [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), - [aux_sym_expansion_repeat1] = STATE(2192), - [anon_sym_RBRACE] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5133), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5133), - [anon_sym_COLON_QMARK] = ACTIONS(5133), - [anon_sym_COLON_DASH] = ACTIONS(5133), - [anon_sym_PERCENT] = ACTIONS(5133), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1807] = { + [anon_sym_DQUOTE] = ACTIONS(5124), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, - [1877] = { - [sym_file_descriptor] = ACTIONS(4016), - [sym__concat] = ACTIONS(4016), - [sym_variable_name] = ACTIONS(4016), - [anon_sym_esac] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_SEMI_SEMI] = ACTIONS(4018), - [anon_sym_PIPE_AMP] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4018), - [anon_sym_AMP_GT] = ACTIONS(4018), - [anon_sym_AMP_GT_GT] = ACTIONS(4018), - [anon_sym_LT_AMP] = ACTIONS(4018), - [anon_sym_GT_AMP] = ACTIONS(4018), - [sym__special_characters] = ACTIONS(4018), - [anon_sym_DQUOTE] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym_raw_string] = ACTIONS(4018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), - [anon_sym_BQUOTE] = ACTIONS(4018), - [anon_sym_LT_LPAREN] = ACTIONS(4018), - [anon_sym_GT_LPAREN] = ACTIONS(4018), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4018), + [1808] = { + [sym_concatenation] = STATE(2213), + [sym_string] = STATE(2212), + [sym_simple_expansion] = STATE(2212), + [sym_string_expansion] = STATE(2212), + [sym_expansion] = STATE(2212), + [sym_command_substitution] = STATE(2212), + [sym_process_substitution] = STATE(2212), + [anon_sym_RBRACE] = ACTIONS(5126), + [sym__special_characters] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(5130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5130), }, - [1878] = { - [sym_concatenation] = STATE(2194), - [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), - [aux_sym_expansion_repeat1] = STATE(2194), - [anon_sym_RBRACE] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5139), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5141), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_COLON_QMARK] = ACTIONS(5139), - [anon_sym_COLON_DASH] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1809] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [sym_comment] = ACTIONS(53), }, - [1879] = { - [sym_file_descriptor] = ACTIONS(4026), - [sym__concat] = ACTIONS(4026), - [sym_variable_name] = ACTIONS(4026), - [anon_sym_esac] = ACTIONS(4028), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_RPAREN] = ACTIONS(4028), - [anon_sym_SEMI_SEMI] = ACTIONS(4028), - [anon_sym_PIPE_AMP] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_PIPE_PIPE] = ACTIONS(4028), - [anon_sym_LT] = ACTIONS(4028), - [anon_sym_GT] = ACTIONS(4028), - [anon_sym_GT_GT] = ACTIONS(4028), - [anon_sym_AMP_GT] = ACTIONS(4028), - [anon_sym_AMP_GT_GT] = ACTIONS(4028), - [anon_sym_LT_AMP] = ACTIONS(4028), - [anon_sym_GT_AMP] = ACTIONS(4028), - [sym__special_characters] = ACTIONS(4028), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), - [anon_sym_BQUOTE] = ACTIONS(4028), - [anon_sym_LT_LPAREN] = ACTIONS(4028), - [anon_sym_GT_LPAREN] = ACTIONS(4028), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4028), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym_LF] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4028), + [1810] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5132), }, - [1880] = { - [sym_concatenation] = STATE(2196), - [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), - [aux_sym_expansion_repeat1] = STATE(2196), - [anon_sym_RBRACE] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5145), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5145), - [anon_sym_COLON_QMARK] = ACTIONS(5145), - [anon_sym_COLON_DASH] = ACTIONS(5145), - [anon_sym_PERCENT] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1811] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1881] = { - [sym_file_descriptor] = ACTIONS(4036), - [sym__concat] = ACTIONS(4036), - [sym_variable_name] = ACTIONS(4036), - [anon_sym_esac] = ACTIONS(4038), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_RPAREN] = ACTIONS(4038), - [anon_sym_SEMI_SEMI] = ACTIONS(4038), - [anon_sym_PIPE_AMP] = ACTIONS(4038), - [anon_sym_AMP_AMP] = ACTIONS(4038), - [anon_sym_PIPE_PIPE] = ACTIONS(4038), - [anon_sym_LT] = ACTIONS(4038), - [anon_sym_GT] = ACTIONS(4038), - [anon_sym_GT_GT] = ACTIONS(4038), - [anon_sym_AMP_GT] = ACTIONS(4038), - [anon_sym_AMP_GT_GT] = ACTIONS(4038), - [anon_sym_LT_AMP] = ACTIONS(4038), - [anon_sym_GT_AMP] = ACTIONS(4038), - [sym__special_characters] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4038), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), - [anon_sym_BQUOTE] = ACTIONS(4038), - [anon_sym_LT_LPAREN] = ACTIONS(4038), - [anon_sym_GT_LPAREN] = ACTIONS(4038), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4038), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4038), + [1812] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(5136), + [sym_comment] = ACTIONS(53), }, - [1882] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5149), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1813] = { + [sym_concatenation] = STATE(2219), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2219), + [anon_sym_RBRACE] = ACTIONS(5138), + [anon_sym_EQ] = ACTIONS(5140), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_COLON] = ACTIONS(5140), + [anon_sym_COLON_QMARK] = ACTIONS(5140), + [anon_sym_COLON_DASH] = ACTIONS(5140), + [anon_sym_PERCENT] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1883] = { - [sym_file_descriptor] = ACTIONS(4042), - [sym__concat] = ACTIONS(4042), - [sym_variable_name] = ACTIONS(4042), - [anon_sym_esac] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [anon_sym_LT] = ACTIONS(4044), - [anon_sym_GT] = ACTIONS(4044), - [anon_sym_GT_GT] = ACTIONS(4044), - [anon_sym_AMP_GT] = ACTIONS(4044), - [anon_sym_AMP_GT_GT] = ACTIONS(4044), - [anon_sym_LT_AMP] = ACTIONS(4044), - [anon_sym_GT_AMP] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4044), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4044), + [1814] = { + [sym_concatenation] = STATE(2222), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2222), + [anon_sym_RBRACE] = ACTIONS(5146), + [anon_sym_EQ] = ACTIONS(5148), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5148), + [anon_sym_COLON_QMARK] = ACTIONS(5148), + [anon_sym_COLON_DASH] = ACTIONS(5148), + [anon_sym_PERCENT] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1884] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [1815] = { + [sym_concatenation] = STATE(2224), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2224), + [anon_sym_RBRACE] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5154), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(5158), + [anon_sym_COLON] = ACTIONS(5154), + [anon_sym_COLON_QMARK] = ACTIONS(5154), + [anon_sym_COLON_DASH] = ACTIONS(5154), + [anon_sym_PERCENT] = ACTIONS(5154), + [anon_sym_DASH] = ACTIONS(5154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, - [1885] = { - [sym__terminated_statement] = STATE(1064), + [1816] = { + [sym__concat] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [sym_comment] = ACTIONS(53), + }, + [1817] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5160), + }, + [1818] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1819] = { + [sym__concat] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [sym_comment] = ACTIONS(53), + }, + [1820] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5164), + }, + [1821] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1822] = { + [sym__concat] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [sym_comment] = ACTIONS(53), + }, + [1823] = { + [sym__concat] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [sym_comment] = ACTIONS(53), + }, + [1824] = { + [sym__concat] = ACTIONS(2920), + [anon_sym_RBRACE] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [sym__special_characters] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(2920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2920), + [anon_sym_COLON] = ACTIONS(2922), + [anon_sym_COLON_QMARK] = ACTIONS(2922), + [anon_sym_COLON_DASH] = ACTIONS(2922), + [anon_sym_PERCENT] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2920), + [anon_sym_BQUOTE] = ACTIONS(2920), + [anon_sym_LT_LPAREN] = ACTIONS(2920), + [anon_sym_GT_LPAREN] = ACTIONS(2920), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2922), + }, + [1825] = { + [sym__concat] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_EQ] = 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_DASH] = 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(179), + [sym_word] = ACTIONS(2936), + }, + [1826] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5166), + [sym_comment] = ACTIONS(53), + }, + [1827] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5168), + [sym_comment] = ACTIONS(53), + }, + [1828] = { + [anon_sym_RBRACE] = ACTIONS(5168), + [sym_comment] = ACTIONS(53), + }, + [1829] = { + [sym_concatenation] = STATE(2231), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2231), + [anon_sym_RBRACE] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5172), + [anon_sym_COLON_QMARK] = ACTIONS(5172), + [anon_sym_COLON_DASH] = ACTIONS(5172), + [anon_sym_PERCENT] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1830] = { + [sym__concat] = ACTIONS(3016), + [anon_sym_RBRACE] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(3018), + [sym__special_characters] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3016), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3016), + [anon_sym_POUND] = ACTIONS(3016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), + [anon_sym_COLON] = ACTIONS(3018), + [anon_sym_COLON_QMARK] = ACTIONS(3018), + [anon_sym_COLON_DASH] = ACTIONS(3018), + [anon_sym_PERCENT] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3016), + [anon_sym_BQUOTE] = ACTIONS(3016), + [anon_sym_LT_LPAREN] = ACTIONS(3016), + [anon_sym_GT_LPAREN] = ACTIONS(3016), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3018), + }, + [1831] = { + [sym_concatenation] = STATE(2234), + [sym_string] = STATE(2233), + [sym_simple_expansion] = STATE(2233), + [sym_string_expansion] = STATE(2233), + [sym_expansion] = STATE(2233), + [sym_command_substitution] = STATE(2233), + [sym_process_substitution] = STATE(2233), + [anon_sym_RBRACE] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5176), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(5178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5178), + }, + [1832] = { + [sym__concat] = ACTIONS(3059), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_EQ] = ACTIONS(3061), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3059), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3059), + [anon_sym_POUND] = ACTIONS(3059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), + [anon_sym_COLON] = ACTIONS(3061), + [anon_sym_COLON_QMARK] = ACTIONS(3061), + [anon_sym_COLON_DASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3059), + [anon_sym_BQUOTE] = ACTIONS(3059), + [anon_sym_LT_LPAREN] = ACTIONS(3059), + [anon_sym_GT_LPAREN] = ACTIONS(3059), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3061), + }, + [1833] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5180), + }, + [1834] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1835] = { + [sym__concat] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_EQ] = ACTIONS(3069), + [sym__special_characters] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3067), + [anon_sym_POUND] = ACTIONS(3067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_COLON_QMARK] = ACTIONS(3069), + [anon_sym_COLON_DASH] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), + [anon_sym_BQUOTE] = ACTIONS(3067), + [anon_sym_LT_LPAREN] = ACTIONS(3067), + [anon_sym_GT_LPAREN] = ACTIONS(3067), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3069), + }, + [1836] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5184), + }, + [1837] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1838] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5188), + }, + [1839] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1840] = { + [sym_concatenation] = STATE(2241), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2241), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_EQ] = ACTIONS(5192), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5192), + [anon_sym_COLON_QMARK] = ACTIONS(5192), + [anon_sym_COLON_DASH] = ACTIONS(5192), + [anon_sym_PERCENT] = ACTIONS(5192), + [anon_sym_DASH] = ACTIONS(5192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1841] = { + [sym__concat] = ACTIONS(3083), + [anon_sym_RBRACE] = ACTIONS(3083), + [anon_sym_EQ] = ACTIONS(3085), + [sym__special_characters] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3083), + [anon_sym_POUND] = ACTIONS(3083), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_COLON_QMARK] = ACTIONS(3085), + [anon_sym_COLON_DASH] = ACTIONS(3085), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), + [anon_sym_BQUOTE] = ACTIONS(3083), + [anon_sym_LT_LPAREN] = ACTIONS(3083), + [anon_sym_GT_LPAREN] = ACTIONS(3083), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3085), + }, + [1842] = { + [sym_concatenation] = STATE(2243), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2243), + [anon_sym_RBRACE] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5198), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5200), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_COLON_QMARK] = ACTIONS(5198), + [anon_sym_COLON_DASH] = ACTIONS(5198), + [anon_sym_PERCENT] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1843] = { + [sym__simple_heredoc_body] = ACTIONS(5202), + [sym__heredoc_body_beginning] = ACTIONS(5202), + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [anon_sym_esac] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5204), + [anon_sym_PIPE_AMP] = ACTIONS(5204), + [anon_sym_AMP_AMP] = ACTIONS(5204), + [anon_sym_PIPE_PIPE] = ACTIONS(5204), + [anon_sym_EQ_TILDE] = ACTIONS(5204), + [anon_sym_EQ_EQ] = ACTIONS(5204), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5204), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5204), + [anon_sym_LT_AMP] = ACTIONS(5204), + [anon_sym_GT_AMP] = ACTIONS(5204), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_LT_LT_DASH] = ACTIONS(5204), + [anon_sym_LT_LT_LT] = ACTIONS(5204), + [sym__special_characters] = ACTIONS(5204), + [anon_sym_DQUOTE] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), + [anon_sym_BQUOTE] = ACTIONS(5204), + [anon_sym_LT_LPAREN] = ACTIONS(5204), + [anon_sym_GT_LPAREN] = ACTIONS(5204), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + }, + [1844] = { + [sym__simple_heredoc_body] = ACTIONS(5206), + [sym__heredoc_body_beginning] = ACTIONS(5206), + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [anon_sym_esac] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5208), + [anon_sym_PIPE_AMP] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [anon_sym_EQ_TILDE] = ACTIONS(5208), + [anon_sym_EQ_EQ] = ACTIONS(5208), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5208), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5208), + [anon_sym_LT_AMP] = ACTIONS(5208), + [anon_sym_GT_AMP] = ACTIONS(5208), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_LT_LT_DASH] = ACTIONS(5208), + [anon_sym_LT_LT_LT] = ACTIONS(5208), + [sym__special_characters] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), + [anon_sym_BQUOTE] = ACTIONS(5208), + [anon_sym_LT_LPAREN] = ACTIONS(5208), + [anon_sym_GT_LPAREN] = ACTIONS(5208), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + }, + [1845] = { + [sym__simple_heredoc_body] = ACTIONS(5210), + [sym__heredoc_body_beginning] = ACTIONS(5210), + [sym_file_descriptor] = ACTIONS(5210), + [sym__concat] = ACTIONS(5210), + [anon_sym_esac] = ACTIONS(5212), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5212), + [anon_sym_SEMI_SEMI] = ACTIONS(5212), + [anon_sym_PIPE_AMP] = ACTIONS(5212), + [anon_sym_AMP_AMP] = ACTIONS(5212), + [anon_sym_PIPE_PIPE] = ACTIONS(5212), + [anon_sym_EQ_TILDE] = ACTIONS(5212), + [anon_sym_EQ_EQ] = ACTIONS(5212), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), + [anon_sym_AMP_GT] = ACTIONS(5212), + [anon_sym_AMP_GT_GT] = ACTIONS(5212), + [anon_sym_LT_AMP] = ACTIONS(5212), + [anon_sym_GT_AMP] = ACTIONS(5212), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_LT_LT_DASH] = ACTIONS(5212), + [anon_sym_LT_LT_LT] = ACTIONS(5212), + [sym__special_characters] = ACTIONS(5212), + [anon_sym_DQUOTE] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), + [anon_sym_BQUOTE] = ACTIONS(5212), + [anon_sym_LT_LPAREN] = ACTIONS(5212), + [anon_sym_GT_LPAREN] = ACTIONS(5212), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5212), + [anon_sym_SEMI] = ACTIONS(5212), + [anon_sym_LF] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5212), + }, + [1846] = { + [sym__simple_heredoc_body] = ACTIONS(5214), + [sym__heredoc_body_beginning] = ACTIONS(5214), + [sym_file_descriptor] = ACTIONS(5214), + [sym__concat] = ACTIONS(5214), + [anon_sym_esac] = ACTIONS(5216), + [anon_sym_PIPE] = ACTIONS(5216), + [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(5216), + [anon_sym_EQ_EQ] = ACTIONS(5216), + [anon_sym_LT] = ACTIONS(5216), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5216), + [anon_sym_AMP_GT] = ACTIONS(5216), + [anon_sym_AMP_GT_GT] = ACTIONS(5216), + [anon_sym_LT_AMP] = ACTIONS(5216), + [anon_sym_GT_AMP] = ACTIONS(5216), + [anon_sym_LT_LT] = ACTIONS(5216), + [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(5216), + [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(179), + [sym_word] = ACTIONS(5216), + [anon_sym_SEMI] = ACTIONS(5216), + [anon_sym_LF] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5216), + }, + [1847] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1848] = { + [sym__simple_heredoc_body] = ACTIONS(5220), + [sym__heredoc_body_beginning] = ACTIONS(5220), + [sym_file_descriptor] = ACTIONS(5220), + [sym__concat] = ACTIONS(5220), + [anon_sym_esac] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_SEMI_SEMI] = ACTIONS(5222), + [anon_sym_PIPE_AMP] = ACTIONS(5222), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [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(5222), + [anon_sym_AMP_GT] = ACTIONS(5222), + [anon_sym_AMP_GT_GT] = ACTIONS(5222), + [anon_sym_LT_AMP] = ACTIONS(5222), + [anon_sym_GT_AMP] = ACTIONS(5222), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_LT_LT_DASH] = ACTIONS(5222), + [anon_sym_LT_LT_LT] = ACTIONS(5222), + [sym__special_characters] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5222), + [sym_raw_string] = ACTIONS(5222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), + [anon_sym_BQUOTE] = ACTIONS(5222), + [anon_sym_LT_LPAREN] = ACTIONS(5222), + [anon_sym_GT_LPAREN] = ACTIONS(5222), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LF] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5222), + }, + [1849] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1850] = { + [sym__simple_heredoc_body] = ACTIONS(5226), + [sym__heredoc_body_beginning] = ACTIONS(5226), + [sym_file_descriptor] = ACTIONS(5226), + [sym__concat] = ACTIONS(5226), + [anon_sym_esac] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5228), + [anon_sym_SEMI_SEMI] = ACTIONS(5228), + [anon_sym_PIPE_AMP] = ACTIONS(5228), + [anon_sym_AMP_AMP] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5228), + [anon_sym_EQ_TILDE] = ACTIONS(5228), + [anon_sym_EQ_EQ] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_AMP_GT] = ACTIONS(5228), + [anon_sym_AMP_GT_GT] = ACTIONS(5228), + [anon_sym_LT_AMP] = ACTIONS(5228), + [anon_sym_GT_AMP] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5228), + [anon_sym_LT_LT_DASH] = ACTIONS(5228), + [anon_sym_LT_LT_LT] = ACTIONS(5228), + [sym__special_characters] = ACTIONS(5228), + [anon_sym_DQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), + [anon_sym_BQUOTE] = ACTIONS(5228), + [anon_sym_LT_LPAREN] = ACTIONS(5228), + [anon_sym_GT_LPAREN] = ACTIONS(5228), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(5228), + [anon_sym_LF] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), + }, + [1851] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1852] = { + [sym__simple_heredoc_body] = ACTIONS(5232), + [sym__heredoc_body_beginning] = ACTIONS(5232), + [sym_file_descriptor] = ACTIONS(5232), + [sym__concat] = ACTIONS(5232), + [anon_sym_esac] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_SEMI_SEMI] = ACTIONS(5234), + [anon_sym_PIPE_AMP] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_EQ_TILDE] = ACTIONS(5234), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_GT] = ACTIONS(5234), + [anon_sym_AMP_GT] = ACTIONS(5234), + [anon_sym_AMP_GT_GT] = ACTIONS(5234), + [anon_sym_LT_AMP] = ACTIONS(5234), + [anon_sym_GT_AMP] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5234), + [anon_sym_LT_LT_DASH] = ACTIONS(5234), + [anon_sym_LT_LT_LT] = ACTIONS(5234), + [sym__special_characters] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), + [anon_sym_BQUOTE] = ACTIONS(5234), + [anon_sym_LT_LPAREN] = ACTIONS(5234), + [anon_sym_GT_LPAREN] = ACTIONS(5234), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5234), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LF] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5234), + }, + [1853] = { + [sym__simple_heredoc_body] = ACTIONS(5236), + [sym__heredoc_body_beginning] = ACTIONS(5236), + [sym_file_descriptor] = ACTIONS(5236), + [sym__concat] = ACTIONS(5236), + [anon_sym_esac] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_SEMI_SEMI] = ACTIONS(5238), + [anon_sym_PIPE_AMP] = ACTIONS(5238), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [anon_sym_EQ_TILDE] = ACTIONS(5238), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_AMP_GT] = ACTIONS(5238), + [anon_sym_AMP_GT_GT] = ACTIONS(5238), + [anon_sym_LT_AMP] = ACTIONS(5238), + [anon_sym_GT_AMP] = ACTIONS(5238), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_LT_LT_DASH] = ACTIONS(5238), + [anon_sym_LT_LT_LT] = ACTIONS(5238), + [sym__special_characters] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), + [anon_sym_BQUOTE] = ACTIONS(5238), + [anon_sym_LT_LPAREN] = ACTIONS(5238), + [anon_sym_GT_LPAREN] = ACTIONS(5238), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LF] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), + }, + [1854] = { + [aux_sym_concatenation_repeat1] = STATE(1854), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(2831), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1754), + [anon_sym_LT_AMP] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1754), + }, + [1855] = { + [sym_do_group] = STATE(2248), + [sym_compound_statement] = STATE(2248), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(5240), + [sym_comment] = ACTIONS(53), + }, + [1856] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(5242), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_EQ_TILDE] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3688), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3684), + }, + [1857] = { + [sym__expression] = STATE(2250), + [sym_binary_expression] = STATE(2250), + [sym_unary_expression] = STATE(2250), + [sym_parenthesized_expression] = STATE(2250), + [sym_concatenation] = STATE(2250), + [sym_string] = STATE(1102), + [sym_simple_expansion] = STATE(1102), + [sym_string_expansion] = STATE(1102), + [sym_expansion] = STATE(1102), + [sym_command_substitution] = STATE(1102), + [sym_process_substitution] = STATE(1102), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5242), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [sym__special_characters] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [sym_raw_string] = ACTIONS(2347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), + [anon_sym_BQUOTE] = ACTIONS(2353), + [anon_sym_LT_LPAREN] = ACTIONS(2355), + [anon_sym_GT_LPAREN] = ACTIONS(2355), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2357), + [sym_test_operator] = ACTIONS(2359), + }, + [1858] = { + [anon_sym_SEMI_SEMI] = ACTIONS(5244), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5244), + [anon_sym_LF] = ACTIONS(5246), + [anon_sym_AMP] = ACTIONS(5244), + }, + [1859] = { + [sym_do_group] = STATE(2252), + [anon_sym_do] = ACTIONS(3101), + [sym_comment] = ACTIONS(53), + }, + [1860] = { + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_RPAREN] = ACTIONS(2439), + [anon_sym_PIPE_AMP] = ACTIONS(2439), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_PIPE_PIPE] = ACTIONS(2439), + [anon_sym_BQUOTE] = ACTIONS(2439), + [sym_comment] = ACTIONS(53), + }, + [1861] = { + [sym__terminated_statement] = STATE(1139), [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), [sym_case_statement] = STATE(26), @@ -50010,24 +50560,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1064), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_program_repeat1] = STATE(1139), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(5248), [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(5153), - [anon_sym_elif] = ACTIONS(5153), - [anon_sym_else] = ACTIONS(5153), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -50060,47 +50608,4057 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, + [1862] = { + [sym__simple_heredoc_body] = ACTIONS(3767), + [sym__heredoc_body_beginning] = ACTIONS(3767), + [sym_file_descriptor] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_RPAREN] = ACTIONS(3767), + [anon_sym_PIPE_AMP] = ACTIONS(3767), + [anon_sym_AMP_AMP] = ACTIONS(3767), + [anon_sym_PIPE_PIPE] = ACTIONS(3767), + [anon_sym_LT] = ACTIONS(3769), + [anon_sym_GT] = ACTIONS(3769), + [anon_sym_GT_GT] = ACTIONS(3767), + [anon_sym_AMP_GT] = ACTIONS(3769), + [anon_sym_AMP_GT_GT] = ACTIONS(3767), + [anon_sym_LT_AMP] = ACTIONS(3767), + [anon_sym_GT_AMP] = ACTIONS(3767), + [anon_sym_LT_LT] = ACTIONS(3769), + [anon_sym_LT_LT_DASH] = ACTIONS(3767), + [anon_sym_LT_LT_LT] = ACTIONS(3767), + [anon_sym_BQUOTE] = ACTIONS(3767), + [sym_comment] = ACTIONS(53), + }, + [1863] = { + [anon_sym_PIPE] = ACTIONS(3773), + [anon_sym_RPAREN] = ACTIONS(3775), + [anon_sym_PIPE_AMP] = ACTIONS(3775), + [anon_sym_AMP_AMP] = ACTIONS(3775), + [anon_sym_PIPE_PIPE] = ACTIONS(3775), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_comment] = ACTIONS(53), + }, + [1864] = { + [anon_sym_PIPE] = ACTIONS(3781), + [anon_sym_RPAREN] = ACTIONS(3783), + [anon_sym_PIPE_AMP] = ACTIONS(3783), + [anon_sym_AMP_AMP] = ACTIONS(3783), + [anon_sym_PIPE_PIPE] = ACTIONS(3783), + [anon_sym_BQUOTE] = ACTIONS(3783), + [sym_comment] = ACTIONS(53), + }, + [1865] = { + [anon_sym_fi] = ACTIONS(5250), + [sym_comment] = ACTIONS(53), + }, + [1866] = { + [sym_elif_clause] = STATE(1147), + [sym_else_clause] = STATE(2255), + [aux_sym_if_statement_repeat1] = STATE(1147), + [anon_sym_fi] = ACTIONS(5250), + [anon_sym_elif] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2461), + [sym_comment] = ACTIONS(53), + }, + [1867] = { + [anon_sym_PIPE] = ACTIONS(3792), + [anon_sym_RPAREN] = ACTIONS(3794), + [anon_sym_PIPE_AMP] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BQUOTE] = ACTIONS(3794), + [sym_comment] = ACTIONS(53), + }, + [1868] = { + [anon_sym_esac] = ACTIONS(5252), + [sym_comment] = ACTIONS(53), + }, + [1869] = { + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(2257), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1640), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2467), + }, + [1870] = { + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(2257), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(2259), + [anon_sym_esac] = ACTIONS(5254), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2469), + }, + [1871] = { + [anon_sym_PIPE] = ACTIONS(3810), + [anon_sym_RPAREN] = ACTIONS(3812), + [anon_sym_PIPE_AMP] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3812), + [anon_sym_BQUOTE] = ACTIONS(3812), + [sym_comment] = ACTIONS(53), + }, + [1872] = { + [anon_sym_esac] = ACTIONS(5256), + [sym_comment] = ACTIONS(53), + }, + [1873] = { + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(2261), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1640), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2467), + }, + [1874] = { + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(2261), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(2263), + [anon_sym_esac] = ACTIONS(5258), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2469), + }, + [1875] = { + [sym_file_redirect] = STATE(2264), + [sym_file_descriptor] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(3854), + [anon_sym_RPAREN] = ACTIONS(3856), + [anon_sym_PIPE_AMP] = ACTIONS(3856), + [anon_sym_AMP_AMP] = ACTIONS(3856), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_GT_GT] = ACTIONS(3127), + [anon_sym_AMP_GT] = ACTIONS(3125), + [anon_sym_AMP_GT_GT] = ACTIONS(3127), + [anon_sym_LT_AMP] = ACTIONS(3127), + [anon_sym_GT_AMP] = ACTIONS(3127), + [sym_comment] = ACTIONS(53), + }, + [1876] = { + [sym_file_descriptor] = ACTIONS(3858), + [anon_sym_PIPE] = ACTIONS(3860), + [anon_sym_RPAREN] = ACTIONS(3858), + [anon_sym_PIPE_AMP] = ACTIONS(3858), + [anon_sym_AMP_AMP] = ACTIONS(3858), + [anon_sym_PIPE_PIPE] = ACTIONS(3858), + [anon_sym_LT] = ACTIONS(3860), + [anon_sym_GT] = ACTIONS(3860), + [anon_sym_GT_GT] = ACTIONS(3858), + [anon_sym_AMP_GT] = ACTIONS(3860), + [anon_sym_AMP_GT_GT] = ACTIONS(3858), + [anon_sym_LT_AMP] = ACTIONS(3858), + [anon_sym_GT_AMP] = ACTIONS(3858), + [anon_sym_BQUOTE] = ACTIONS(3858), + [sym_comment] = ACTIONS(53), + }, + [1877] = { + [sym_concatenation] = STATE(2267), + [sym_string] = STATE(2266), + [sym_simple_expansion] = STATE(2266), + [sym_string_expansion] = STATE(2266), + [sym_expansion] = STATE(2266), + [sym_command_substitution] = STATE(2266), + [sym_process_substitution] = STATE(2266), + [sym__special_characters] = ACTIONS(5260), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(871), + [sym_raw_string] = ACTIONS(5262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), + [anon_sym_BQUOTE] = ACTIONS(879), + [anon_sym_LT_LPAREN] = ACTIONS(881), + [anon_sym_GT_LPAREN] = ACTIONS(881), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5262), + }, + [1878] = { + [aux_sym_concatenation_repeat1] = STATE(2268), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(697), + [anon_sym_PIPE_AMP] = ACTIONS(697), + [anon_sym_AMP_AMP] = ACTIONS(697), + [anon_sym_PIPE_PIPE] = ACTIONS(697), + [sym_comment] = ACTIONS(53), + }, + [1879] = { + [aux_sym_concatenation_repeat1] = STATE(2268), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [sym_comment] = ACTIONS(53), + }, + [1880] = { + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_comment] = ACTIONS(53), + }, + [1881] = { + [anon_sym_PIPE] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3888), + [anon_sym_PIPE_AMP] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BQUOTE] = ACTIONS(3888), + [sym_comment] = ACTIONS(53), + }, + [1882] = { + [sym_concatenation] = STATE(2271), + [sym_string] = STATE(2270), + [sym_simple_expansion] = STATE(2270), + [sym_string_expansion] = STATE(2270), + [sym_expansion] = STATE(2270), + [sym_command_substitution] = STATE(2270), + [sym_process_substitution] = STATE(2270), + [sym__special_characters] = ACTIONS(5264), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4357), + [sym_raw_string] = ACTIONS(5266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4365), + [anon_sym_LT_LPAREN] = ACTIONS(4367), + [anon_sym_GT_LPAREN] = ACTIONS(4367), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5266), + }, + [1883] = { + [aux_sym_concatenation_repeat1] = STATE(2273), + [sym_file_descriptor] = ACTIONS(697), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(697), + [anon_sym_PIPE_AMP] = ACTIONS(697), + [anon_sym_AMP_AMP] = ACTIONS(697), + [anon_sym_PIPE_PIPE] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(697), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(697), + [anon_sym_LT_AMP] = ACTIONS(697), + [anon_sym_GT_AMP] = ACTIONS(697), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(697), + [anon_sym_LT_LT_LT] = ACTIONS(697), + [sym_comment] = ACTIONS(53), + }, + [1884] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(2276), + [anon_sym_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR] = ACTIONS(5272), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [1885] = { + [sym_string] = STATE(2278), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(5274), + [sym_raw_string] = ACTIONS(5276), + [anon_sym_POUND] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5274), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5278), + [anon_sym_STAR] = ACTIONS(5274), + [anon_sym_AT] = ACTIONS(5274), + [anon_sym_QMARK] = ACTIONS(5274), + [anon_sym_0] = ACTIONS(5280), + [anon_sym__] = ACTIONS(5280), + }, [1886] = { - [anon_sym_esac] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [anon_sym_SEMI_SEMI] = ACTIONS(5155), - [anon_sym_PIPE_AMP] = ACTIONS(5155), - [anon_sym_AMP_AMP] = ACTIONS(5155), - [anon_sym_PIPE_PIPE] = ACTIONS(5155), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_LF] = ACTIONS(5157), - [anon_sym_AMP] = ACTIONS(5155), + [aux_sym_concatenation_repeat1] = STATE(2273), + [sym_file_descriptor] = ACTIONS(715), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(715), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(715), + [anon_sym_LT_AMP] = ACTIONS(715), + [anon_sym_GT_AMP] = ACTIONS(715), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(715), + [anon_sym_LT_LT_LT] = ACTIONS(715), + [sym_comment] = ACTIONS(53), }, [1887] = { - [aux_sym_concatenation_repeat1] = STATE(1503), - [sym__concat] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym_comment] = ACTIONS(53), + [sym_subscript] = STATE(2284), + [sym_variable_name] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5284), + [anon_sym_POUND] = ACTIONS(5286), + [anon_sym_DASH] = ACTIONS(5284), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5288), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_AT] = ACTIONS(5284), + [anon_sym_QMARK] = ACTIONS(5284), + [anon_sym_0] = ACTIONS(5290), + [anon_sym__] = ACTIONS(5290), }, [1888] = { - [aux_sym_concatenation_repeat1] = STATE(1503), - [sym__concat] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), + [sym_for_statement] = STATE(2285), + [sym_c_style_for_statement] = STATE(2285), + [sym_while_statement] = STATE(2285), + [sym_if_statement] = STATE(2285), + [sym_case_statement] = STATE(2285), + [sym_function_definition] = STATE(2285), + [sym_subshell] = STATE(2285), + [sym_pipeline] = STATE(2285), + [sym_list] = STATE(2285), + [sym_negated_command] = STATE(2285), + [sym_test_command] = STATE(2285), + [sym_declaration_command] = STATE(2285), + [sym_unset_command] = STATE(2285), + [sym_command] = STATE(2285), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(2286), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), }, [1889] = { - [anon_sym_PIPE] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), + [sym_for_statement] = STATE(2287), + [sym_c_style_for_statement] = STATE(2287), + [sym_while_statement] = STATE(2287), + [sym_if_statement] = STATE(2287), + [sym_case_statement] = STATE(2287), + [sym_function_definition] = STATE(2287), + [sym_subshell] = STATE(2287), + [sym_pipeline] = STATE(2287), + [sym_list] = STATE(2287), + [sym_negated_command] = STATE(2287), + [sym_test_command] = STATE(2287), + [sym_declaration_command] = STATE(2287), + [sym_unset_command] = STATE(2287), + [sym_command] = STATE(2287), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(2288), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), }, [1890] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_PLUS_EQ] = ACTIONS(5163), + [sym_for_statement] = STATE(2289), + [sym_c_style_for_statement] = STATE(2289), + [sym_while_statement] = STATE(2289), + [sym_if_statement] = STATE(2289), + [sym_case_statement] = STATE(2289), + [sym_function_definition] = STATE(2289), + [sym_subshell] = STATE(2289), + [sym_pipeline] = STATE(2289), + [sym_list] = STATE(2289), + [sym_negated_command] = STATE(2289), + [sym_test_command] = STATE(2289), + [sym_declaration_command] = STATE(2289), + [sym_unset_command] = STATE(2289), + [sym_command] = STATE(2289), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(2290), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), }, [1891] = { - [sym__terminated_statement] = STATE(2200), + [sym_file_descriptor] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(715), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(715), + [anon_sym_LT_AMP] = ACTIONS(715), + [anon_sym_GT_AMP] = ACTIONS(715), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(715), + [anon_sym_LT_LT_LT] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_comment] = ACTIONS(53), + }, + [1892] = { + [sym_file_descriptor] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2182), + [anon_sym_RPAREN] = ACTIONS(2180), + [anon_sym_PIPE_AMP] = ACTIONS(2180), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_PIPE_PIPE] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_GT] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(2180), + [anon_sym_AMP_GT] = ACTIONS(2182), + [anon_sym_AMP_GT_GT] = ACTIONS(2180), + [anon_sym_LT_AMP] = ACTIONS(2180), + [anon_sym_GT_AMP] = ACTIONS(2180), + [anon_sym_LT_LT] = ACTIONS(2182), + [anon_sym_LT_LT_DASH] = ACTIONS(2180), + [anon_sym_LT_LT_LT] = ACTIONS(2180), + [anon_sym_BQUOTE] = ACTIONS(2180), + [sym_comment] = ACTIONS(53), + }, + [1893] = { + [aux_sym_concatenation_repeat1] = STATE(2273), + [sym_file_descriptor] = ACTIONS(2184), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_RPAREN] = ACTIONS(2184), + [anon_sym_PIPE_AMP] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_PIPE_PIPE] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_GT] = ACTIONS(2186), + [anon_sym_GT_GT] = ACTIONS(2184), + [anon_sym_AMP_GT] = ACTIONS(2186), + [anon_sym_AMP_GT_GT] = ACTIONS(2184), + [anon_sym_LT_AMP] = ACTIONS(2184), + [anon_sym_GT_AMP] = ACTIONS(2184), + [anon_sym_LT_LT] = ACTIONS(2186), + [anon_sym_LT_LT_DASH] = ACTIONS(2184), + [anon_sym_LT_LT_LT] = ACTIONS(2184), + [sym_comment] = ACTIONS(53), + }, + [1894] = { + [aux_sym_concatenation_repeat1] = STATE(2273), + [sym_file_descriptor] = ACTIONS(2188), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_PIPE_AMP] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_PIPE_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2188), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2188), + [anon_sym_LT_AMP] = ACTIONS(2188), + [anon_sym_GT_AMP] = ACTIONS(2188), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2188), + [anon_sym_LT_LT_LT] = ACTIONS(2188), + [sym_comment] = ACTIONS(53), + }, + [1895] = { + [sym_file_descriptor] = ACTIONS(2188), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_PIPE_AMP] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_PIPE_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2188), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2188), + [anon_sym_LT_AMP] = ACTIONS(2188), + [anon_sym_GT_AMP] = ACTIONS(2188), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2188), + [anon_sym_LT_LT_LT] = ACTIONS(2188), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_comment] = ACTIONS(53), + }, + [1896] = { + [sym_file_redirect] = STATE(1896), + [sym_heredoc_redirect] = STATE(1896), + [sym_herestring_redirect] = STATE(1896), + [aux_sym_while_statement_repeat1] = STATE(1896), + [sym_file_descriptor] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(5295), + [anon_sym_GT] = ACTIONS(5295), + [anon_sym_GT_GT] = ACTIONS(5298), + [anon_sym_AMP_GT] = ACTIONS(5295), + [anon_sym_AMP_GT_GT] = ACTIONS(5298), + [anon_sym_LT_AMP] = ACTIONS(5298), + [anon_sym_GT_AMP] = ACTIONS(5298), + [anon_sym_LT_LT] = ACTIONS(5301), + [anon_sym_LT_LT_DASH] = ACTIONS(5304), + [anon_sym_LT_LT_LT] = ACTIONS(5307), + [sym_comment] = ACTIONS(53), + }, + [1897] = { + [sym_variable_name] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_PIPE_AMP] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(2253), + [anon_sym_PIPE_PIPE] = ACTIONS(2253), + [sym__special_characters] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [sym_raw_string] = ACTIONS(2253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2253), + [anon_sym_BQUOTE] = ACTIONS(2253), + [anon_sym_LT_LPAREN] = ACTIONS(2253), + [anon_sym_GT_LPAREN] = ACTIONS(2253), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2255), + [sym_word] = ACTIONS(2255), + }, + [1898] = { + [sym_concatenation] = STATE(1075), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1075), + [anon_sym_RPAREN] = ACTIONS(5310), + [sym__special_characters] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym_raw_string] = ACTIONS(1163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1163), + }, + [1899] = { + [sym__concat] = ACTIONS(2920), + [sym_variable_name] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_PIPE_AMP] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [sym__special_characters] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2920), + [anon_sym_BQUOTE] = ACTIONS(2920), + [anon_sym_LT_LPAREN] = ACTIONS(2920), + [anon_sym_GT_LPAREN] = ACTIONS(2920), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2922), + [sym_word] = ACTIONS(2922), + }, + [1900] = { + [sym__concat] = ACTIONS(2934), + [sym_variable_name] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_RPAREN] = ACTIONS(2934), + [anon_sym_PIPE_AMP] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = 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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), + [sym_word] = ACTIONS(2936), + }, + [1901] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5312), + [sym_comment] = ACTIONS(53), + }, + [1902] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5314), + [sym_comment] = ACTIONS(53), + }, + [1903] = { + [anon_sym_RBRACE] = ACTIONS(5314), + [sym_comment] = ACTIONS(53), + }, + [1904] = { + [sym_concatenation] = STATE(2295), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2295), + [anon_sym_RBRACE] = ACTIONS(5316), + [anon_sym_EQ] = ACTIONS(5318), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5318), + [anon_sym_COLON_QMARK] = ACTIONS(5318), + [anon_sym_COLON_DASH] = ACTIONS(5318), + [anon_sym_PERCENT] = ACTIONS(5318), + [anon_sym_DASH] = ACTIONS(5318), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1905] = { + [sym__concat] = ACTIONS(3016), + [sym_variable_name] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3016), + [anon_sym_PIPE_AMP] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [sym__special_characters] = ACTIONS(3016), + [anon_sym_DQUOTE] = ACTIONS(3016), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3016), + [anon_sym_BQUOTE] = ACTIONS(3016), + [anon_sym_LT_LPAREN] = ACTIONS(3016), + [anon_sym_GT_LPAREN] = ACTIONS(3016), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3018), + [sym_word] = ACTIONS(3018), + }, + [1906] = { + [sym_concatenation] = STATE(2298), + [sym_string] = STATE(2297), + [sym_simple_expansion] = STATE(2297), + [sym_string_expansion] = STATE(2297), + [sym_expansion] = STATE(2297), + [sym_command_substitution] = STATE(2297), + [sym_process_substitution] = STATE(2297), + [anon_sym_RBRACE] = ACTIONS(5314), + [sym__special_characters] = ACTIONS(5322), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(5324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5324), + }, + [1907] = { + [sym__concat] = ACTIONS(3059), + [sym_variable_name] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_PIPE_AMP] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [sym__special_characters] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(3059), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3059), + [anon_sym_BQUOTE] = ACTIONS(3059), + [anon_sym_LT_LPAREN] = ACTIONS(3059), + [anon_sym_GT_LPAREN] = ACTIONS(3059), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), + [sym_word] = ACTIONS(3061), + }, + [1908] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5326), + }, + [1909] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1910] = { + [sym__concat] = ACTIONS(3067), + [sym_variable_name] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_PIPE_AMP] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [sym__special_characters] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), + [anon_sym_BQUOTE] = ACTIONS(3067), + [anon_sym_LT_LPAREN] = ACTIONS(3067), + [anon_sym_GT_LPAREN] = ACTIONS(3067), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), + [sym_word] = ACTIONS(3069), + }, + [1911] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5330), + }, + [1912] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1913] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5334), + }, + [1914] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1915] = { + [sym_concatenation] = STATE(2305), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2305), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_EQ] = ACTIONS(5338), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5338), + [anon_sym_COLON_QMARK] = ACTIONS(5338), + [anon_sym_COLON_DASH] = ACTIONS(5338), + [anon_sym_PERCENT] = ACTIONS(5338), + [anon_sym_DASH] = ACTIONS(5338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1916] = { + [sym__concat] = ACTIONS(3083), + [sym_variable_name] = ACTIONS(3083), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_RPAREN] = ACTIONS(3083), + [anon_sym_PIPE_AMP] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [sym__special_characters] = ACTIONS(3083), + [anon_sym_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3083), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), + [anon_sym_BQUOTE] = ACTIONS(3083), + [anon_sym_LT_LPAREN] = ACTIONS(3083), + [anon_sym_GT_LPAREN] = ACTIONS(3083), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3085), + [sym_word] = ACTIONS(3085), + }, + [1917] = { + [sym_concatenation] = STATE(2307), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2307), + [anon_sym_RBRACE] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(5344), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_COLON_QMARK] = ACTIONS(5344), + [anon_sym_COLON_DASH] = ACTIONS(5344), + [anon_sym_PERCENT] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1918] = { + [sym__concat] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_PIPE_AMP] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [sym__special_characters] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2920), + [anon_sym_BQUOTE] = ACTIONS(2920), + [anon_sym_LT_LPAREN] = ACTIONS(2920), + [anon_sym_GT_LPAREN] = ACTIONS(2920), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2922), + [sym_word] = ACTIONS(2922), + }, + [1919] = { + [sym__concat] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_RPAREN] = ACTIONS(2934), + [anon_sym_PIPE_AMP] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = 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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), + [sym_word] = ACTIONS(2936), + }, + [1920] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5348), + [sym_comment] = ACTIONS(53), + }, + [1921] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5350), + [sym_comment] = ACTIONS(53), + }, + [1922] = { + [anon_sym_RBRACE] = ACTIONS(5350), + [sym_comment] = ACTIONS(53), + }, + [1923] = { + [sym_concatenation] = STATE(2311), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2311), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_EQ] = ACTIONS(5354), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5354), + [anon_sym_COLON_QMARK] = ACTIONS(5354), + [anon_sym_COLON_DASH] = ACTIONS(5354), + [anon_sym_PERCENT] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1924] = { + [sym__concat] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3016), + [anon_sym_PIPE_AMP] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [sym__special_characters] = ACTIONS(3016), + [anon_sym_DQUOTE] = ACTIONS(3016), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3016), + [anon_sym_BQUOTE] = ACTIONS(3016), + [anon_sym_LT_LPAREN] = ACTIONS(3016), + [anon_sym_GT_LPAREN] = ACTIONS(3016), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3018), + [sym_word] = ACTIONS(3018), + }, + [1925] = { + [sym_concatenation] = STATE(2314), + [sym_string] = STATE(2313), + [sym_simple_expansion] = STATE(2313), + [sym_string_expansion] = STATE(2313), + [sym_expansion] = STATE(2313), + [sym_command_substitution] = STATE(2313), + [sym_process_substitution] = STATE(2313), + [anon_sym_RBRACE] = ACTIONS(5350), + [sym__special_characters] = ACTIONS(5358), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(5360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5360), + }, + [1926] = { + [sym__concat] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_PIPE_AMP] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [sym__special_characters] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(3059), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3059), + [anon_sym_BQUOTE] = ACTIONS(3059), + [anon_sym_LT_LPAREN] = ACTIONS(3059), + [anon_sym_GT_LPAREN] = ACTIONS(3059), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), + [sym_word] = ACTIONS(3061), + }, + [1927] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5362), + }, + [1928] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1929] = { + [sym__concat] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_PIPE_AMP] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [sym__special_characters] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), + [anon_sym_BQUOTE] = ACTIONS(3067), + [anon_sym_LT_LPAREN] = ACTIONS(3067), + [anon_sym_GT_LPAREN] = ACTIONS(3067), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), + [sym_word] = ACTIONS(3069), + }, + [1930] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5366), + }, + [1931] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5368), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1932] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5370), + }, + [1933] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1934] = { + [sym_concatenation] = STATE(2321), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2321), + [anon_sym_RBRACE] = ACTIONS(5372), + [anon_sym_EQ] = ACTIONS(5374), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5376), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5374), + [anon_sym_COLON_QMARK] = ACTIONS(5374), + [anon_sym_COLON_DASH] = ACTIONS(5374), + [anon_sym_PERCENT] = ACTIONS(5374), + [anon_sym_DASH] = ACTIONS(5374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1935] = { + [sym__concat] = ACTIONS(3083), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_RPAREN] = ACTIONS(3083), + [anon_sym_PIPE_AMP] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [sym__special_characters] = ACTIONS(3083), + [anon_sym_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3083), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), + [anon_sym_BQUOTE] = ACTIONS(3083), + [anon_sym_LT_LPAREN] = ACTIONS(3083), + [anon_sym_GT_LPAREN] = ACTIONS(3083), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3085), + [sym_word] = ACTIONS(3085), + }, + [1936] = { + [sym_concatenation] = STATE(2323), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2323), + [anon_sym_RBRACE] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5380), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5380), + [anon_sym_COLON_QMARK] = ACTIONS(5380), + [anon_sym_COLON_DASH] = ACTIONS(5380), + [anon_sym_PERCENT] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1937] = { + [sym__simple_heredoc_body] = ACTIONS(4164), + [sym__heredoc_body_beginning] = ACTIONS(4164), + [sym_file_descriptor] = ACTIONS(4164), + [sym__concat] = ACTIONS(4164), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_PIPE_AMP] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_EQ_TILDE] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4164), + [anon_sym_AMP_GT] = ACTIONS(4166), + [anon_sym_AMP_GT_GT] = ACTIONS(4164), + [anon_sym_LT_AMP] = ACTIONS(4164), + [anon_sym_GT_AMP] = ACTIONS(4164), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_LT_LT_DASH] = ACTIONS(4164), + [anon_sym_LT_LT_LT] = ACTIONS(4164), + [sym__special_characters] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4164), + [anon_sym_BQUOTE] = ACTIONS(4164), + [anon_sym_LT_LPAREN] = ACTIONS(4164), + [anon_sym_GT_LPAREN] = ACTIONS(4164), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4166), + }, + [1938] = { + [sym__simple_heredoc_body] = ACTIONS(4172), + [sym__heredoc_body_beginning] = ACTIONS(4172), + [sym_file_descriptor] = ACTIONS(4172), + [sym__concat] = ACTIONS(4172), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_PIPE_AMP] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_EQ_TILDE] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4172), + [anon_sym_AMP_GT] = ACTIONS(4174), + [anon_sym_AMP_GT_GT] = ACTIONS(4172), + [anon_sym_LT_AMP] = ACTIONS(4172), + [anon_sym_GT_AMP] = ACTIONS(4172), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_LT_LT_DASH] = ACTIONS(4172), + [anon_sym_LT_LT_LT] = ACTIONS(4172), + [sym__special_characters] = ACTIONS(4172), + [anon_sym_DQUOTE] = ACTIONS(4172), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4172), + [anon_sym_BQUOTE] = ACTIONS(4172), + [anon_sym_LT_LPAREN] = ACTIONS(4172), + [anon_sym_GT_LPAREN] = ACTIONS(4172), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4174), + }, + [1939] = { + [sym__simple_heredoc_body] = ACTIONS(4259), + [sym__heredoc_body_beginning] = ACTIONS(4259), + [sym_file_descriptor] = ACTIONS(4259), + [sym__concat] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_RPAREN] = ACTIONS(4259), + [anon_sym_PIPE_AMP] = ACTIONS(4259), + [anon_sym_AMP_AMP] = ACTIONS(4259), + [anon_sym_PIPE_PIPE] = ACTIONS(4259), + [anon_sym_EQ_TILDE] = ACTIONS(4261), + [anon_sym_EQ_EQ] = ACTIONS(4261), + [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), + [sym__special_characters] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4259), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LT_LPAREN] = ACTIONS(4259), + [anon_sym_GT_LPAREN] = ACTIONS(4259), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4261), + }, + [1940] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5384), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1941] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5386), + [sym_comment] = ACTIONS(53), + }, + [1942] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5388), + [sym_comment] = ACTIONS(53), + }, + [1943] = { + [anon_sym_RBRACE] = ACTIONS(5388), + [sym_comment] = ACTIONS(53), + }, + [1944] = { + [sym_concatenation] = STATE(2328), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2328), + [anon_sym_RBRACE] = ACTIONS(5390), + [anon_sym_EQ] = ACTIONS(5392), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5392), + [anon_sym_COLON_QMARK] = ACTIONS(5392), + [anon_sym_COLON_DASH] = ACTIONS(5392), + [anon_sym_PERCENT] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1945] = { + [sym__simple_heredoc_body] = ACTIONS(4275), + [sym__heredoc_body_beginning] = ACTIONS(4275), + [sym_file_descriptor] = ACTIONS(4275), + [sym__concat] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4275), + [anon_sym_PIPE_AMP] = ACTIONS(4275), + [anon_sym_AMP_AMP] = ACTIONS(4275), + [anon_sym_PIPE_PIPE] = ACTIONS(4275), + [anon_sym_EQ_TILDE] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4277), + [anon_sym_GT_GT] = ACTIONS(4275), + [anon_sym_AMP_GT] = ACTIONS(4277), + [anon_sym_AMP_GT_GT] = ACTIONS(4275), + [anon_sym_LT_AMP] = ACTIONS(4275), + [anon_sym_GT_AMP] = ACTIONS(4275), + [anon_sym_LT_LT] = ACTIONS(4277), + [anon_sym_LT_LT_DASH] = ACTIONS(4275), + [anon_sym_LT_LT_LT] = ACTIONS(4275), + [sym__special_characters] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LT_LPAREN] = ACTIONS(4275), + [anon_sym_GT_LPAREN] = ACTIONS(4275), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4277), + }, + [1946] = { + [sym_concatenation] = STATE(2330), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2330), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_EQ] = ACTIONS(5398), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5398), + [anon_sym_COLON_QMARK] = ACTIONS(5398), + [anon_sym_COLON_DASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5398), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1947] = { + [sym__simple_heredoc_body] = ACTIONS(4285), + [sym__heredoc_body_beginning] = ACTIONS(4285), + [sym_file_descriptor] = ACTIONS(4285), + [sym__concat] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4285), + [anon_sym_PIPE_AMP] = ACTIONS(4285), + [anon_sym_AMP_AMP] = ACTIONS(4285), + [anon_sym_PIPE_PIPE] = ACTIONS(4285), + [anon_sym_EQ_TILDE] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4287), + [anon_sym_GT] = ACTIONS(4287), + [anon_sym_GT_GT] = ACTIONS(4285), + [anon_sym_AMP_GT] = ACTIONS(4287), + [anon_sym_AMP_GT_GT] = ACTIONS(4285), + [anon_sym_LT_AMP] = ACTIONS(4285), + [anon_sym_GT_AMP] = ACTIONS(4285), + [anon_sym_LT_LT] = ACTIONS(4287), + [anon_sym_LT_LT_DASH] = ACTIONS(4285), + [anon_sym_LT_LT_LT] = ACTIONS(4285), + [sym__special_characters] = ACTIONS(4285), + [anon_sym_DQUOTE] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4285), + [anon_sym_BQUOTE] = ACTIONS(4285), + [anon_sym_LT_LPAREN] = ACTIONS(4285), + [anon_sym_GT_LPAREN] = ACTIONS(4285), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4287), + }, + [1948] = { + [sym_concatenation] = STATE(2332), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2332), + [anon_sym_RBRACE] = ACTIONS(5402), + [anon_sym_EQ] = ACTIONS(5404), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5406), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5404), + [anon_sym_COLON_QMARK] = ACTIONS(5404), + [anon_sym_COLON_DASH] = ACTIONS(5404), + [anon_sym_PERCENT] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1949] = { + [sym__simple_heredoc_body] = ACTIONS(4295), + [sym__heredoc_body_beginning] = ACTIONS(4295), + [sym_file_descriptor] = ACTIONS(4295), + [sym__concat] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_PIPE_AMP] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_EQ_TILDE] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_GT_GT] = ACTIONS(4295), + [anon_sym_AMP_GT] = ACTIONS(4297), + [anon_sym_AMP_GT_GT] = ACTIONS(4295), + [anon_sym_LT_AMP] = ACTIONS(4295), + [anon_sym_GT_AMP] = ACTIONS(4295), + [anon_sym_LT_LT] = ACTIONS(4297), + [anon_sym_LT_LT_DASH] = ACTIONS(4295), + [anon_sym_LT_LT_LT] = ACTIONS(4295), + [sym__special_characters] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4295), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4295), + [anon_sym_BQUOTE] = ACTIONS(4295), + [anon_sym_LT_LPAREN] = ACTIONS(4295), + [anon_sym_GT_LPAREN] = ACTIONS(4295), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4297), + }, + [1950] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5408), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1951] = { + [sym__simple_heredoc_body] = ACTIONS(4301), + [sym__heredoc_body_beginning] = ACTIONS(4301), + [sym_file_descriptor] = ACTIONS(4301), + [sym__concat] = ACTIONS(4301), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_PIPE_AMP] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_EQ_TILDE] = ACTIONS(4303), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_GT_GT] = ACTIONS(4301), + [anon_sym_AMP_GT] = ACTIONS(4303), + [anon_sym_AMP_GT_GT] = ACTIONS(4301), + [anon_sym_LT_AMP] = ACTIONS(4301), + [anon_sym_GT_AMP] = ACTIONS(4301), + [anon_sym_LT_LT] = ACTIONS(4303), + [anon_sym_LT_LT_DASH] = ACTIONS(4301), + [anon_sym_LT_LT_LT] = ACTIONS(4301), + [sym__special_characters] = ACTIONS(4301), + [anon_sym_DQUOTE] = ACTIONS(4301), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4301), + [anon_sym_BQUOTE] = ACTIONS(4301), + [anon_sym_LT_LPAREN] = ACTIONS(4301), + [anon_sym_GT_LPAREN] = ACTIONS(4301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4303), + }, + [1952] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5410), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1953] = { + [anon_sym_PIPE] = ACTIONS(3854), + [anon_sym_RPAREN] = ACTIONS(3856), + [anon_sym_PIPE_AMP] = ACTIONS(3856), + [anon_sym_AMP_AMP] = ACTIONS(3856), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_BQUOTE] = ACTIONS(3856), + [sym_comment] = ACTIONS(53), + }, + [1954] = { + [aux_sym_concatenation_repeat1] = STATE(1954), + [sym__simple_heredoc_body] = ACTIONS(1754), + [sym__heredoc_body_beginning] = ACTIONS(1754), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(3308), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1754), + [anon_sym_LT_AMP] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1754), + [anon_sym_LT_LT_LT] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + }, + [1955] = { + [anon_sym_PIPE] = ACTIONS(4563), + [anon_sym_RPAREN] = ACTIONS(4565), + [anon_sym_PIPE_AMP] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_BQUOTE] = ACTIONS(4565), + [sym_comment] = ACTIONS(53), + }, + [1956] = { + [aux_sym_concatenation_repeat1] = STATE(1956), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(2831), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1754), + [anon_sym_LT_AMP] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1754), + }, + [1957] = { + [sym_file_redirect] = STATE(2264), + [sym_file_descriptor] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3854), + [anon_sym_PIPE_AMP] = ACTIONS(3856), + [anon_sym_AMP_AMP] = ACTIONS(3856), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_GT] = ACTIONS(3411), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_AMP_GT] = ACTIONS(3411), + [anon_sym_AMP_GT_GT] = ACTIONS(3413), + [anon_sym_LT_AMP] = ACTIONS(3413), + [anon_sym_GT_AMP] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(3856), + [sym_comment] = ACTIONS(53), + }, + [1958] = { + [sym_concatenation] = STATE(2267), + [sym_string] = STATE(2336), + [sym_simple_expansion] = STATE(2336), + [sym_string_expansion] = STATE(2336), + [sym_expansion] = STATE(2336), + [sym_command_substitution] = STATE(2336), + [sym_process_substitution] = STATE(2336), + [sym__special_characters] = ACTIONS(5412), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(871), + [sym_raw_string] = ACTIONS(5414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), + [anon_sym_BQUOTE] = ACTIONS(879), + [anon_sym_LT_LPAREN] = ACTIONS(881), + [anon_sym_GT_LPAREN] = ACTIONS(881), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5414), + }, + [1959] = { + [aux_sym_concatenation_repeat1] = STATE(2337), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PIPE_AMP] = ACTIONS(697), + [anon_sym_AMP_AMP] = ACTIONS(697), + [anon_sym_PIPE_PIPE] = ACTIONS(697), + [anon_sym_BQUOTE] = ACTIONS(697), + [sym_comment] = ACTIONS(53), + }, + [1960] = { + [aux_sym_concatenation_repeat1] = STATE(2337), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_comment] = ACTIONS(53), + }, + [1961] = { + [sym_concatenation] = STATE(2271), + [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), + [sym__special_characters] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4357), + [sym_raw_string] = ACTIONS(5418), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4365), + [anon_sym_LT_LPAREN] = ACTIONS(4367), + [anon_sym_GT_LPAREN] = ACTIONS(4367), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5418), + }, + [1962] = { + [aux_sym_concatenation_repeat1] = STATE(2340), + [sym_file_descriptor] = ACTIONS(697), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PIPE_AMP] = ACTIONS(697), + [anon_sym_AMP_AMP] = ACTIONS(697), + [anon_sym_PIPE_PIPE] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(697), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(697), + [anon_sym_LT_AMP] = ACTIONS(697), + [anon_sym_GT_AMP] = ACTIONS(697), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(697), + [anon_sym_LT_LT_LT] = ACTIONS(697), + [anon_sym_BQUOTE] = ACTIONS(697), + [sym_comment] = ACTIONS(53), + }, + [1963] = { + [aux_sym_concatenation_repeat1] = STATE(2340), + [sym_file_descriptor] = ACTIONS(715), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(715), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(715), + [anon_sym_LT_AMP] = ACTIONS(715), + [anon_sym_GT_AMP] = ACTIONS(715), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(715), + [anon_sym_LT_LT_LT] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_comment] = ACTIONS(53), + }, + [1964] = { + [aux_sym_concatenation_repeat1] = STATE(2340), + [sym_file_descriptor] = ACTIONS(2184), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_PIPE_PIPE] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_GT] = ACTIONS(2186), + [anon_sym_GT_GT] = ACTIONS(2184), + [anon_sym_AMP_GT] = ACTIONS(2186), + [anon_sym_AMP_GT_GT] = ACTIONS(2184), + [anon_sym_LT_AMP] = ACTIONS(2184), + [anon_sym_GT_AMP] = ACTIONS(2184), + [anon_sym_LT_LT] = ACTIONS(2186), + [anon_sym_LT_LT_DASH] = ACTIONS(2184), + [anon_sym_LT_LT_LT] = ACTIONS(2184), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_comment] = ACTIONS(53), + }, + [1965] = { + [aux_sym_concatenation_repeat1] = STATE(2340), + [sym_file_descriptor] = ACTIONS(2188), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_PIPE_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2188), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2188), + [anon_sym_LT_AMP] = ACTIONS(2188), + [anon_sym_GT_AMP] = ACTIONS(2188), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2188), + [anon_sym_LT_LT_LT] = ACTIONS(2188), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_comment] = ACTIONS(53), + }, + [1966] = { + [sym_file_redirect] = STATE(1966), + [sym_heredoc_redirect] = STATE(1966), + [sym_herestring_redirect] = STATE(1966), + [aux_sym_while_statement_repeat1] = STATE(1966), + [sym_file_descriptor] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5423), + [anon_sym_GT_GT] = ACTIONS(5426), + [anon_sym_AMP_GT] = ACTIONS(5423), + [anon_sym_AMP_GT_GT] = ACTIONS(5426), + [anon_sym_LT_AMP] = ACTIONS(5426), + [anon_sym_GT_AMP] = ACTIONS(5426), + [anon_sym_LT_LT] = ACTIONS(5301), + [anon_sym_LT_LT_DASH] = ACTIONS(5304), + [anon_sym_LT_LT_LT] = ACTIONS(5429), + [anon_sym_BQUOTE] = ACTIONS(2196), + [sym_comment] = ACTIONS(53), + }, + [1967] = { + [aux_sym_concatenation_repeat1] = STATE(1967), + [sym__simple_heredoc_body] = ACTIONS(1754), + [sym__heredoc_body_beginning] = ACTIONS(1754), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(3308), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1754), + [anon_sym_LT_AMP] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1754), + [anon_sym_LT_LT_LT] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + }, + [1968] = { + [sym__heredoc_body_middle] = ACTIONS(2934), + [sym__heredoc_body_end] = ACTIONS(2934), + [anon_sym_DOLLAR] = ACTIONS(2936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), + [sym_comment] = ACTIONS(53), + }, + [1969] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5432), + [sym_comment] = ACTIONS(53), + }, + [1970] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5434), + [sym_comment] = ACTIONS(53), + }, + [1971] = { + [anon_sym_RBRACE] = ACTIONS(5434), + [sym_comment] = ACTIONS(53), + }, + [1972] = { + [sym_concatenation] = STATE(2344), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2344), + [anon_sym_RBRACE] = ACTIONS(5436), + [anon_sym_EQ] = ACTIONS(5438), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5438), + [anon_sym_COLON_QMARK] = ACTIONS(5438), + [anon_sym_COLON_DASH] = ACTIONS(5438), + [anon_sym_PERCENT] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1973] = { + [sym__heredoc_body_middle] = ACTIONS(3016), + [sym__heredoc_body_end] = ACTIONS(3016), + [anon_sym_DOLLAR] = ACTIONS(3018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), + [sym_comment] = ACTIONS(53), + }, + [1974] = { + [sym_concatenation] = STATE(2347), + [sym_string] = STATE(2346), + [sym_simple_expansion] = STATE(2346), + [sym_string_expansion] = STATE(2346), + [sym_expansion] = STATE(2346), + [sym_command_substitution] = STATE(2346), + [sym_process_substitution] = STATE(2346), + [anon_sym_RBRACE] = ACTIONS(5434), + [sym__special_characters] = ACTIONS(5442), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(5444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5444), + }, + [1975] = { + [sym__heredoc_body_middle] = ACTIONS(3059), + [sym__heredoc_body_end] = ACTIONS(3059), + [anon_sym_DOLLAR] = ACTIONS(3061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), + [sym_comment] = ACTIONS(53), + }, + [1976] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5446), + }, + [1977] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1978] = { + [sym__heredoc_body_middle] = ACTIONS(3067), + [sym__heredoc_body_end] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), + [sym_comment] = ACTIONS(53), + }, + [1979] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5450), + }, + [1980] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5452), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1981] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5454), + }, + [1982] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5434), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1983] = { + [sym_concatenation] = STATE(2354), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2354), + [anon_sym_RBRACE] = ACTIONS(5456), + [anon_sym_EQ] = ACTIONS(5458), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5460), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5458), + [anon_sym_COLON_QMARK] = ACTIONS(5458), + [anon_sym_COLON_DASH] = ACTIONS(5458), + [anon_sym_PERCENT] = ACTIONS(5458), + [anon_sym_DASH] = ACTIONS(5458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1984] = { + [sym__heredoc_body_middle] = ACTIONS(3083), + [sym__heredoc_body_end] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), + [sym_comment] = ACTIONS(53), + }, + [1985] = { + [sym_concatenation] = STATE(2356), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2356), + [anon_sym_RBRACE] = ACTIONS(5462), + [anon_sym_EQ] = ACTIONS(5464), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5464), + [anon_sym_COLON_QMARK] = ACTIONS(5464), + [anon_sym_COLON_DASH] = ACTIONS(5464), + [anon_sym_PERCENT] = ACTIONS(5464), + [anon_sym_DASH] = ACTIONS(5464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1986] = { + [sym__concat] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [sym__special_characters] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2920), + [anon_sym_BQUOTE] = ACTIONS(2920), + [anon_sym_LT_LPAREN] = ACTIONS(2920), + [anon_sym_GT_LPAREN] = ACTIONS(2920), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2920), + }, + [1987] = { + [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(53), + [sym_word] = ACTIONS(2934), + }, + [1988] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5468), + [sym_comment] = ACTIONS(53), + }, + [1989] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5470), + [sym_comment] = ACTIONS(53), + }, + [1990] = { + [anon_sym_RBRACE] = ACTIONS(5470), + [sym_comment] = ACTIONS(53), + }, + [1991] = { + [sym_concatenation] = STATE(2360), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2360), + [anon_sym_RBRACE] = ACTIONS(5472), + [anon_sym_EQ] = ACTIONS(5474), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5474), + [anon_sym_COLON_QMARK] = ACTIONS(5474), + [anon_sym_COLON_DASH] = ACTIONS(5474), + [anon_sym_PERCENT] = ACTIONS(5474), + [anon_sym_DASH] = ACTIONS(5474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1992] = { + [sym__concat] = ACTIONS(3016), + [anon_sym_RPAREN] = ACTIONS(3016), + [sym__special_characters] = ACTIONS(3016), + [anon_sym_DQUOTE] = ACTIONS(3016), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3016), + [anon_sym_BQUOTE] = ACTIONS(3016), + [anon_sym_LT_LPAREN] = ACTIONS(3016), + [anon_sym_GT_LPAREN] = ACTIONS(3016), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3016), + }, + [1993] = { + [sym_concatenation] = STATE(2363), + [sym_string] = STATE(2362), + [sym_simple_expansion] = STATE(2362), + [sym_string_expansion] = STATE(2362), + [sym_expansion] = STATE(2362), + [sym_command_substitution] = STATE(2362), + [sym_process_substitution] = STATE(2362), + [anon_sym_RBRACE] = ACTIONS(5470), + [sym__special_characters] = ACTIONS(5478), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(5480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5480), + }, + [1994] = { + [sym__concat] = ACTIONS(3059), + [anon_sym_RPAREN] = ACTIONS(3059), + [sym__special_characters] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(3059), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3059), + [anon_sym_BQUOTE] = ACTIONS(3059), + [anon_sym_LT_LPAREN] = ACTIONS(3059), + [anon_sym_GT_LPAREN] = ACTIONS(3059), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3059), + }, + [1995] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5482), + }, + [1996] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5484), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [1997] = { + [sym__concat] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3067), + [sym__special_characters] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), + [anon_sym_BQUOTE] = ACTIONS(3067), + [anon_sym_LT_LPAREN] = ACTIONS(3067), + [anon_sym_GT_LPAREN] = ACTIONS(3067), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3067), + }, + [1998] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5486), + }, + [1999] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5488), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2000] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5490), + }, + [2001] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2002] = { + [sym_concatenation] = STATE(2370), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2370), + [anon_sym_RBRACE] = ACTIONS(5492), + [anon_sym_EQ] = ACTIONS(5494), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5496), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5494), + [anon_sym_COLON_QMARK] = ACTIONS(5494), + [anon_sym_COLON_DASH] = ACTIONS(5494), + [anon_sym_PERCENT] = ACTIONS(5494), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2003] = { + [sym__concat] = ACTIONS(3083), + [anon_sym_RPAREN] = ACTIONS(3083), + [sym__special_characters] = ACTIONS(3083), + [anon_sym_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3083), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), + [anon_sym_BQUOTE] = ACTIONS(3083), + [anon_sym_LT_LPAREN] = ACTIONS(3083), + [anon_sym_GT_LPAREN] = ACTIONS(3083), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3083), + }, + [2004] = { + [sym_concatenation] = STATE(2372), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2372), + [anon_sym_RBRACE] = ACTIONS(5498), + [anon_sym_EQ] = ACTIONS(5500), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5500), + [anon_sym_COLON_QMARK] = ACTIONS(5500), + [anon_sym_COLON_DASH] = ACTIONS(5500), + [anon_sym_PERCENT] = ACTIONS(5500), + [anon_sym_DASH] = ACTIONS(5500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2005] = { + [sym_file_descriptor] = ACTIONS(4164), + [sym__concat] = ACTIONS(4164), + [sym_variable_name] = ACTIONS(4164), + [anon_sym_esac] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_SEMI_SEMI] = ACTIONS(4166), + [anon_sym_PIPE_AMP] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4166), + [anon_sym_AMP_GT] = ACTIONS(4166), + [anon_sym_AMP_GT_GT] = ACTIONS(4166), + [anon_sym_LT_AMP] = ACTIONS(4166), + [anon_sym_GT_AMP] = ACTIONS(4166), + [sym__special_characters] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), + [anon_sym_BQUOTE] = ACTIONS(4166), + [anon_sym_LT_LPAREN] = ACTIONS(4166), + [anon_sym_GT_LPAREN] = ACTIONS(4166), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_LF] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4166), + }, + [2006] = { + [sym_file_descriptor] = ACTIONS(4172), + [sym__concat] = ACTIONS(4172), + [sym_variable_name] = ACTIONS(4172), + [anon_sym_esac] = ACTIONS(4174), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4174), + [anon_sym_SEMI_SEMI] = ACTIONS(4174), + [anon_sym_PIPE_AMP] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_AMP_GT] = ACTIONS(4174), + [anon_sym_AMP_GT_GT] = ACTIONS(4174), + [anon_sym_LT_AMP] = ACTIONS(4174), + [anon_sym_GT_AMP] = ACTIONS(4174), + [sym__special_characters] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), + [anon_sym_BQUOTE] = ACTIONS(4174), + [anon_sym_LT_LPAREN] = ACTIONS(4174), + [anon_sym_GT_LPAREN] = ACTIONS(4174), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym_LF] = ACTIONS(4172), + [anon_sym_AMP] = ACTIONS(4174), + }, + [2007] = { + [sym_file_descriptor] = ACTIONS(4259), + [sym__concat] = ACTIONS(4259), + [sym_variable_name] = ACTIONS(4259), + [anon_sym_esac] = ACTIONS(4261), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_RPAREN] = ACTIONS(4261), + [anon_sym_SEMI_SEMI] = ACTIONS(4261), + [anon_sym_PIPE_AMP] = ACTIONS(4261), + [anon_sym_AMP_AMP] = ACTIONS(4261), + [anon_sym_PIPE_PIPE] = ACTIONS(4261), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4261), + [anon_sym_GT_GT] = ACTIONS(4261), + [anon_sym_AMP_GT] = ACTIONS(4261), + [anon_sym_AMP_GT_GT] = ACTIONS(4261), + [anon_sym_LT_AMP] = ACTIONS(4261), + [anon_sym_GT_AMP] = ACTIONS(4261), + [sym__special_characters] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4261), + [anon_sym_LT_LPAREN] = ACTIONS(4261), + [anon_sym_GT_LPAREN] = ACTIONS(4261), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4261), + [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_LF] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + }, + [2008] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5504), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2009] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5506), + [sym_comment] = ACTIONS(53), + }, + [2010] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5508), + [sym_comment] = ACTIONS(53), + }, + [2011] = { + [anon_sym_RBRACE] = ACTIONS(5508), + [sym_comment] = ACTIONS(53), + }, + [2012] = { + [sym_concatenation] = STATE(2377), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2377), + [anon_sym_RBRACE] = ACTIONS(5510), + [anon_sym_EQ] = ACTIONS(5512), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5514), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5512), + [anon_sym_COLON_QMARK] = ACTIONS(5512), + [anon_sym_COLON_DASH] = ACTIONS(5512), + [anon_sym_PERCENT] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2013] = { + [sym_file_descriptor] = ACTIONS(4275), + [sym__concat] = ACTIONS(4275), + [sym_variable_name] = ACTIONS(4275), + [anon_sym_esac] = ACTIONS(4277), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_SEMI_SEMI] = ACTIONS(4277), + [anon_sym_PIPE_AMP] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4277), + [anon_sym_GT_GT] = ACTIONS(4277), + [anon_sym_AMP_GT] = ACTIONS(4277), + [anon_sym_AMP_GT_GT] = ACTIONS(4277), + [anon_sym_LT_AMP] = ACTIONS(4277), + [anon_sym_GT_AMP] = ACTIONS(4277), + [sym__special_characters] = ACTIONS(4277), + [anon_sym_DQUOTE] = ACTIONS(4277), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4277), + [anon_sym_LT_LPAREN] = ACTIONS(4277), + [anon_sym_GT_LPAREN] = ACTIONS(4277), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4277), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_LF] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + }, + [2014] = { + [sym_concatenation] = STATE(2379), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2379), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_EQ] = ACTIONS(5518), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5518), + [anon_sym_COLON_QMARK] = ACTIONS(5518), + [anon_sym_COLON_DASH] = ACTIONS(5518), + [anon_sym_PERCENT] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2015] = { + [sym_file_descriptor] = ACTIONS(4285), + [sym__concat] = ACTIONS(4285), + [sym_variable_name] = ACTIONS(4285), + [anon_sym_esac] = ACTIONS(4287), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_SEMI_SEMI] = ACTIONS(4287), + [anon_sym_PIPE_AMP] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4287), + [anon_sym_GT] = ACTIONS(4287), + [anon_sym_GT_GT] = ACTIONS(4287), + [anon_sym_AMP_GT] = ACTIONS(4287), + [anon_sym_AMP_GT_GT] = ACTIONS(4287), + [anon_sym_LT_AMP] = ACTIONS(4287), + [anon_sym_GT_AMP] = ACTIONS(4287), + [sym__special_characters] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), + [anon_sym_BQUOTE] = ACTIONS(4287), + [anon_sym_LT_LPAREN] = ACTIONS(4287), + [anon_sym_GT_LPAREN] = ACTIONS(4287), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_LF] = ACTIONS(4285), + [anon_sym_AMP] = ACTIONS(4287), + }, + [2016] = { + [sym_concatenation] = STATE(2381), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2381), + [anon_sym_RBRACE] = ACTIONS(5522), + [anon_sym_EQ] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5526), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5524), + [anon_sym_COLON_QMARK] = ACTIONS(5524), + [anon_sym_COLON_DASH] = ACTIONS(5524), + [anon_sym_PERCENT] = ACTIONS(5524), + [anon_sym_DASH] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2017] = { + [sym_file_descriptor] = ACTIONS(4295), + [sym__concat] = ACTIONS(4295), + [sym_variable_name] = ACTIONS(4295), + [anon_sym_esac] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4297), + [anon_sym_PIPE_AMP] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_GT_GT] = ACTIONS(4297), + [anon_sym_AMP_GT] = ACTIONS(4297), + [anon_sym_AMP_GT_GT] = ACTIONS(4297), + [anon_sym_LT_AMP] = ACTIONS(4297), + [anon_sym_GT_AMP] = ACTIONS(4297), + [sym__special_characters] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LT_LPAREN] = ACTIONS(4297), + [anon_sym_GT_LPAREN] = ACTIONS(4297), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_LF] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4297), + }, + [2018] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2019] = { + [sym_file_descriptor] = ACTIONS(4301), + [sym__concat] = ACTIONS(4301), + [sym_variable_name] = ACTIONS(4301), + [anon_sym_esac] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [anon_sym_PIPE_AMP] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_PIPE_PIPE] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_GT_GT] = ACTIONS(4303), + [anon_sym_AMP_GT] = ACTIONS(4303), + [anon_sym_AMP_GT_GT] = ACTIONS(4303), + [anon_sym_LT_AMP] = ACTIONS(4303), + [anon_sym_GT_AMP] = ACTIONS(4303), + [sym__special_characters] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LT_LPAREN] = ACTIONS(4303), + [anon_sym_GT_LPAREN] = ACTIONS(4303), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4303), + }, + [2020] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5530), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2021] = { + [anon_sym_esac] = ACTIONS(2528), + [anon_sym_PIPE] = ACTIONS(2528), + [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), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2528), + [anon_sym_LF] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + }, + [2022] = { + [sym__terminated_statement] = STATE(1182), + [sym_for_statement] = STATE(680), + [sym_c_style_for_statement] = STATE(680), + [sym_while_statement] = STATE(680), + [sym_if_statement] = STATE(680), + [sym_case_statement] = STATE(680), + [sym_function_definition] = STATE(680), + [sym_subshell] = STATE(680), + [sym_pipeline] = STATE(680), + [sym_list] = STATE(680), + [sym_negated_command] = STATE(680), + [sym_test_command] = STATE(680), + [sym_declaration_command] = STATE(680), + [sym_unset_command] = STATE(680), + [sym_command] = STATE(680), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(681), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1182), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(5532), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [2023] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_EQ_TILDE] = ACTIONS(2609), + [anon_sym_EQ_EQ] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), + [anon_sym_BANG_EQ] = ACTIONS(2609), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2609), + }, + [2024] = { + [sym__concat] = ACTIONS(1754), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_EQ_TILDE] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1754), + }, + [2025] = { + [aux_sym_concatenation_repeat1] = STATE(2025), + [sym__concat] = ACTIONS(5534), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_EQ_TILDE] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1754), + }, + [2026] = { + [sym__concat] = ACTIONS(1761), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1761), + [anon_sym_AMP_AMP] = ACTIONS(1761), + [anon_sym_PIPE_PIPE] = ACTIONS(1761), + [anon_sym_EQ_TILDE] = ACTIONS(1761), + [anon_sym_EQ_EQ] = ACTIONS(1761), + [anon_sym_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_BANG_EQ] = ACTIONS(1761), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1761), + }, + [2027] = { + [anon_sym_DQUOTE] = ACTIONS(5537), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [2028] = { + [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(5539), + [sym__special_characters] = ACTIONS(5541), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(5543), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5543), + }, + [2029] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1846), + [anon_sym_AMP_AMP] = ACTIONS(1846), + [anon_sym_PIPE_PIPE] = ACTIONS(1846), + [anon_sym_EQ_TILDE] = ACTIONS(1846), + [anon_sym_EQ_EQ] = ACTIONS(1846), + [anon_sym_EQ] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1846), + [anon_sym_GT] = ACTIONS(1846), + [anon_sym_BANG_EQ] = ACTIONS(1846), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1846), + }, + [2030] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5545), + }, + [2031] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5547), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2032] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(5549), + [sym_comment] = ACTIONS(53), + }, + [2033] = { + [sym_concatenation] = STATE(2395), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2395), + [anon_sym_RBRACE] = ACTIONS(5551), + [anon_sym_EQ] = ACTIONS(5553), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5555), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(5557), + [anon_sym_COLON] = ACTIONS(5553), + [anon_sym_COLON_QMARK] = ACTIONS(5553), + [anon_sym_COLON_DASH] = ACTIONS(5553), + [anon_sym_PERCENT] = ACTIONS(5553), + [anon_sym_DASH] = ACTIONS(5553), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2034] = { + [sym_concatenation] = STATE(2398), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2398), + [anon_sym_RBRACE] = ACTIONS(5559), + [anon_sym_EQ] = ACTIONS(5561), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(5565), + [anon_sym_COLON] = ACTIONS(5561), + [anon_sym_COLON_QMARK] = ACTIONS(5561), + [anon_sym_COLON_DASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5561), + [anon_sym_DASH] = ACTIONS(5561), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2035] = { + [sym_concatenation] = STATE(2400), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2400), + [anon_sym_RBRACE] = ACTIONS(5539), + [anon_sym_EQ] = ACTIONS(5567), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(5571), + [anon_sym_COLON] = ACTIONS(5567), + [anon_sym_COLON_QMARK] = ACTIONS(5567), + [anon_sym_COLON_DASH] = ACTIONS(5567), + [anon_sym_PERCENT] = ACTIONS(5567), + [anon_sym_DASH] = ACTIONS(5567), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2036] = { + [sym__concat] = ACTIONS(1914), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1914), + [anon_sym_AMP_AMP] = ACTIONS(1914), + [anon_sym_PIPE_PIPE] = ACTIONS(1914), + [anon_sym_EQ_TILDE] = ACTIONS(1914), + [anon_sym_EQ_EQ] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_BANG_EQ] = ACTIONS(1914), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1914), + }, + [2037] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5573), + }, + [2038] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5575), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2039] = { + [sym__concat] = ACTIONS(1922), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1922), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [anon_sym_EQ_TILDE] = ACTIONS(1922), + [anon_sym_EQ_EQ] = ACTIONS(1922), + [anon_sym_EQ] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1922), + [anon_sym_GT] = ACTIONS(1922), + [anon_sym_BANG_EQ] = ACTIONS(1922), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1922), + }, + [2040] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5577), + }, + [2041] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5539), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2042] = { + [sym__concat] = ACTIONS(2066), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), + [anon_sym_EQ_TILDE] = ACTIONS(2066), + [anon_sym_EQ_EQ] = ACTIONS(2066), + [anon_sym_EQ] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2066), + [anon_sym_GT] = ACTIONS(2066), + [anon_sym_BANG_EQ] = ACTIONS(2066), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2066), + }, + [2043] = { + [sym__concat] = ACTIONS(2132), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_EQ_TILDE] = ACTIONS(2132), + [anon_sym_EQ_EQ] = ACTIONS(2132), + [anon_sym_EQ] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2132), + [anon_sym_BANG_EQ] = ACTIONS(2132), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2132), + }, + [2044] = { + [anon_sym_esac] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_RPAREN] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5579), + [anon_sym_PIPE_AMP] = ACTIONS(5579), + [anon_sym_AMP_AMP] = ACTIONS(5579), + [anon_sym_PIPE_PIPE] = ACTIONS(5579), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5579), + }, + [2045] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_EQ_TILDE] = ACTIONS(2660), + [anon_sym_EQ_EQ] = ACTIONS(2660), + [anon_sym_EQ] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_GT] = ACTIONS(2660), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2660), + }, + [2046] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_EQ_TILDE] = ACTIONS(2660), + [anon_sym_EQ_EQ] = ACTIONS(2660), + [anon_sym_EQ] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_GT] = ACTIONS(2660), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2660), + }, + [2047] = { + [sym_do_group] = STATE(2404), + [sym_compound_statement] = STATE(2404), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(3656), + [sym_comment] = ACTIONS(53), + }, + [2048] = { + [sym__concat] = ACTIONS(4164), + [anon_sym_esac] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_SEMI_SEMI] = ACTIONS(4166), + [anon_sym_PIPE_AMP] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_EQ_TILDE] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_LF] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4166), + }, + [2049] = { + [sym__concat] = ACTIONS(4172), + [anon_sym_esac] = ACTIONS(4174), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_SEMI_SEMI] = ACTIONS(4174), + [anon_sym_PIPE_AMP] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4174), + [anon_sym_EQ_TILDE] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4174), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_BANG_EQ] = ACTIONS(4174), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym_LF] = ACTIONS(4172), + [anon_sym_AMP] = ACTIONS(4174), + }, + [2050] = { + [sym__concat] = ACTIONS(4259), + [anon_sym_esac] = ACTIONS(4261), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_SEMI_SEMI] = ACTIONS(4261), + [anon_sym_PIPE_AMP] = ACTIONS(4261), + [anon_sym_AMP_AMP] = ACTIONS(4261), + [anon_sym_PIPE_PIPE] = ACTIONS(4261), + [anon_sym_EQ_TILDE] = ACTIONS(4261), + [anon_sym_EQ_EQ] = ACTIONS(4261), + [anon_sym_EQ] = ACTIONS(4261), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4261), + [anon_sym_BANG_EQ] = ACTIONS(4261), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4261), + [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_LF] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + }, + [2051] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5583), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2052] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5585), + [sym_comment] = ACTIONS(53), + }, + [2053] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5587), + [sym_comment] = ACTIONS(53), + }, + [2054] = { + [anon_sym_RBRACE] = ACTIONS(5587), + [sym_comment] = ACTIONS(53), + }, + [2055] = { + [sym_concatenation] = STATE(2409), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2409), + [anon_sym_RBRACE] = ACTIONS(5589), + [anon_sym_EQ] = ACTIONS(5591), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5591), + [anon_sym_COLON_QMARK] = ACTIONS(5591), + [anon_sym_COLON_DASH] = ACTIONS(5591), + [anon_sym_PERCENT] = ACTIONS(5591), + [anon_sym_DASH] = ACTIONS(5591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2056] = { + [sym__concat] = ACTIONS(4275), + [anon_sym_esac] = ACTIONS(4277), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_SEMI_SEMI] = ACTIONS(4277), + [anon_sym_PIPE_AMP] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_EQ_TILDE] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4277), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4277), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_LF] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + }, + [2057] = { + [sym_concatenation] = STATE(2411), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2411), + [anon_sym_RBRACE] = ACTIONS(5595), + [anon_sym_EQ] = ACTIONS(5597), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5597), + [anon_sym_COLON_QMARK] = ACTIONS(5597), + [anon_sym_COLON_DASH] = ACTIONS(5597), + [anon_sym_PERCENT] = ACTIONS(5597), + [anon_sym_DASH] = ACTIONS(5597), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2058] = { + [sym__concat] = ACTIONS(4285), + [anon_sym_esac] = ACTIONS(4287), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_SEMI_SEMI] = ACTIONS(4287), + [anon_sym_PIPE_AMP] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_EQ_TILDE] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4287), + [anon_sym_GT] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4287), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_LF] = ACTIONS(4285), + [anon_sym_AMP] = ACTIONS(4287), + }, + [2059] = { + [sym_concatenation] = STATE(2413), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2413), + [anon_sym_RBRACE] = ACTIONS(5601), + [anon_sym_EQ] = ACTIONS(5603), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5605), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5603), + [anon_sym_COLON_QMARK] = ACTIONS(5603), + [anon_sym_COLON_DASH] = ACTIONS(5603), + [anon_sym_PERCENT] = ACTIONS(5603), + [anon_sym_DASH] = ACTIONS(5603), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2060] = { + [sym__concat] = ACTIONS(4295), + [anon_sym_esac] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4297), + [anon_sym_PIPE_AMP] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_EQ_TILDE] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_LF] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4297), + }, + [2061] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5607), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2062] = { + [sym__concat] = ACTIONS(4301), + [anon_sym_esac] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [anon_sym_PIPE_AMP] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_PIPE_PIPE] = ACTIONS(4303), + [anon_sym_EQ_TILDE] = ACTIONS(4303), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4303), + }, + [2063] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2064] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_EQ_TILDE] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3688), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3684), + }, + [2065] = { + [sym__terminated_statement] = STATE(1145), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1145), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(5613), + [anon_sym_elif] = ACTIONS(5613), + [anon_sym_else] = ACTIONS(5613), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [2066] = { + [anon_sym_esac] = ACTIONS(5615), + [anon_sym_PIPE] = ACTIONS(5615), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_SEMI_SEMI] = ACTIONS(5615), + [anon_sym_PIPE_AMP] = ACTIONS(5615), + [anon_sym_AMP_AMP] = ACTIONS(5615), + [anon_sym_PIPE_PIPE] = ACTIONS(5615), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5615), + [anon_sym_LF] = ACTIONS(5617), + [anon_sym_AMP] = ACTIONS(5615), + }, + [2067] = { + [aux_sym_concatenation_repeat1] = STATE(1635), + [sym__concat] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_RPAREN] = ACTIONS(5619), + [sym_comment] = ACTIONS(53), + }, + [2068] = { + [aux_sym_concatenation_repeat1] = STATE(1635), + [sym__concat] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_RPAREN] = ACTIONS(5621), + [sym_comment] = ACTIONS(53), + }, + [2069] = { + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_RPAREN] = ACTIONS(5621), + [sym_comment] = ACTIONS(53), + }, + [2070] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(5623), + [anon_sym_PLUS_EQ] = ACTIONS(5623), + [sym_comment] = ACTIONS(53), + }, + [2071] = { + [sym__terminated_statement] = STATE(2418), [sym_for_statement] = STATE(39), + [sym_c_style_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), [sym_case_statement] = STATE(39), @@ -50116,15 +54674,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(40), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -50162,45 +54720,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [1892] = { - [anon_sym_esac] = ACTIONS(5165), - [sym__special_characters] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5169), - [sym_raw_string] = ACTIONS(5167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5167), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LT_LPAREN] = ACTIONS(5167), - [anon_sym_GT_LPAREN] = ACTIONS(5167), + [2072] = { + [anon_sym_esac] = ACTIONS(5625), + [sym__special_characters] = ACTIONS(5627), + [anon_sym_DQUOTE] = ACTIONS(5627), + [anon_sym_DOLLAR] = ACTIONS(5629), + [sym_raw_string] = ACTIONS(5627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5627), + [anon_sym_BQUOTE] = ACTIONS(5627), + [anon_sym_LT_LPAREN] = ACTIONS(5627), + [anon_sym_GT_LPAREN] = ACTIONS(5627), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5169), + [sym_word] = ACTIONS(5629), }, - [1893] = { + [2073] = { [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5171), + [sym_word] = ACTIONS(5631), }, - [1894] = { + [2074] = { [sym_subshell] = STATE(70), [sym_test_command] = STATE(70), [sym_command] = STATE(70), - [sym_command_name] = STATE(1903), - [sym_variable_assignment] = STATE(30), + [sym_command_name] = STATE(2083), + [sym_variable_assignment] = STATE(2087), [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(1900), - [sym_simple_expansion] = STATE(1900), - [sym_string_expansion] = STATE(1900), - [sym_expansion] = STATE(1900), - [sym_command_substitution] = STATE(1900), - [sym_process_substitution] = STATE(1900), - [aux_sym_command_repeat1] = STATE(1907), + [sym_file_redirect] = STATE(2087), + [sym_concatenation] = STATE(30), + [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), + [aux_sym_command_repeat1] = STATE(2087), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(107), + [sym_variable_name] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -50208,6742 +54766,3846 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4423), + [sym__special_characters] = ACTIONS(4794), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4425), + [sym_raw_string] = ACTIONS(4796), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4425), + [sym_word] = ACTIONS(4796), }, - [1895] = { - [sym__expression] = STATE(2202), - [sym_binary_expression] = STATE(2202), - [sym_unary_expression] = STATE(2202), - [sym_parenthesized_expression] = STATE(2202), - [sym_concatenation] = STATE(2202), + [2075] = { + [sym__expression] = STATE(2420), + [sym_binary_expression] = STATE(2420), + [sym_unary_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(2420), + [sym_concatenation] = STATE(2420), [sym_string] = STATE(77), [sym_simple_expansion] = STATE(77), [sym_string_expansion] = STATE(77), [sym_expansion] = STATE(77), [sym_command_substitution] = STATE(77), [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(111), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [sym__special_characters] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - [sym_test_operator] = ACTIONS(131), + [sym_word] = ACTIONS(131), + [sym_test_operator] = ACTIONS(133), }, - [1896] = { - [sym__expression] = STATE(2203), - [sym_binary_expression] = STATE(2203), - [sym_unary_expression] = STATE(2203), - [sym_parenthesized_expression] = STATE(2203), - [sym_concatenation] = STATE(2203), + [2076] = { + [sym__expression] = STATE(2421), + [sym_binary_expression] = STATE(2421), + [sym_unary_expression] = STATE(2421), + [sym_parenthesized_expression] = STATE(2421), + [sym_concatenation] = STATE(2421), [sym_string] = STATE(88), [sym_simple_expansion] = STATE(88), [sym_string_expansion] = STATE(88), [sym_expansion] = STATE(88), [sym_command_substitution] = STATE(88), [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), - }, - [1897] = { - [sym_variable_assignment] = STATE(2215), - [sym_subscript] = STATE(2214), - [sym_concatenation] = STATE(2215), - [sym_string] = STATE(2208), - [sym_simple_expansion] = STATE(2208), - [sym_string_expansion] = STATE(2208), - [sym_expansion] = STATE(2208), - [sym_command_substitution] = STATE(2208), - [sym_process_substitution] = STATE(2208), - [aux_sym_declaration_command_repeat1] = STATE(2215), - [sym_variable_name] = ACTIONS(5173), - [anon_sym_esac] = ACTIONS(159), - [anon_sym_PIPE] = ACTIONS(159), - [anon_sym_SEMI_SEMI] = ACTIONS(159), - [anon_sym_PIPE_AMP] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(159), - [anon_sym_PIPE_PIPE] = ACTIONS(159), - [sym__special_characters] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [sym_raw_string] = ACTIONS(5181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5185), - [anon_sym_BQUOTE] = ACTIONS(5187), - [anon_sym_LT_LPAREN] = ACTIONS(5189), - [anon_sym_GT_LPAREN] = ACTIONS(5189), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5191), - [sym_word] = ACTIONS(5181), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_LF] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(159), - }, - [1898] = { - [sym_concatenation] = STATE(2225), - [sym_string] = STATE(2219), - [sym_simple_expansion] = STATE(2219), - [sym_string_expansion] = STATE(2219), - [sym_expansion] = STATE(2219), - [sym_command_substitution] = STATE(2219), - [sym_process_substitution] = STATE(2219), - [aux_sym_unset_command_repeat1] = STATE(2225), - [anon_sym_esac] = ACTIONS(183), - [anon_sym_PIPE] = ACTIONS(183), - [anon_sym_SEMI_SEMI] = ACTIONS(183), - [anon_sym_PIPE_AMP] = ACTIONS(183), - [anon_sym_AMP_AMP] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(183), - [sym__special_characters] = ACTIONS(5193), - [anon_sym_DQUOTE] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [sym_raw_string] = ACTIONS(5199), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5201), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5203), - [anon_sym_BQUOTE] = ACTIONS(5205), - [anon_sym_LT_LPAREN] = ACTIONS(5207), - [anon_sym_GT_LPAREN] = ACTIONS(5207), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5209), - [sym_word] = ACTIONS(5199), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LF] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(183), - }, - [1899] = { - [aux_sym_concatenation_repeat1] = STATE(2226), - [sym__simple_heredoc_body] = ACTIONS(221), - [sym__heredoc_body_beginning] = ACTIONS(221), - [sym_file_descriptor] = ACTIONS(221), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(225), - [anon_sym_PIPE_PIPE] = ACTIONS(225), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(225), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_AMP_GT_GT] = ACTIONS(225), - [anon_sym_LT_AMP] = ACTIONS(225), - [anon_sym_GT_AMP] = ACTIONS(225), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(225), - [anon_sym_LT_LT_LT] = ACTIONS(225), - [sym__special_characters] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(225), - [sym_raw_string] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(225), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_LF] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(225), - }, - [1900] = { - [aux_sym_concatenation_repeat1] = STATE(2226), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(249), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(249), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(249), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(249), - }, - [1901] = { - [aux_sym_concatenation_repeat1] = STATE(2226), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(249), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(249), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(249), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(249), - }, - [1902] = { - [anon_sym_esac] = ACTIONS(5165), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(5215), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [1903] = { - [sym_file_redirect] = STATE(2237), - [sym_heredoc_redirect] = STATE(2237), - [sym_heredoc_body] = STATE(200), - [sym_herestring_redirect] = STATE(2237), - [sym_concatenation] = STATE(2238), - [sym_string] = STATE(2236), - [sym_simple_expansion] = STATE(2236), - [sym_string_expansion] = STATE(2236), - [sym_expansion] = STATE(2236), - [sym_command_substitution] = STATE(2236), - [sym_process_substitution] = STATE(2236), - [aux_sym_while_statement_repeat1] = STATE(2237), - [aux_sym_command_repeat2] = STATE(2238), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5219), - [anon_sym_esac] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_SEMI_SEMI] = ACTIONS(343), - [anon_sym_PIPE_AMP] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_EQ_TILDE] = ACTIONS(5221), - [anon_sym_EQ_EQ] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5223), - [anon_sym_GT] = ACTIONS(5223), - [anon_sym_GT_GT] = ACTIONS(5223), - [anon_sym_AMP_GT] = ACTIONS(5223), - [anon_sym_AMP_GT_GT] = ACTIONS(5223), - [anon_sym_LT_AMP] = ACTIONS(5223), - [anon_sym_GT_AMP] = ACTIONS(5223), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5225), - [sym__special_characters] = ACTIONS(5227), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5229), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5229), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(343), - }, - [1904] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(5165), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(5215), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [1905] = { - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_PLUS_EQ] = ACTIONS(5163), - [sym_comment] = ACTIONS(53), - }, - [1906] = { - [sym__terminated_statement] = STATE(2242), - [sym_for_statement] = STATE(2240), - [sym_while_statement] = STATE(2240), - [sym_if_statement] = STATE(2240), - [sym_case_statement] = STATE(2240), - [sym_function_definition] = STATE(2240), - [sym_subshell] = STATE(2240), - [sym_pipeline] = STATE(2240), - [sym_list] = STATE(2240), - [sym_negated_command] = STATE(2240), - [sym_test_command] = STATE(2240), - [sym_declaration_command] = STATE(2240), - [sym_unset_command] = STATE(2240), - [sym_command] = STATE(2240), - [sym_command_name] = STATE(1903), - [sym_variable_assignment] = STATE(2241), - [sym_subscript] = STATE(1905), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(1900), - [sym_simple_expansion] = STATE(1900), - [sym_string_expansion] = STATE(1900), - [sym_expansion] = STATE(1900), - [sym_command_substitution] = STATE(1900), - [sym_process_substitution] = STATE(1900), - [aux_sym_program_repeat1] = STATE(2242), - [aux_sym_command_repeat1] = STATE(1907), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5165), - [anon_sym_SEMI_SEMI] = ACTIONS(5231), - [anon_sym_function] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), - [anon_sym_declare] = ACTIONS(4419), - [anon_sym_typeset] = ACTIONS(4419), - [anon_sym_export] = ACTIONS(4419), - [anon_sym_readonly] = ACTIONS(4419), - [anon_sym_local] = ACTIONS(4419), - [anon_sym_unset] = ACTIONS(4421), - [anon_sym_unsetenv] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4427), - }, - [1907] = { - [sym_command_name] = STATE(2243), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(1900), - [sym_simple_expansion] = STATE(1900), - [sym_string_expansion] = STATE(1900), - [sym_expansion] = STATE(1900), - [sym_command_substitution] = STATE(1900), - [sym_process_substitution] = STATE(1900), - [aux_sym_command_repeat1] = STATE(205), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(5233), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4425), - }, - [1908] = { - [sym__terminated_statement] = STATE(2244), - [sym_for_statement] = STATE(2240), - [sym_while_statement] = STATE(2240), - [sym_if_statement] = STATE(2240), - [sym_case_statement] = STATE(2240), - [sym_function_definition] = STATE(2240), - [sym_subshell] = STATE(2240), - [sym_pipeline] = STATE(2240), - [sym_list] = STATE(2240), - [sym_negated_command] = STATE(2240), - [sym_test_command] = STATE(2240), - [sym_declaration_command] = STATE(2240), - [sym_unset_command] = STATE(2240), - [sym_command] = STATE(2240), - [sym_command_name] = STATE(1903), - [sym_variable_assignment] = STATE(2241), - [sym_subscript] = STATE(1905), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(1900), - [sym_simple_expansion] = STATE(1900), - [sym_string_expansion] = STATE(1900), - [sym_expansion] = STATE(1900), - [sym_command_substitution] = STATE(1900), - [sym_process_substitution] = STATE(1900), - [aux_sym_program_repeat1] = STATE(2244), - [aux_sym_command_repeat1] = STATE(1907), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5165), - [anon_sym_SEMI_SEMI] = ACTIONS(5231), - [anon_sym_function] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), - [anon_sym_declare] = ACTIONS(4419), - [anon_sym_typeset] = ACTIONS(4419), - [anon_sym_export] = ACTIONS(4419), - [anon_sym_readonly] = ACTIONS(4419), - [anon_sym_local] = ACTIONS(4419), - [anon_sym_unset] = ACTIONS(4421), - [anon_sym_unsetenv] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4427), - }, - [1909] = { - [aux_sym_case_item_repeat1] = STATE(1909), - [anon_sym_PIPE] = ACTIONS(5235), - [anon_sym_RPAREN] = ACTIONS(5161), - [sym_comment] = ACTIONS(53), - }, - [1910] = { - [aux_sym_concatenation_repeat1] = STATE(1910), - [sym__concat] = ACTIONS(2530), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_RPAREN] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - }, - [1911] = { - [anon_sym_esac] = ACTIONS(5238), - [sym__special_characters] = ACTIONS(5240), - [anon_sym_DQUOTE] = ACTIONS(5240), - [anon_sym_DOLLAR] = ACTIONS(5242), - [sym_raw_string] = ACTIONS(5240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5240), - [anon_sym_BQUOTE] = ACTIONS(5240), - [anon_sym_LT_LPAREN] = ACTIONS(5240), - [anon_sym_GT_LPAREN] = ACTIONS(5240), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5242), - }, - [1912] = { - [anon_sym_esac] = ACTIONS(5238), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(5244), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [1913] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(5238), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(5244), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [1914] = { - [sym__terminated_statement] = STATE(2242), - [sym_for_statement] = STATE(2247), - [sym_while_statement] = STATE(2247), - [sym_if_statement] = STATE(2247), - [sym_case_statement] = STATE(2247), - [sym_function_definition] = STATE(2247), - [sym_subshell] = STATE(2247), - [sym_pipeline] = STATE(2247), - [sym_list] = STATE(2247), - [sym_negated_command] = STATE(2247), - [sym_test_command] = STATE(2247), - [sym_declaration_command] = STATE(2247), - [sym_unset_command] = STATE(2247), - [sym_command] = STATE(2247), - [sym_command_name] = STATE(1903), - [sym_variable_assignment] = STATE(2248), - [sym_subscript] = STATE(1905), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(1900), - [sym_simple_expansion] = STATE(1900), - [sym_string_expansion] = STATE(1900), - [sym_expansion] = STATE(1900), - [sym_command_substitution] = STATE(1900), - [sym_process_substitution] = STATE(1900), - [aux_sym_program_repeat1] = STATE(2242), - [aux_sym_command_repeat1] = STATE(1907), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5238), - [anon_sym_SEMI_SEMI] = ACTIONS(5246), - [anon_sym_function] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), - [anon_sym_declare] = ACTIONS(4419), - [anon_sym_typeset] = ACTIONS(4419), - [anon_sym_export] = ACTIONS(4419), - [anon_sym_readonly] = ACTIONS(4419), - [anon_sym_local] = ACTIONS(4419), - [anon_sym_unset] = ACTIONS(4421), - [anon_sym_unsetenv] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4427), - }, - [1915] = { - [sym__terminated_statement] = STATE(2249), - [sym_for_statement] = STATE(2247), - [sym_while_statement] = STATE(2247), - [sym_if_statement] = STATE(2247), - [sym_case_statement] = STATE(2247), - [sym_function_definition] = STATE(2247), - [sym_subshell] = STATE(2247), - [sym_pipeline] = STATE(2247), - [sym_list] = STATE(2247), - [sym_negated_command] = STATE(2247), - [sym_test_command] = STATE(2247), - [sym_declaration_command] = STATE(2247), - [sym_unset_command] = STATE(2247), - [sym_command] = STATE(2247), - [sym_command_name] = STATE(1903), - [sym_variable_assignment] = STATE(2248), - [sym_subscript] = STATE(1905), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(1900), - [sym_simple_expansion] = STATE(1900), - [sym_string_expansion] = STATE(1900), - [sym_expansion] = STATE(1900), - [sym_command_substitution] = STATE(1900), - [sym_process_substitution] = STATE(1900), - [aux_sym_program_repeat1] = STATE(2249), - [aux_sym_command_repeat1] = STATE(1907), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5238), - [anon_sym_SEMI_SEMI] = ACTIONS(5246), - [anon_sym_function] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), - [anon_sym_declare] = ACTIONS(4419), - [anon_sym_typeset] = ACTIONS(4419), - [anon_sym_export] = ACTIONS(4419), - [anon_sym_readonly] = ACTIONS(4419), - [anon_sym_local] = ACTIONS(4419), - [anon_sym_unset] = ACTIONS(4421), - [anon_sym_unsetenv] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4427), - }, - [1916] = { - [anon_sym_esac] = ACTIONS(5248), - [anon_sym_PIPE] = ACTIONS(5248), - [anon_sym_RPAREN] = ACTIONS(5248), - [anon_sym_SEMI_SEMI] = ACTIONS(5248), - [anon_sym_PIPE_AMP] = ACTIONS(5248), - [anon_sym_AMP_AMP] = ACTIONS(5248), - [anon_sym_PIPE_PIPE] = ACTIONS(5248), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5248), - [anon_sym_LF] = ACTIONS(5250), - [anon_sym_AMP] = ACTIONS(5248), - }, - [1917] = { - [aux_sym_case_item_repeat1] = STATE(2251), - [aux_sym_concatenation_repeat1] = STATE(1503), - [sym__concat] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(5252), - [sym_comment] = ACTIONS(53), - }, - [1918] = { - [aux_sym_case_item_repeat1] = STATE(2253), - [aux_sym_concatenation_repeat1] = STATE(1503), - [sym__concat] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(5254), - [sym_comment] = ACTIONS(53), - }, - [1919] = { - [aux_sym_case_item_repeat1] = STATE(2253), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(5254), - [sym_comment] = ACTIONS(53), - }, - [1920] = { - [anon_sym_esac] = ACTIONS(5256), - [sym_comment] = ACTIONS(53), - }, - [1921] = { - [anon_sym_esac] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5258), - [anon_sym_RPAREN] = ACTIONS(5258), - [anon_sym_SEMI_SEMI] = ACTIONS(5258), - [anon_sym_PIPE_AMP] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5258), - [anon_sym_LF] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5258), - }, - [1922] = { - [anon_sym_esac] = ACTIONS(5262), - [sym_comment] = ACTIONS(53), - }, - [1923] = { - [sym__concat] = ACTIONS(4831), - [anon_sym_in] = ACTIONS(4833), - [anon_sym_SEMI_SEMI] = ACTIONS(4833), - [sym__special_characters] = ACTIONS(4833), - [anon_sym_DQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4833), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), - [anon_sym_BQUOTE] = ACTIONS(4833), - [anon_sym_LT_LPAREN] = ACTIONS(4833), - [anon_sym_GT_LPAREN] = ACTIONS(4833), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4833), - [anon_sym_SEMI] = ACTIONS(4833), - [anon_sym_LF] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4833), - }, - [1924] = { - [sym__concat] = ACTIONS(4835), - [anon_sym_in] = ACTIONS(4837), - [anon_sym_SEMI_SEMI] = ACTIONS(4837), - [sym__special_characters] = ACTIONS(4837), - [anon_sym_DQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4837), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4837), - [anon_sym_LT_LPAREN] = ACTIONS(4837), - [anon_sym_GT_LPAREN] = ACTIONS(4837), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym_LF] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - }, - [1925] = { - [sym__concat] = ACTIONS(4839), - [anon_sym_in] = ACTIONS(4841), - [anon_sym_SEMI_SEMI] = ACTIONS(4841), - [sym__special_characters] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), - [anon_sym_BQUOTE] = ACTIONS(4841), - [anon_sym_LT_LPAREN] = ACTIONS(4841), - [anon_sym_GT_LPAREN] = ACTIONS(4841), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4841), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_LF] = ACTIONS(4839), - [anon_sym_AMP] = ACTIONS(4841), - }, - [1926] = { - [sym__concat] = ACTIONS(4843), - [anon_sym_in] = ACTIONS(4845), - [anon_sym_SEMI_SEMI] = ACTIONS(4845), - [sym__special_characters] = ACTIONS(4845), - [anon_sym_DQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), - [anon_sym_BQUOTE] = ACTIONS(4845), - [anon_sym_LT_LPAREN] = ACTIONS(4845), - [anon_sym_GT_LPAREN] = ACTIONS(4845), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4845), - [anon_sym_SEMI] = ACTIONS(4845), - [anon_sym_LF] = ACTIONS(4843), - [anon_sym_AMP] = ACTIONS(4845), - }, - [1927] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5264), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1928] = { - [sym__concat] = ACTIONS(4849), - [anon_sym_in] = ACTIONS(4851), - [anon_sym_SEMI_SEMI] = ACTIONS(4851), - [sym__special_characters] = ACTIONS(4851), - [anon_sym_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4851), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4851), - [anon_sym_LT_LPAREN] = ACTIONS(4851), - [anon_sym_GT_LPAREN] = ACTIONS(4851), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4851), - [anon_sym_SEMI] = ACTIONS(4851), - [anon_sym_LF] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4851), - }, - [1929] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5266), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1930] = { - [sym__concat] = ACTIONS(4855), - [anon_sym_in] = ACTIONS(4857), - [anon_sym_SEMI_SEMI] = ACTIONS(4857), - [sym__special_characters] = ACTIONS(4857), - [anon_sym_DQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4857), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), - [anon_sym_BQUOTE] = ACTIONS(4857), - [anon_sym_LT_LPAREN] = ACTIONS(4857), - [anon_sym_GT_LPAREN] = ACTIONS(4857), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4857), - [anon_sym_SEMI] = ACTIONS(4857), - [anon_sym_LF] = ACTIONS(4855), - [anon_sym_AMP] = ACTIONS(4857), - }, - [1931] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5268), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1932] = { - [sym__concat] = ACTIONS(4861), - [anon_sym_in] = ACTIONS(4863), - [anon_sym_SEMI_SEMI] = ACTIONS(4863), - [sym__special_characters] = ACTIONS(4863), - [anon_sym_DQUOTE] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4863), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), - [anon_sym_BQUOTE] = ACTIONS(4863), - [anon_sym_LT_LPAREN] = ACTIONS(4863), - [anon_sym_GT_LPAREN] = ACTIONS(4863), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4863), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4863), - }, - [1933] = { - [sym__concat] = ACTIONS(4865), - [anon_sym_in] = ACTIONS(4867), - [anon_sym_SEMI_SEMI] = ACTIONS(4867), - [sym__special_characters] = ACTIONS(4867), - [anon_sym_DQUOTE] = ACTIONS(4867), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), - [anon_sym_BQUOTE] = ACTIONS(4867), - [anon_sym_LT_LPAREN] = ACTIONS(4867), - [anon_sym_GT_LPAREN] = ACTIONS(4867), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_LF] = ACTIONS(4865), - [anon_sym_AMP] = ACTIONS(4867), - }, - [1934] = { - [aux_sym_concatenation_repeat1] = STATE(1934), - [sym__concat] = ACTIONS(2622), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [1935] = { - [aux_sym_concatenation_repeat1] = STATE(1937), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1107), - [anon_sym_SEMI_SEMI] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - }, - [1936] = { - [aux_sym_concatenation_repeat1] = STATE(1937), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(1111), - [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), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_LF] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1111), - }, - [1937] = { - [aux_sym_concatenation_repeat1] = STATE(2259), - [sym__concat] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(707), - [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), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [1938] = { - [aux_sym_concatenation_repeat1] = STATE(1940), - [sym_file_descriptor] = ACTIONS(1105), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1107), - [anon_sym_SEMI_SEMI] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_AMP_GT] = ACTIONS(1107), - [anon_sym_AMP_GT_GT] = ACTIONS(1107), - [anon_sym_LT_AMP] = ACTIONS(1107), - [anon_sym_GT_AMP] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_LT_LT_DASH] = ACTIONS(1107), - [anon_sym_LT_LT_LT] = ACTIONS(1107), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - }, - [1939] = { - [aux_sym_concatenation_repeat1] = STATE(1940), - [sym_file_descriptor] = ACTIONS(1109), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(1111), - [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(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_LF] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1111), - }, - [1940] = { - [aux_sym_concatenation_repeat1] = STATE(2260), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(707), - [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(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(707), - [anon_sym_LT_AMP] = ACTIONS(707), - [anon_sym_GT_AMP] = ACTIONS(707), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_LT_LT_DASH] = ACTIONS(707), - [anon_sym_LT_LT_LT] = ACTIONS(707), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [1941] = { - [sym__concat] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4831), - [anon_sym_PIPE_PIPE] = ACTIONS(4831), - [anon_sym_RBRACK] = ACTIONS(4831), - [anon_sym_EQ_TILDE] = ACTIONS(4831), - [anon_sym_EQ_EQ] = ACTIONS(4831), - [anon_sym_EQ] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4831), - [anon_sym_GT] = ACTIONS(4831), - [anon_sym_BANG_EQ] = ACTIONS(4831), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4831), - }, - [1942] = { - [sym__concat] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_EQ_TILDE] = ACTIONS(4835), - [anon_sym_EQ_EQ] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4835), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4835), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4835), - }, - [1943] = { - [sym__concat] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_RBRACK] = ACTIONS(4839), - [anon_sym_EQ_TILDE] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4841), - [anon_sym_LT] = ACTIONS(4839), - [anon_sym_GT] = ACTIONS(4839), - [anon_sym_BANG_EQ] = ACTIONS(4839), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4839), - }, - [1944] = { - [sym__concat] = ACTIONS(4843), - [anon_sym_AMP_AMP] = ACTIONS(4843), - [anon_sym_PIPE_PIPE] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_EQ_TILDE] = ACTIONS(4843), - [anon_sym_EQ_EQ] = ACTIONS(4843), - [anon_sym_EQ] = ACTIONS(4845), - [anon_sym_LT] = ACTIONS(4843), - [anon_sym_GT] = ACTIONS(4843), - [anon_sym_BANG_EQ] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4843), - }, - [1945] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5270), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1946] = { - [sym__concat] = ACTIONS(4849), - [anon_sym_AMP_AMP] = ACTIONS(4849), - [anon_sym_PIPE_PIPE] = ACTIONS(4849), - [anon_sym_RBRACK] = ACTIONS(4849), - [anon_sym_EQ_TILDE] = ACTIONS(4849), - [anon_sym_EQ_EQ] = ACTIONS(4849), - [anon_sym_EQ] = ACTIONS(4851), - [anon_sym_LT] = ACTIONS(4849), - [anon_sym_GT] = ACTIONS(4849), - [anon_sym_BANG_EQ] = ACTIONS(4849), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4849), - }, - [1947] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5272), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1948] = { - [sym__concat] = ACTIONS(4855), - [anon_sym_AMP_AMP] = ACTIONS(4855), - [anon_sym_PIPE_PIPE] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4855), - [anon_sym_EQ_TILDE] = ACTIONS(4855), - [anon_sym_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4855), - [anon_sym_GT] = ACTIONS(4855), - [anon_sym_BANG_EQ] = ACTIONS(4855), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4855), - }, - [1949] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5274), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1950] = { - [sym__concat] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_RBRACK] = ACTIONS(4861), - [anon_sym_EQ_TILDE] = ACTIONS(4861), - [anon_sym_EQ_EQ] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_BANG_EQ] = ACTIONS(4861), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4861), - }, - [1951] = { - [sym__concat] = ACTIONS(4865), - [anon_sym_AMP_AMP] = ACTIONS(4865), - [anon_sym_PIPE_PIPE] = ACTIONS(4865), - [anon_sym_RBRACK] = ACTIONS(4865), - [anon_sym_EQ_TILDE] = ACTIONS(4865), - [anon_sym_EQ_EQ] = ACTIONS(4865), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_BANG_EQ] = ACTIONS(4865), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4865), - }, - [1952] = { - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(1672), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_LT_LT_LT] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [1953] = { - [aux_sym_concatenation_repeat1] = STATE(1953), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(5276), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_LT_LT_LT] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [1954] = { - [sym_file_descriptor] = ACTIONS(1679), - [sym__concat] = ACTIONS(1679), - [anon_sym_esac] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - }, - [1955] = { - [anon_sym_DQUOTE] = ACTIONS(5279), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [1956] = { - [sym_concatenation] = STATE(2268), - [sym_string] = STATE(2267), - [sym_simple_expansion] = STATE(2267), - [sym_string_expansion] = STATE(2267), - [sym_expansion] = STATE(2267), - [sym_command_substitution] = STATE(2267), - [sym_process_substitution] = STATE(2267), - [anon_sym_RBRACE] = ACTIONS(5281), - [sym__special_characters] = ACTIONS(5283), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(5285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5285), - }, - [1957] = { - [sym_file_descriptor] = ACTIONS(1764), - [sym__concat] = ACTIONS(1764), - [anon_sym_esac] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_SEMI_SEMI] = ACTIONS(1766), - [anon_sym_PIPE_AMP] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_GT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_AMP_GT] = ACTIONS(1766), - [anon_sym_AMP_GT_GT] = ACTIONS(1766), - [anon_sym_LT_AMP] = ACTIONS(1766), - [anon_sym_GT_AMP] = ACTIONS(1766), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_LT_LT_DASH] = ACTIONS(1766), - [anon_sym_LT_LT_LT] = ACTIONS(1766), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1766), - }, - [1958] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5287), - }, - [1959] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1960] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(5291), - [sym_comment] = ACTIONS(53), - }, - [1961] = { - [sym_concatenation] = STATE(2274), - [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), - [aux_sym_expansion_repeat1] = STATE(2274), - [anon_sym_RBRACE] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5295), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5295), - [anon_sym_COLON_QMARK] = ACTIONS(5295), - [anon_sym_COLON_DASH] = ACTIONS(5295), - [anon_sym_PERCENT] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(5295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1962] = { - [sym_concatenation] = STATE(2277), - [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), - [aux_sym_expansion_repeat1] = STATE(2277), - [anon_sym_RBRACE] = ACTIONS(5301), - [anon_sym_EQ] = ACTIONS(5303), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5305), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5307), - [anon_sym_COLON] = ACTIONS(5303), - [anon_sym_COLON_QMARK] = ACTIONS(5303), - [anon_sym_COLON_DASH] = ACTIONS(5303), - [anon_sym_PERCENT] = ACTIONS(5303), - [anon_sym_DASH] = ACTIONS(5303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1963] = { - [sym_concatenation] = STATE(2279), - [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), - [aux_sym_expansion_repeat1] = STATE(2279), - [anon_sym_RBRACE] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5309), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5311), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5313), - [anon_sym_COLON] = ACTIONS(5309), - [anon_sym_COLON_QMARK] = ACTIONS(5309), - [anon_sym_COLON_DASH] = ACTIONS(5309), - [anon_sym_PERCENT] = ACTIONS(5309), - [anon_sym_DASH] = ACTIONS(5309), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1964] = { - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [1965] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5315), - }, - [1966] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5317), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1967] = { - [sym_file_descriptor] = ACTIONS(1840), - [sym__concat] = ACTIONS(1840), - [anon_sym_esac] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_SEMI_SEMI] = ACTIONS(1842), - [anon_sym_PIPE_AMP] = ACTIONS(1842), - [anon_sym_AMP_AMP] = ACTIONS(1842), - [anon_sym_PIPE_PIPE] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_GT] = ACTIONS(1842), - [anon_sym_GT_GT] = ACTIONS(1842), - [anon_sym_AMP_GT] = ACTIONS(1842), - [anon_sym_AMP_GT_GT] = ACTIONS(1842), - [anon_sym_LT_AMP] = ACTIONS(1842), - [anon_sym_GT_AMP] = ACTIONS(1842), - [anon_sym_LT_LT] = ACTIONS(1842), - [anon_sym_LT_LT_DASH] = ACTIONS(1842), - [anon_sym_LT_LT_LT] = ACTIONS(1842), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LF] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1842), - }, - [1968] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5319), - }, - [1969] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1970] = { - [sym_file_descriptor] = ACTIONS(1980), - [sym__concat] = ACTIONS(1980), - [anon_sym_esac] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1982), - [anon_sym_PIPE_AMP] = ACTIONS(1982), - [anon_sym_AMP_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_GT] = ACTIONS(1982), - [anon_sym_GT_GT] = ACTIONS(1982), - [anon_sym_AMP_GT] = ACTIONS(1982), - [anon_sym_AMP_GT_GT] = ACTIONS(1982), - [anon_sym_LT_AMP] = ACTIONS(1982), - [anon_sym_GT_AMP] = ACTIONS(1982), - [anon_sym_LT_LT] = ACTIONS(1982), - [anon_sym_LT_LT_DASH] = ACTIONS(1982), - [anon_sym_LT_LT_LT] = ACTIONS(1982), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [1971] = { - [sym_file_descriptor] = ACTIONS(2046), - [sym__concat] = ACTIONS(2046), - [anon_sym_esac] = ACTIONS(2048), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2048), - [anon_sym_SEMI_SEMI] = ACTIONS(2048), - [anon_sym_PIPE_AMP] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_LT] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_AMP_GT] = ACTIONS(2048), - [anon_sym_AMP_GT_GT] = ACTIONS(2048), - [anon_sym_LT_AMP] = ACTIONS(2048), - [anon_sym_GT_AMP] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_LT_LT_DASH] = ACTIONS(2048), - [anon_sym_LT_LT_LT] = ACTIONS(2048), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LF] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2048), - }, - [1972] = { - [sym__concat] = ACTIONS(4831), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4831), - [anon_sym_PIPE_PIPE] = ACTIONS(4831), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4831), - [anon_sym_EQ_TILDE] = ACTIONS(4831), - [anon_sym_EQ_EQ] = ACTIONS(4831), - [anon_sym_EQ] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4831), - [anon_sym_GT] = ACTIONS(4831), - [anon_sym_BANG_EQ] = ACTIONS(4831), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4831), - }, - [1973] = { - [sym__concat] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4835), - [anon_sym_EQ_TILDE] = ACTIONS(4835), - [anon_sym_EQ_EQ] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4835), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4835), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4835), - }, - [1974] = { - [sym__concat] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4839), - [anon_sym_EQ_TILDE] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4841), - [anon_sym_LT] = ACTIONS(4839), - [anon_sym_GT] = ACTIONS(4839), - [anon_sym_BANG_EQ] = ACTIONS(4839), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4839), - }, - [1975] = { - [sym__concat] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_AMP_AMP] = ACTIONS(4843), - [anon_sym_PIPE_PIPE] = ACTIONS(4843), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4843), - [anon_sym_EQ_TILDE] = ACTIONS(4843), - [anon_sym_EQ_EQ] = ACTIONS(4843), - [anon_sym_EQ] = ACTIONS(4845), - [anon_sym_LT] = ACTIONS(4843), - [anon_sym_GT] = ACTIONS(4843), - [anon_sym_BANG_EQ] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4843), - }, - [1976] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5321), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1977] = { - [sym__concat] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4849), - [anon_sym_AMP_AMP] = ACTIONS(4849), - [anon_sym_PIPE_PIPE] = ACTIONS(4849), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4849), - [anon_sym_EQ_TILDE] = ACTIONS(4849), - [anon_sym_EQ_EQ] = ACTIONS(4849), - [anon_sym_EQ] = ACTIONS(4851), - [anon_sym_LT] = ACTIONS(4849), - [anon_sym_GT] = ACTIONS(4849), - [anon_sym_BANG_EQ] = ACTIONS(4849), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4849), - }, - [1978] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5323), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1979] = { - [sym__concat] = ACTIONS(4855), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_AMP_AMP] = ACTIONS(4855), - [anon_sym_PIPE_PIPE] = ACTIONS(4855), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4855), - [anon_sym_EQ_TILDE] = ACTIONS(4855), - [anon_sym_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4855), - [anon_sym_GT] = ACTIONS(4855), - [anon_sym_BANG_EQ] = ACTIONS(4855), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4855), - }, - [1980] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5325), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1981] = { - [sym__concat] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4861), - [anon_sym_EQ_TILDE] = ACTIONS(4861), - [anon_sym_EQ_EQ] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_BANG_EQ] = ACTIONS(4861), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4861), - }, - [1982] = { - [sym__concat] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_RPAREN] = ACTIONS(4865), - [anon_sym_AMP_AMP] = ACTIONS(4865), - [anon_sym_PIPE_PIPE] = ACTIONS(4865), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4865), - [anon_sym_EQ_TILDE] = ACTIONS(4865), - [anon_sym_EQ_EQ] = ACTIONS(4865), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_BANG_EQ] = ACTIONS(4865), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4865), - }, - [1983] = { - [sym__concat] = ACTIONS(4831), - [sym_variable_name] = ACTIONS(4831), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_RPAREN] = ACTIONS(4833), - [anon_sym_SEMI_SEMI] = ACTIONS(4833), - [anon_sym_PIPE_AMP] = ACTIONS(4833), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [sym__special_characters] = ACTIONS(4833), - [anon_sym_DQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4833), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), - [anon_sym_BQUOTE] = ACTIONS(4833), - [anon_sym_LT_LPAREN] = ACTIONS(4833), - [anon_sym_GT_LPAREN] = ACTIONS(4833), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), - [sym_word] = ACTIONS(4833), - [anon_sym_SEMI] = ACTIONS(4833), - [anon_sym_LF] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4833), - }, - [1984] = { - [sym__concat] = ACTIONS(4835), - [sym_variable_name] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_RPAREN] = ACTIONS(4837), - [anon_sym_SEMI_SEMI] = ACTIONS(4837), - [anon_sym_PIPE_AMP] = ACTIONS(4837), - [anon_sym_AMP_AMP] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4837), - [sym__special_characters] = ACTIONS(4837), - [anon_sym_DQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4837), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4837), - [anon_sym_LT_LPAREN] = ACTIONS(4837), - [anon_sym_GT_LPAREN] = ACTIONS(4837), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4837), - [sym_word] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym_LF] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - }, - [1985] = { - [sym__concat] = ACTIONS(4839), - [sym_variable_name] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_RPAREN] = ACTIONS(4841), - [anon_sym_SEMI_SEMI] = ACTIONS(4841), - [anon_sym_PIPE_AMP] = ACTIONS(4841), - [anon_sym_AMP_AMP] = ACTIONS(4841), - [anon_sym_PIPE_PIPE] = ACTIONS(4841), - [sym__special_characters] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), - [anon_sym_BQUOTE] = ACTIONS(4841), - [anon_sym_LT_LPAREN] = ACTIONS(4841), - [anon_sym_GT_LPAREN] = ACTIONS(4841), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4841), - [sym_word] = ACTIONS(4841), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_LF] = ACTIONS(4839), - [anon_sym_AMP] = ACTIONS(4841), - }, - [1986] = { - [sym__concat] = ACTIONS(4843), - [sym_variable_name] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_RPAREN] = ACTIONS(4845), - [anon_sym_SEMI_SEMI] = ACTIONS(4845), - [anon_sym_PIPE_AMP] = ACTIONS(4845), - [anon_sym_AMP_AMP] = ACTIONS(4845), - [anon_sym_PIPE_PIPE] = ACTIONS(4845), - [sym__special_characters] = ACTIONS(4845), - [anon_sym_DQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), - [anon_sym_BQUOTE] = ACTIONS(4845), - [anon_sym_LT_LPAREN] = ACTIONS(4845), - [anon_sym_GT_LPAREN] = ACTIONS(4845), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), - [sym_word] = ACTIONS(4845), - [anon_sym_SEMI] = ACTIONS(4845), - [anon_sym_LF] = ACTIONS(4843), - [anon_sym_AMP] = ACTIONS(4845), - }, - [1987] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1988] = { - [sym__concat] = ACTIONS(4849), - [sym_variable_name] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4851), - [anon_sym_SEMI_SEMI] = ACTIONS(4851), - [anon_sym_PIPE_AMP] = ACTIONS(4851), - [anon_sym_AMP_AMP] = ACTIONS(4851), - [anon_sym_PIPE_PIPE] = ACTIONS(4851), - [sym__special_characters] = ACTIONS(4851), - [anon_sym_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4851), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4851), - [anon_sym_LT_LPAREN] = ACTIONS(4851), - [anon_sym_GT_LPAREN] = ACTIONS(4851), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4851), - [sym_word] = ACTIONS(4851), - [anon_sym_SEMI] = ACTIONS(4851), - [anon_sym_LF] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4851), - }, - [1989] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5329), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1990] = { - [sym__concat] = ACTIONS(4855), - [sym_variable_name] = ACTIONS(4855), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_RPAREN] = ACTIONS(4857), - [anon_sym_SEMI_SEMI] = ACTIONS(4857), - [anon_sym_PIPE_AMP] = ACTIONS(4857), - [anon_sym_AMP_AMP] = ACTIONS(4857), - [anon_sym_PIPE_PIPE] = ACTIONS(4857), - [sym__special_characters] = ACTIONS(4857), - [anon_sym_DQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4857), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), - [anon_sym_BQUOTE] = ACTIONS(4857), - [anon_sym_LT_LPAREN] = ACTIONS(4857), - [anon_sym_GT_LPAREN] = ACTIONS(4857), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4857), - [sym_word] = ACTIONS(4857), - [anon_sym_SEMI] = ACTIONS(4857), - [anon_sym_LF] = ACTIONS(4855), - [anon_sym_AMP] = ACTIONS(4857), - }, - [1991] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1992] = { - [sym__concat] = ACTIONS(4861), - [sym_variable_name] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_SEMI_SEMI] = ACTIONS(4863), - [anon_sym_PIPE_AMP] = ACTIONS(4863), - [anon_sym_AMP_AMP] = ACTIONS(4863), - [anon_sym_PIPE_PIPE] = ACTIONS(4863), - [sym__special_characters] = ACTIONS(4863), - [anon_sym_DQUOTE] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4863), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), - [anon_sym_BQUOTE] = ACTIONS(4863), - [anon_sym_LT_LPAREN] = ACTIONS(4863), - [anon_sym_GT_LPAREN] = ACTIONS(4863), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4863), - [sym_word] = ACTIONS(4863), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4863), - }, - [1993] = { - [sym__concat] = ACTIONS(4865), - [sym_variable_name] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_RPAREN] = ACTIONS(4867), - [anon_sym_SEMI_SEMI] = ACTIONS(4867), - [anon_sym_PIPE_AMP] = ACTIONS(4867), - [anon_sym_AMP_AMP] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4867), - [sym__special_characters] = ACTIONS(4867), - [anon_sym_DQUOTE] = ACTIONS(4867), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), - [anon_sym_BQUOTE] = ACTIONS(4867), - [anon_sym_LT_LPAREN] = ACTIONS(4867), - [anon_sym_GT_LPAREN] = ACTIONS(4867), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4867), - [sym_word] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_LF] = ACTIONS(4865), - [anon_sym_AMP] = ACTIONS(4867), - }, - [1994] = { - [sym__concat] = ACTIONS(4831), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_RPAREN] = ACTIONS(4833), - [anon_sym_SEMI_SEMI] = ACTIONS(4833), - [anon_sym_PIPE_AMP] = ACTIONS(4833), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [sym__special_characters] = ACTIONS(4833), - [anon_sym_DQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4833), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), - [anon_sym_BQUOTE] = ACTIONS(4833), - [anon_sym_LT_LPAREN] = ACTIONS(4833), - [anon_sym_GT_LPAREN] = ACTIONS(4833), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), - [sym_word] = ACTIONS(4833), - [anon_sym_SEMI] = ACTIONS(4833), - [anon_sym_LF] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4833), - }, - [1995] = { - [sym__concat] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_RPAREN] = ACTIONS(4837), - [anon_sym_SEMI_SEMI] = ACTIONS(4837), - [anon_sym_PIPE_AMP] = ACTIONS(4837), - [anon_sym_AMP_AMP] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4837), - [sym__special_characters] = ACTIONS(4837), - [anon_sym_DQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4837), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4837), - [anon_sym_LT_LPAREN] = ACTIONS(4837), - [anon_sym_GT_LPAREN] = ACTIONS(4837), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4837), - [sym_word] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym_LF] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - }, - [1996] = { - [sym__concat] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_RPAREN] = ACTIONS(4841), - [anon_sym_SEMI_SEMI] = ACTIONS(4841), - [anon_sym_PIPE_AMP] = ACTIONS(4841), - [anon_sym_AMP_AMP] = ACTIONS(4841), - [anon_sym_PIPE_PIPE] = ACTIONS(4841), - [sym__special_characters] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), - [anon_sym_BQUOTE] = ACTIONS(4841), - [anon_sym_LT_LPAREN] = ACTIONS(4841), - [anon_sym_GT_LPAREN] = ACTIONS(4841), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4841), - [sym_word] = ACTIONS(4841), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_LF] = ACTIONS(4839), - [anon_sym_AMP] = ACTIONS(4841), - }, - [1997] = { - [sym__concat] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_RPAREN] = ACTIONS(4845), - [anon_sym_SEMI_SEMI] = ACTIONS(4845), - [anon_sym_PIPE_AMP] = ACTIONS(4845), - [anon_sym_AMP_AMP] = ACTIONS(4845), - [anon_sym_PIPE_PIPE] = ACTIONS(4845), - [sym__special_characters] = ACTIONS(4845), - [anon_sym_DQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), - [anon_sym_BQUOTE] = ACTIONS(4845), - [anon_sym_LT_LPAREN] = ACTIONS(4845), - [anon_sym_GT_LPAREN] = ACTIONS(4845), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), - [sym_word] = ACTIONS(4845), - [anon_sym_SEMI] = ACTIONS(4845), - [anon_sym_LF] = ACTIONS(4843), - [anon_sym_AMP] = ACTIONS(4845), - }, - [1998] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5333), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [1999] = { - [sym__concat] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4851), - [anon_sym_SEMI_SEMI] = ACTIONS(4851), - [anon_sym_PIPE_AMP] = ACTIONS(4851), - [anon_sym_AMP_AMP] = ACTIONS(4851), - [anon_sym_PIPE_PIPE] = ACTIONS(4851), - [sym__special_characters] = ACTIONS(4851), - [anon_sym_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4851), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4851), - [anon_sym_LT_LPAREN] = ACTIONS(4851), - [anon_sym_GT_LPAREN] = ACTIONS(4851), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4851), - [sym_word] = ACTIONS(4851), - [anon_sym_SEMI] = ACTIONS(4851), - [anon_sym_LF] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4851), - }, - [2000] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2001] = { - [sym__concat] = ACTIONS(4855), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_RPAREN] = ACTIONS(4857), - [anon_sym_SEMI_SEMI] = ACTIONS(4857), - [anon_sym_PIPE_AMP] = ACTIONS(4857), - [anon_sym_AMP_AMP] = ACTIONS(4857), - [anon_sym_PIPE_PIPE] = ACTIONS(4857), - [sym__special_characters] = ACTIONS(4857), - [anon_sym_DQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4857), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), - [anon_sym_BQUOTE] = ACTIONS(4857), - [anon_sym_LT_LPAREN] = ACTIONS(4857), - [anon_sym_GT_LPAREN] = ACTIONS(4857), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4857), - [sym_word] = ACTIONS(4857), - [anon_sym_SEMI] = ACTIONS(4857), - [anon_sym_LF] = ACTIONS(4855), - [anon_sym_AMP] = ACTIONS(4857), - }, - [2002] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5337), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2003] = { - [sym__concat] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_SEMI_SEMI] = ACTIONS(4863), - [anon_sym_PIPE_AMP] = ACTIONS(4863), - [anon_sym_AMP_AMP] = ACTIONS(4863), - [anon_sym_PIPE_PIPE] = ACTIONS(4863), - [sym__special_characters] = ACTIONS(4863), - [anon_sym_DQUOTE] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4863), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), - [anon_sym_BQUOTE] = ACTIONS(4863), - [anon_sym_LT_LPAREN] = ACTIONS(4863), - [anon_sym_GT_LPAREN] = ACTIONS(4863), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4863), - [sym_word] = ACTIONS(4863), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4863), - }, - [2004] = { - [sym__concat] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_RPAREN] = ACTIONS(4867), - [anon_sym_SEMI_SEMI] = ACTIONS(4867), - [anon_sym_PIPE_AMP] = ACTIONS(4867), - [anon_sym_AMP_AMP] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4867), - [sym__special_characters] = ACTIONS(4867), - [anon_sym_DQUOTE] = ACTIONS(4867), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), - [anon_sym_BQUOTE] = ACTIONS(4867), - [anon_sym_LT_LPAREN] = ACTIONS(4867), - [anon_sym_GT_LPAREN] = ACTIONS(4867), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4867), - [sym_word] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_LF] = ACTIONS(4865), - [anon_sym_AMP] = ACTIONS(4867), - }, - [2005] = { - [sym_file_descriptor] = ACTIONS(4831), - [sym__concat] = ACTIONS(4831), - [sym_variable_name] = ACTIONS(4831), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_PIPE_AMP] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4831), - [anon_sym_PIPE_PIPE] = ACTIONS(4831), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_GT_GT] = ACTIONS(4831), - [anon_sym_AMP_GT] = ACTIONS(4833), - [anon_sym_AMP_GT_GT] = ACTIONS(4831), - [anon_sym_LT_AMP] = ACTIONS(4831), - [anon_sym_GT_AMP] = ACTIONS(4831), - [sym__special_characters] = ACTIONS(4831), - [anon_sym_DQUOTE] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4831), - [anon_sym_BQUOTE] = ACTIONS(4831), - [anon_sym_LT_LPAREN] = ACTIONS(4831), - [anon_sym_GT_LPAREN] = ACTIONS(4831), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4831), - }, - [2006] = { - [sym_file_descriptor] = ACTIONS(4835), - [sym__concat] = ACTIONS(4835), - [sym_variable_name] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_PIPE_AMP] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4835), - [anon_sym_AMP_GT] = ACTIONS(4837), - [anon_sym_AMP_GT_GT] = ACTIONS(4835), - [anon_sym_LT_AMP] = ACTIONS(4835), - [anon_sym_GT_AMP] = ACTIONS(4835), - [sym__special_characters] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4835), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LT_LPAREN] = ACTIONS(4835), - [anon_sym_GT_LPAREN] = ACTIONS(4835), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4835), - }, - [2007] = { - [sym_file_descriptor] = ACTIONS(4839), - [sym__concat] = ACTIONS(4839), - [sym_variable_name] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_PIPE_AMP] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_GT_GT] = ACTIONS(4839), - [anon_sym_AMP_GT] = ACTIONS(4841), - [anon_sym_AMP_GT_GT] = ACTIONS(4839), - [anon_sym_LT_AMP] = ACTIONS(4839), - [anon_sym_GT_AMP] = ACTIONS(4839), - [sym__special_characters] = ACTIONS(4839), - [anon_sym_DQUOTE] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4839), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), - [anon_sym_BQUOTE] = ACTIONS(4839), - [anon_sym_LT_LPAREN] = ACTIONS(4839), - [anon_sym_GT_LPAREN] = ACTIONS(4839), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4839), - }, - [2008] = { - [sym_file_descriptor] = ACTIONS(4843), - [sym__concat] = ACTIONS(4843), - [sym_variable_name] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_PIPE_AMP] = ACTIONS(4843), - [anon_sym_AMP_AMP] = ACTIONS(4843), - [anon_sym_PIPE_PIPE] = ACTIONS(4843), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_GT_GT] = ACTIONS(4843), - [anon_sym_AMP_GT] = ACTIONS(4845), - [anon_sym_AMP_GT_GT] = ACTIONS(4843), - [anon_sym_LT_AMP] = ACTIONS(4843), - [anon_sym_GT_AMP] = ACTIONS(4843), - [sym__special_characters] = ACTIONS(4843), - [anon_sym_DQUOTE] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4843), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4843), - [anon_sym_BQUOTE] = ACTIONS(4843), - [anon_sym_LT_LPAREN] = ACTIONS(4843), - [anon_sym_GT_LPAREN] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4843), - }, - [2009] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2010] = { - [sym_file_descriptor] = ACTIONS(4849), - [sym__concat] = ACTIONS(4849), - [sym_variable_name] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4849), - [anon_sym_PIPE_AMP] = ACTIONS(4849), - [anon_sym_AMP_AMP] = ACTIONS(4849), - [anon_sym_PIPE_PIPE] = ACTIONS(4849), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_GT_GT] = ACTIONS(4849), - [anon_sym_AMP_GT] = ACTIONS(4851), - [anon_sym_AMP_GT_GT] = ACTIONS(4849), - [anon_sym_LT_AMP] = ACTIONS(4849), - [anon_sym_GT_AMP] = ACTIONS(4849), - [sym__special_characters] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4849), - [anon_sym_BQUOTE] = ACTIONS(4849), - [anon_sym_LT_LPAREN] = ACTIONS(4849), - [anon_sym_GT_LPAREN] = ACTIONS(4849), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4849), - }, - [2011] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5341), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2012] = { - [sym_file_descriptor] = ACTIONS(4855), - [sym__concat] = ACTIONS(4855), - [sym_variable_name] = ACTIONS(4855), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_PIPE_AMP] = ACTIONS(4855), - [anon_sym_AMP_AMP] = ACTIONS(4855), - [anon_sym_PIPE_PIPE] = ACTIONS(4855), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_GT_GT] = ACTIONS(4855), - [anon_sym_AMP_GT] = ACTIONS(4857), - [anon_sym_AMP_GT_GT] = ACTIONS(4855), - [anon_sym_LT_AMP] = ACTIONS(4855), - [anon_sym_GT_AMP] = ACTIONS(4855), - [sym__special_characters] = ACTIONS(4855), - [anon_sym_DQUOTE] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4855), - [anon_sym_BQUOTE] = ACTIONS(4855), - [anon_sym_LT_LPAREN] = ACTIONS(4855), - [anon_sym_GT_LPAREN] = ACTIONS(4855), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4855), - }, - [2013] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2014] = { - [sym_file_descriptor] = ACTIONS(4861), - [sym__concat] = ACTIONS(4861), - [sym_variable_name] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4863), - [anon_sym_GT] = ACTIONS(4863), - [anon_sym_GT_GT] = ACTIONS(4861), - [anon_sym_AMP_GT] = ACTIONS(4863), - [anon_sym_AMP_GT_GT] = ACTIONS(4861), - [anon_sym_LT_AMP] = ACTIONS(4861), - [anon_sym_GT_AMP] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4861), - }, - [2015] = { - [sym_file_descriptor] = ACTIONS(4865), - [sym__concat] = ACTIONS(4865), - [sym_variable_name] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_RPAREN] = ACTIONS(4865), - [anon_sym_PIPE_AMP] = ACTIONS(4865), - [anon_sym_AMP_AMP] = ACTIONS(4865), - [anon_sym_PIPE_PIPE] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4867), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4865), - [anon_sym_AMP_GT] = ACTIONS(4867), - [anon_sym_AMP_GT_GT] = ACTIONS(4865), - [anon_sym_LT_AMP] = ACTIONS(4865), - [anon_sym_GT_AMP] = ACTIONS(4865), - [sym__special_characters] = ACTIONS(4865), - [anon_sym_DQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4865), - [anon_sym_BQUOTE] = ACTIONS(4865), - [anon_sym_LT_LPAREN] = ACTIONS(4865), - [anon_sym_GT_LPAREN] = ACTIONS(4865), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4865), - }, - [2016] = { - [sym__concat] = ACTIONS(4831), - [anon_sym_DQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym__string_content] = ACTIONS(4831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), - [anon_sym_BQUOTE] = ACTIONS(4833), - [sym_comment] = ACTIONS(177), - }, - [2017] = { - [sym__concat] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym__string_content] = ACTIONS(4835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4837), - [sym_comment] = ACTIONS(177), - }, - [2018] = { - [sym__concat] = ACTIONS(4839), - [anon_sym_DQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym__string_content] = ACTIONS(4839), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), - [anon_sym_BQUOTE] = ACTIONS(4841), - [sym_comment] = ACTIONS(177), - }, - [2019] = { - [sym__concat] = ACTIONS(4843), - [anon_sym_DQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym__string_content] = ACTIONS(4843), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), - [anon_sym_BQUOTE] = ACTIONS(4845), - [sym_comment] = ACTIONS(177), - }, - [2020] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5345), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2021] = { - [sym__concat] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym__string_content] = ACTIONS(4849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4851), - [sym_comment] = ACTIONS(177), - }, - [2022] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2023] = { - [sym__concat] = ACTIONS(4855), - [anon_sym_DQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym__string_content] = ACTIONS(4855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), - [anon_sym_BQUOTE] = ACTIONS(4857), - [sym_comment] = ACTIONS(177), - }, - [2024] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5349), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2025] = { - [sym__concat] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym__string_content] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), - [anon_sym_BQUOTE] = ACTIONS(4863), - [sym_comment] = ACTIONS(177), - }, - [2026] = { - [sym__concat] = ACTIONS(4865), - [anon_sym_DQUOTE] = ACTIONS(4867), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym__string_content] = ACTIONS(4865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), - [anon_sym_BQUOTE] = ACTIONS(4867), - [sym_comment] = ACTIONS(177), - }, - [2027] = { - [anon_sym_RBRACE] = ACTIONS(4302), - [anon_sym_EQ] = ACTIONS(5351), - [sym__special_characters] = ACTIONS(5351), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_DOLLAR] = ACTIONS(5351), - [sym_raw_string] = ACTIONS(4302), - [anon_sym_POUND] = ACTIONS(4302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_COLON] = ACTIONS(5351), - [anon_sym_COLON_QMARK] = ACTIONS(5351), - [anon_sym_COLON_DASH] = ACTIONS(5351), - [anon_sym_PERCENT] = ACTIONS(5351), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4302), - [anon_sym_BQUOTE] = ACTIONS(4302), - [anon_sym_LT_LPAREN] = ACTIONS(4302), - [anon_sym_GT_LPAREN] = ACTIONS(4302), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5351), - }, - [2028] = { - [anon_sym_RBRACE] = ACTIONS(4304), - [anon_sym_EQ] = ACTIONS(5353), - [sym__special_characters] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR] = ACTIONS(5353), - [sym_raw_string] = ACTIONS(4304), - [anon_sym_POUND] = ACTIONS(4304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4304), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_COLON_QMARK] = ACTIONS(5353), - [anon_sym_COLON_DASH] = ACTIONS(5353), - [anon_sym_PERCENT] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4304), - [anon_sym_BQUOTE] = ACTIONS(4304), - [anon_sym_LT_LPAREN] = ACTIONS(4304), - [anon_sym_GT_LPAREN] = ACTIONS(4304), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5353), - }, - [2029] = { - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [sym_comment] = ACTIONS(53), - }, - [2030] = { - [sym__concat] = ACTIONS(2770), - [anon_sym_RBRACE] = ACTIONS(2770), - [sym_comment] = ACTIONS(53), - }, - [2031] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5355), - [sym_comment] = ACTIONS(53), - }, - [2032] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5357), - [sym_comment] = ACTIONS(53), - }, - [2033] = { - [anon_sym_RBRACE] = ACTIONS(5357), - [sym_comment] = ACTIONS(53), - }, - [2034] = { - [sym_concatenation] = STATE(2301), - [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), - [aux_sym_expansion_repeat1] = STATE(2301), - [anon_sym_RBRACE] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5361), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_COLON_QMARK] = ACTIONS(5361), - [anon_sym_COLON_DASH] = ACTIONS(5361), - [anon_sym_PERCENT] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2035] = { - [sym__concat] = ACTIONS(2852), - [anon_sym_RBRACE] = ACTIONS(2852), - [sym_comment] = ACTIONS(53), - }, - [2036] = { - [sym_concatenation] = STATE(2304), - [sym_string] = STATE(2303), - [sym_simple_expansion] = STATE(2303), - [sym_string_expansion] = STATE(2303), - [sym_expansion] = STATE(2303), - [sym_command_substitution] = STATE(2303), - [sym_process_substitution] = STATE(2303), - [anon_sym_RBRACE] = ACTIONS(5357), - [sym__special_characters] = ACTIONS(5365), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(5367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5367), - }, - [2037] = { - [sym__concat] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2895), - [sym_comment] = ACTIONS(53), - }, - [2038] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5369), - }, - [2039] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5371), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2040] = { - [sym__concat] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [sym_comment] = ACTIONS(53), - }, - [2041] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5373), - }, - [2042] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5375), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2043] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5377), - }, - [2044] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5357), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2045] = { - [sym_concatenation] = STATE(2311), - [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), - [aux_sym_expansion_repeat1] = STATE(2311), - [anon_sym_RBRACE] = ACTIONS(5379), - [anon_sym_EQ] = ACTIONS(5381), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5381), - [anon_sym_COLON_QMARK] = ACTIONS(5381), - [anon_sym_COLON_DASH] = ACTIONS(5381), - [anon_sym_PERCENT] = ACTIONS(5381), - [anon_sym_DASH] = ACTIONS(5381), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2046] = { - [sym__concat] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [sym_comment] = ACTIONS(53), - }, - [2047] = { - [sym_concatenation] = STATE(2313), - [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), - [aux_sym_expansion_repeat1] = STATE(2313), - [anon_sym_RBRACE] = ACTIONS(5385), - [anon_sym_EQ] = ACTIONS(5387), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5389), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5387), - [anon_sym_COLON_QMARK] = ACTIONS(5387), - [anon_sym_COLON_DASH] = ACTIONS(5387), - [anon_sym_PERCENT] = ACTIONS(5387), - [anon_sym_DASH] = ACTIONS(5387), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2048] = { - [sym__concat] = ACTIONS(3905), - [anon_sym_RBRACE] = ACTIONS(3905), - [anon_sym_EQ] = ACTIONS(3907), - [sym__special_characters] = ACTIONS(3907), - [anon_sym_DQUOTE] = ACTIONS(3905), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3905), - [anon_sym_POUND] = ACTIONS(3905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3907), - [anon_sym_COLON_QMARK] = ACTIONS(3907), - [anon_sym_COLON_DASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3905), - [anon_sym_BQUOTE] = ACTIONS(3905), - [anon_sym_LT_LPAREN] = ACTIONS(3905), - [anon_sym_GT_LPAREN] = ACTIONS(3905), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3907), - }, - [2049] = { - [sym__concat] = ACTIONS(3913), - [anon_sym_RBRACE] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3913), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3913), - [anon_sym_POUND] = ACTIONS(3913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COLON_QMARK] = ACTIONS(3915), - [anon_sym_COLON_DASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), - [anon_sym_BQUOTE] = ACTIONS(3913), - [anon_sym_LT_LPAREN] = ACTIONS(3913), - [anon_sym_GT_LPAREN] = ACTIONS(3913), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3915), - }, - [2050] = { - [sym__concat] = ACTIONS(4000), - [anon_sym_RBRACE] = ACTIONS(4000), - [anon_sym_EQ] = ACTIONS(4002), - [sym__special_characters] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4000), - [anon_sym_POUND] = ACTIONS(4000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), - [anon_sym_COLON] = ACTIONS(4002), - [anon_sym_COLON_QMARK] = ACTIONS(4002), - [anon_sym_COLON_DASH] = ACTIONS(4002), - [anon_sym_PERCENT] = ACTIONS(4002), - [anon_sym_DASH] = ACTIONS(4002), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), - [anon_sym_BQUOTE] = ACTIONS(4000), - [anon_sym_LT_LPAREN] = ACTIONS(4000), - [anon_sym_GT_LPAREN] = ACTIONS(4000), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4002), - }, - [2051] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5391), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2052] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5393), - [sym_comment] = ACTIONS(53), - }, - [2053] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5395), - [sym_comment] = ACTIONS(53), - }, - [2054] = { - [anon_sym_RBRACE] = ACTIONS(5395), - [sym_comment] = ACTIONS(53), - }, - [2055] = { - [sym_concatenation] = STATE(2318), - [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), - [aux_sym_expansion_repeat1] = STATE(2318), - [anon_sym_RBRACE] = ACTIONS(5397), - [anon_sym_EQ] = ACTIONS(5399), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5401), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5399), - [anon_sym_COLON_QMARK] = ACTIONS(5399), - [anon_sym_COLON_DASH] = ACTIONS(5399), - [anon_sym_PERCENT] = ACTIONS(5399), - [anon_sym_DASH] = ACTIONS(5399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2056] = { - [sym__concat] = ACTIONS(4016), - [anon_sym_RBRACE] = ACTIONS(4016), - [anon_sym_EQ] = ACTIONS(4018), - [sym__special_characters] = ACTIONS(4018), - [anon_sym_DQUOTE] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym_raw_string] = ACTIONS(4016), - [anon_sym_POUND] = ACTIONS(4016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COLON_QMARK] = ACTIONS(4018), - [anon_sym_COLON_DASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4016), - [anon_sym_BQUOTE] = ACTIONS(4016), - [anon_sym_LT_LPAREN] = ACTIONS(4016), - [anon_sym_GT_LPAREN] = ACTIONS(4016), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4018), - }, - [2057] = { - [sym_concatenation] = STATE(2320), - [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), - [aux_sym_expansion_repeat1] = STATE(2320), - [anon_sym_RBRACE] = ACTIONS(5403), - [anon_sym_EQ] = ACTIONS(5405), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5407), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5405), - [anon_sym_COLON_QMARK] = ACTIONS(5405), - [anon_sym_COLON_DASH] = ACTIONS(5405), - [anon_sym_PERCENT] = ACTIONS(5405), - [anon_sym_DASH] = ACTIONS(5405), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2058] = { - [sym__concat] = ACTIONS(4026), - [anon_sym_RBRACE] = ACTIONS(4026), - [anon_sym_EQ] = ACTIONS(4028), - [sym__special_characters] = ACTIONS(4028), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_POUND] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_COLON] = ACTIONS(4028), - [anon_sym_COLON_QMARK] = ACTIONS(4028), - [anon_sym_COLON_DASH] = ACTIONS(4028), - [anon_sym_PERCENT] = ACTIONS(4028), - [anon_sym_DASH] = ACTIONS(4028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4028), - }, - [2059] = { - [sym_concatenation] = STATE(2322), - [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), - [aux_sym_expansion_repeat1] = STATE(2322), - [anon_sym_RBRACE] = ACTIONS(5409), - [anon_sym_EQ] = ACTIONS(5411), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_COLON_QMARK] = ACTIONS(5411), - [anon_sym_COLON_DASH] = ACTIONS(5411), - [anon_sym_PERCENT] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(5411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2060] = { - [sym__concat] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_EQ] = ACTIONS(4038), - [sym__special_characters] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_POUND] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_COLON] = ACTIONS(4038), - [anon_sym_COLON_QMARK] = ACTIONS(4038), - [anon_sym_COLON_DASH] = ACTIONS(4038), - [anon_sym_PERCENT] = ACTIONS(4038), - [anon_sym_DASH] = ACTIONS(4038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4038), - }, - [2061] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5415), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2062] = { - [sym__concat] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_EQ] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4042), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4042), - [anon_sym_POUND] = ACTIONS(4042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), - [anon_sym_COLON] = ACTIONS(4044), - [anon_sym_COLON_QMARK] = ACTIONS(4044), - [anon_sym_COLON_DASH] = ACTIONS(4044), - [anon_sym_PERCENT] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), - [anon_sym_BQUOTE] = ACTIONS(4042), - [anon_sym_LT_LPAREN] = ACTIONS(4042), - [anon_sym_GT_LPAREN] = ACTIONS(4042), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4044), - }, - [2063] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5417), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2064] = { - [sym__simple_heredoc_body] = ACTIONS(5419), - [sym__heredoc_body_beginning] = ACTIONS(5419), - [sym_file_descriptor] = ACTIONS(5419), - [sym__concat] = ACTIONS(5419), - [anon_sym_esac] = ACTIONS(5421), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5421), - [anon_sym_SEMI_SEMI] = ACTIONS(5421), - [anon_sym_PIPE_AMP] = ACTIONS(5421), - [anon_sym_AMP_AMP] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5421), - [anon_sym_EQ_TILDE] = ACTIONS(5421), - [anon_sym_EQ_EQ] = ACTIONS(5421), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_GT_GT] = ACTIONS(5421), - [anon_sym_AMP_GT] = ACTIONS(5421), - [anon_sym_AMP_GT_GT] = ACTIONS(5421), - [anon_sym_LT_AMP] = ACTIONS(5421), - [anon_sym_GT_AMP] = ACTIONS(5421), - [anon_sym_LT_LT] = ACTIONS(5421), - [anon_sym_LT_LT_DASH] = ACTIONS(5421), - [anon_sym_LT_LT_LT] = ACTIONS(5421), - [sym__special_characters] = ACTIONS(5421), - [anon_sym_DQUOTE] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), - [anon_sym_BQUOTE] = ACTIONS(5421), - [anon_sym_LT_LPAREN] = ACTIONS(5421), - [anon_sym_GT_LPAREN] = ACTIONS(5421), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5421), - [anon_sym_SEMI] = ACTIONS(5421), - [anon_sym_LF] = ACTIONS(5419), - [anon_sym_AMP] = ACTIONS(5421), - }, - [2065] = { - [sym__simple_heredoc_body] = ACTIONS(5423), - [sym__heredoc_body_beginning] = ACTIONS(5423), - [sym_file_descriptor] = ACTIONS(5423), - [sym__concat] = ACTIONS(5423), - [anon_sym_esac] = ACTIONS(5425), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5425), - [anon_sym_SEMI_SEMI] = ACTIONS(5425), - [anon_sym_PIPE_AMP] = ACTIONS(5425), - [anon_sym_AMP_AMP] = ACTIONS(5425), - [anon_sym_PIPE_PIPE] = ACTIONS(5425), - [anon_sym_EQ_TILDE] = ACTIONS(5425), - [anon_sym_EQ_EQ] = ACTIONS(5425), - [anon_sym_LT] = ACTIONS(5425), - [anon_sym_GT] = ACTIONS(5425), - [anon_sym_GT_GT] = ACTIONS(5425), - [anon_sym_AMP_GT] = ACTIONS(5425), - [anon_sym_AMP_GT_GT] = ACTIONS(5425), - [anon_sym_LT_AMP] = ACTIONS(5425), - [anon_sym_GT_AMP] = ACTIONS(5425), - [anon_sym_LT_LT] = ACTIONS(5425), - [anon_sym_LT_LT_DASH] = ACTIONS(5425), - [anon_sym_LT_LT_LT] = ACTIONS(5425), - [sym__special_characters] = ACTIONS(5425), - [anon_sym_DQUOTE] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), - [anon_sym_BQUOTE] = ACTIONS(5425), - [anon_sym_LT_LPAREN] = ACTIONS(5425), - [anon_sym_GT_LPAREN] = ACTIONS(5425), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5425), - [anon_sym_SEMI] = ACTIONS(5425), - [anon_sym_LF] = ACTIONS(5423), - [anon_sym_AMP] = ACTIONS(5425), - }, - [2066] = { - [sym__simple_heredoc_body] = ACTIONS(5427), - [sym__heredoc_body_beginning] = ACTIONS(5427), - [sym_file_descriptor] = ACTIONS(5427), - [sym__concat] = ACTIONS(5427), - [anon_sym_esac] = ACTIONS(5429), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_SEMI_SEMI] = ACTIONS(5429), - [anon_sym_PIPE_AMP] = ACTIONS(5429), - [anon_sym_AMP_AMP] = ACTIONS(5429), - [anon_sym_PIPE_PIPE] = ACTIONS(5429), - [anon_sym_EQ_TILDE] = ACTIONS(5429), - [anon_sym_EQ_EQ] = ACTIONS(5429), - [anon_sym_LT] = ACTIONS(5429), - [anon_sym_GT] = ACTIONS(5429), - [anon_sym_GT_GT] = ACTIONS(5429), - [anon_sym_AMP_GT] = ACTIONS(5429), - [anon_sym_AMP_GT_GT] = ACTIONS(5429), - [anon_sym_LT_AMP] = ACTIONS(5429), - [anon_sym_GT_AMP] = ACTIONS(5429), - [anon_sym_LT_LT] = ACTIONS(5429), - [anon_sym_LT_LT_DASH] = ACTIONS(5429), - [anon_sym_LT_LT_LT] = ACTIONS(5429), - [sym__special_characters] = ACTIONS(5429), - [anon_sym_DQUOTE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), - [anon_sym_BQUOTE] = ACTIONS(5429), - [anon_sym_LT_LPAREN] = ACTIONS(5429), - [anon_sym_GT_LPAREN] = ACTIONS(5429), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5429), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5427), - [anon_sym_AMP] = ACTIONS(5429), - }, - [2067] = { - [anon_sym_PIPE] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_PIPE_AMP] = ACTIONS(4389), - [anon_sym_AMP_AMP] = ACTIONS(4389), - [anon_sym_PIPE_PIPE] = ACTIONS(4389), - [anon_sym_BQUOTE] = ACTIONS(4389), - [sym_comment] = ACTIONS(53), - }, - [2068] = { - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_RPAREN] = ACTIONS(3512), - [anon_sym_PIPE_AMP] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BQUOTE] = ACTIONS(3512), - [sym_comment] = ACTIONS(53), - }, - [2069] = { - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4395), - [anon_sym_PIPE_AMP] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4395), - [sym_comment] = ACTIONS(53), - }, - [2070] = { - [anon_sym_fi] = ACTIONS(5431), - [sym_comment] = ACTIONS(53), - }, - [2071] = { - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_PIPE_AMP] = ACTIONS(4439), - [anon_sym_AMP_AMP] = ACTIONS(4439), - [anon_sym_PIPE_PIPE] = ACTIONS(4439), - [anon_sym_BQUOTE] = ACTIONS(4439), - [sym_comment] = ACTIONS(53), - }, - [2072] = { - [anon_sym_esac] = ACTIONS(5433), - [sym_comment] = ACTIONS(53), - }, - [2073] = { - [anon_sym_PIPE] = ACTIONS(4467), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_PIPE_AMP] = ACTIONS(4469), - [anon_sym_AMP_AMP] = ACTIONS(4469), - [anon_sym_PIPE_PIPE] = ACTIONS(4469), - [anon_sym_BQUOTE] = ACTIONS(4469), - [sym_comment] = ACTIONS(53), - }, - [2074] = { - [sym_case_item] = STATE(1508), - [sym_last_case_item] = STATE(2327), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1508), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), - }, - [2075] = { - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_PIPE_AMP] = ACTIONS(4473), - [anon_sym_AMP_AMP] = ACTIONS(4473), - [anon_sym_PIPE_PIPE] = ACTIONS(4473), - [anon_sym_BQUOTE] = ACTIONS(4473), - [sym_comment] = ACTIONS(53), - }, - [2076] = { - [anon_sym_esac] = ACTIONS(5435), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(139), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(157), }, [2077] = { - [anon_sym_PIPE] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4479), - [anon_sym_PIPE_AMP] = ACTIONS(4479), - [anon_sym_AMP_AMP] = ACTIONS(4479), - [anon_sym_PIPE_PIPE] = ACTIONS(4479), - [anon_sym_BQUOTE] = ACTIONS(4479), - [sym_comment] = ACTIONS(53), + [sym_variable_assignment] = STATE(2432), + [sym_subscript] = STATE(2433), + [sym_concatenation] = STATE(2432), + [sym_string] = STATE(2426), + [sym_simple_expansion] = STATE(2426), + [sym_string_expansion] = STATE(2426), + [sym_expansion] = STATE(2426), + [sym_command_substitution] = STATE(2426), + [sym_process_substitution] = STATE(2426), + [aux_sym_declaration_command_repeat1] = STATE(2434), + [sym_variable_name] = ACTIONS(5633), + [anon_sym_esac] = ACTIONS(161), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_SEMI_SEMI] = ACTIONS(161), + [anon_sym_PIPE_AMP] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(161), + [anon_sym_PIPE_PIPE] = ACTIONS(161), + [sym__special_characters] = ACTIONS(5635), + [anon_sym_DQUOTE] = ACTIONS(5637), + [anon_sym_DOLLAR] = ACTIONS(5639), + [sym_raw_string] = ACTIONS(5641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5643), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5645), + [anon_sym_BQUOTE] = ACTIONS(5647), + [anon_sym_LT_LPAREN] = ACTIONS(5649), + [anon_sym_GT_LPAREN] = ACTIONS(5649), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5651), + [sym_word] = ACTIONS(5641), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LF] = ACTIONS(183), + [anon_sym_AMP] = ACTIONS(161), }, [2078] = { - [sym_case_item] = STATE(1508), - [sym_last_case_item] = STATE(2329), - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_string_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [aux_sym_case_statement_repeat1] = STATE(1508), - [sym__special_characters] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), + [sym_concatenation] = STATE(2444), + [sym_string] = STATE(2438), + [sym_simple_expansion] = STATE(2438), + [sym_string_expansion] = STATE(2438), + [sym_expansion] = STATE(2438), + [sym_command_substitution] = STATE(2438), + [sym_process_substitution] = STATE(2438), + [aux_sym_unset_command_repeat1] = STATE(2444), + [anon_sym_esac] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [sym__special_characters] = ACTIONS(5653), + [anon_sym_DQUOTE] = ACTIONS(5655), + [anon_sym_DOLLAR] = ACTIONS(5657), + [sym_raw_string] = ACTIONS(5659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5663), + [anon_sym_BQUOTE] = ACTIONS(5665), + [anon_sym_LT_LPAREN] = ACTIONS(5667), + [anon_sym_GT_LPAREN] = ACTIONS(5667), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5669), + [sym_word] = ACTIONS(5659), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(205), + [anon_sym_AMP] = ACTIONS(185), }, [2079] = { - [anon_sym_PIPE] = ACTIONS(4509), - [anon_sym_RPAREN] = ACTIONS(4511), - [anon_sym_PIPE_AMP] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_BQUOTE] = ACTIONS(4511), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2445), + [sym__simple_heredoc_body] = ACTIONS(223), + [sym__heredoc_body_beginning] = ACTIONS(223), + [sym_file_descriptor] = ACTIONS(223), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(227), + [anon_sym_SEMI_SEMI] = ACTIONS(227), + [anon_sym_PIPE_AMP] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_EQ_TILDE] = ACTIONS(227), + [anon_sym_EQ_EQ] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_GT] = ACTIONS(227), + [anon_sym_AMP_GT] = ACTIONS(227), + [anon_sym_AMP_GT_GT] = ACTIONS(227), + [anon_sym_LT_AMP] = ACTIONS(227), + [anon_sym_GT_AMP] = ACTIONS(227), + [anon_sym_LT_LT] = ACTIONS(227), + [anon_sym_LT_LT_DASH] = ACTIONS(227), + [anon_sym_LT_LT_LT] = ACTIONS(227), + [sym__special_characters] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(227), + [sym_raw_string] = ACTIONS(227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(227), + [anon_sym_BQUOTE] = ACTIONS(227), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(227), + [anon_sym_LF] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(227), }, [2080] = { - [aux_sym_concatenation_repeat1] = STATE(2083), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_PIPE_AMP] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2445), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(251), + [anon_sym_PIPE_AMP] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [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(251), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [anon_sym_LT_LT_LT] = ACTIONS(251), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LT_LPAREN] = ACTIONS(251), + [anon_sym_GT_LPAREN] = ACTIONS(251), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), }, [2081] = { - [aux_sym_concatenation_repeat1] = STATE(2083), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2445), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(251), + [anon_sym_LPAREN] = ACTIONS(5671), + [anon_sym_PIPE_AMP] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [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(251), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [anon_sym_LT_LT_LT] = ACTIONS(251), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LT_LPAREN] = ACTIONS(251), + [anon_sym_GT_LPAREN] = ACTIONS(251), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), }, [2082] = { - [anon_sym_PIPE] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(5625), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(5675), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2083] = { - [aux_sym_concatenation_repeat1] = STATE(2330), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [sym_comment] = ACTIONS(53), + [sym_file_redirect] = STATE(2456), + [sym_heredoc_redirect] = STATE(2456), + [sym_heredoc_body] = STATE(201), + [sym_herestring_redirect] = STATE(2456), + [sym_concatenation] = STATE(202), + [sym_string] = STATE(2455), + [sym_simple_expansion] = STATE(2455), + [sym_string_expansion] = STATE(2455), + [sym_expansion] = STATE(2455), + [sym_command_substitution] = STATE(2455), + [sym_process_substitution] = STATE(2455), + [aux_sym_while_statement_repeat1] = STATE(2456), + [aux_sym_command_repeat2] = STATE(2457), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5679), + [anon_sym_esac] = ACTIONS(345), + [anon_sym_PIPE] = ACTIONS(345), + [anon_sym_SEMI_SEMI] = ACTIONS(345), + [anon_sym_PIPE_AMP] = ACTIONS(345), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(5681), + [anon_sym_EQ_EQ] = ACTIONS(5681), + [anon_sym_LT] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5683), + [anon_sym_GT_GT] = ACTIONS(5683), + [anon_sym_AMP_GT] = ACTIONS(5683), + [anon_sym_AMP_GT_GT] = ACTIONS(5683), + [anon_sym_LT_AMP] = ACTIONS(5683), + [anon_sym_GT_AMP] = ACTIONS(5683), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(5685), + [sym__special_characters] = ACTIONS(5687), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5689), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_LF] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(345), }, [2084] = { - [aux_sym_concatenation_repeat1] = STATE(2088), - [sym_file_descriptor] = ACTIONS(1105), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_PIPE_AMP] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1105), - [anon_sym_AMP_GT] = ACTIONS(1107), - [anon_sym_AMP_GT_GT] = ACTIONS(1105), - [anon_sym_LT_AMP] = ACTIONS(1105), - [anon_sym_GT_AMP] = ACTIONS(1105), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_LT_LT_DASH] = ACTIONS(1105), - [anon_sym_LT_LT_LT] = ACTIONS(1105), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_esac] = ACTIONS(5625), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(5675), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2085] = { - [aux_sym_concatenation_repeat1] = STATE(2088), - [sym_file_descriptor] = ACTIONS(1109), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1109), - [anon_sym_LT_AMP] = ACTIONS(1109), - [anon_sym_GT_AMP] = ACTIONS(1109), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1109), - [anon_sym_LT_LT_LT] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(5623), + [anon_sym_PLUS_EQ] = ACTIONS(5623), [sym_comment] = ACTIONS(53), }, [2086] = { - [sym_file_descriptor] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1109), - [anon_sym_LT_AMP] = ACTIONS(1109), - [anon_sym_GT_AMP] = ACTIONS(1109), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1109), - [anon_sym_LT_LT_LT] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), + [sym__terminated_statement] = STATE(2461), + [sym_for_statement] = STATE(2459), + [sym_c_style_for_statement] = STATE(2459), + [sym_while_statement] = STATE(2459), + [sym_if_statement] = STATE(2459), + [sym_case_statement] = STATE(2459), + [sym_function_definition] = STATE(2459), + [sym_subshell] = STATE(2459), + [sym_pipeline] = STATE(2459), + [sym_list] = STATE(2459), + [sym_negated_command] = STATE(2459), + [sym_test_command] = STATE(2459), + [sym_declaration_command] = STATE(2459), + [sym_unset_command] = STATE(2459), + [sym_command] = STATE(2459), + [sym_command_name] = STATE(2083), + [sym_variable_assignment] = STATE(2460), + [sym_subscript] = STATE(2085), + [sym_file_redirect] = STATE(2087), + [sym_concatenation] = STATE(30), + [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), + [aux_sym_program_repeat1] = STATE(2461), + [aux_sym_command_repeat1] = STATE(2087), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4774), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5625), + [anon_sym_SEMI_SEMI] = ACTIONS(5691), + [anon_sym_function] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), + [anon_sym_declare] = ACTIONS(4790), + [anon_sym_typeset] = ACTIONS(4790), + [anon_sym_export] = ACTIONS(4790), + [anon_sym_readonly] = ACTIONS(4790), + [anon_sym_local] = ACTIONS(4790), + [anon_sym_unset] = ACTIONS(4792), + [anon_sym_unsetenv] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4798), }, [2087] = { - [sym_string] = STATE(2331), - [sym_simple_expansion] = STATE(2331), - [sym_string_expansion] = STATE(2331), - [sym_expansion] = STATE(2331), - [sym_command_substitution] = STATE(2331), - [sym_process_substitution] = STATE(2331), - [sym__special_characters] = ACTIONS(5437), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(5437), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), - [anon_sym_BQUOTE] = ACTIONS(4100), - [anon_sym_LT_LPAREN] = ACTIONS(4102), - [anon_sym_GT_LPAREN] = ACTIONS(4102), + [sym_command_name] = STATE(2462), + [sym_variable_assignment] = STATE(207), + [sym_subscript] = STATE(71), + [sym_file_redirect] = STATE(207), + [sym_concatenation] = STATE(30), + [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), + [aux_sym_command_repeat1] = STATE(207), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(5693), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5437), + [sym_word] = ACTIONS(4796), }, [2088] = { - [aux_sym_concatenation_repeat1] = STATE(2332), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(705), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(705), - [anon_sym_LT_AMP] = ACTIONS(705), - [anon_sym_GT_AMP] = ACTIONS(705), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_LT_LT_DASH] = ACTIONS(705), - [anon_sym_LT_LT_LT] = ACTIONS(705), + [sym__terminated_statement] = STATE(2463), + [sym_for_statement] = STATE(2459), + [sym_c_style_for_statement] = STATE(2459), + [sym_while_statement] = STATE(2459), + [sym_if_statement] = STATE(2459), + [sym_case_statement] = STATE(2459), + [sym_function_definition] = STATE(2459), + [sym_subshell] = STATE(2459), + [sym_pipeline] = STATE(2459), + [sym_list] = STATE(2459), + [sym_negated_command] = STATE(2459), + [sym_test_command] = STATE(2459), + [sym_declaration_command] = STATE(2459), + [sym_unset_command] = STATE(2459), + [sym_command] = STATE(2459), + [sym_command_name] = STATE(2083), + [sym_variable_assignment] = STATE(2460), + [sym_subscript] = STATE(2085), + [sym_file_redirect] = STATE(2087), + [sym_concatenation] = STATE(30), + [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), + [aux_sym_program_repeat1] = STATE(2463), + [aux_sym_command_repeat1] = STATE(2087), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4774), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5625), + [anon_sym_SEMI_SEMI] = ACTIONS(5691), + [anon_sym_function] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), + [anon_sym_declare] = ACTIONS(4790), + [anon_sym_typeset] = ACTIONS(4790), + [anon_sym_export] = ACTIONS(4790), + [anon_sym_readonly] = ACTIONS(4790), + [anon_sym_local] = ACTIONS(4790), + [anon_sym_unset] = ACTIONS(4792), + [anon_sym_unsetenv] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4798), }, [2089] = { - [sym_file_descriptor] = ACTIONS(709), - [sym__concat] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_PIPE_AMP] = ACTIONS(709), - [anon_sym_AMP_AMP] = ACTIONS(709), - [anon_sym_PIPE_PIPE] = ACTIONS(709), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_GT] = ACTIONS(711), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_AMP_GT] = ACTIONS(711), - [anon_sym_AMP_GT_GT] = ACTIONS(709), - [anon_sym_LT_AMP] = ACTIONS(709), - [anon_sym_GT_AMP] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(711), - [anon_sym_LT_LT_DASH] = ACTIONS(709), - [anon_sym_LT_LT_LT] = ACTIONS(709), - [anon_sym_BQUOTE] = ACTIONS(709), + [aux_sym_case_item_repeat1] = STATE(2089), + [anon_sym_PIPE] = ACTIONS(5695), + [anon_sym_RPAREN] = ACTIONS(5621), [sym_comment] = ACTIONS(53), }, [2090] = { - [anon_sym_DQUOTE] = ACTIONS(5439), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), + [aux_sym_concatenation_repeat1] = STATE(2090), + [sym__concat] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), }, [2091] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(5439), - [anon_sym_DOLLAR] = ACTIONS(5441), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [anon_sym_esac] = ACTIONS(5698), + [sym__special_characters] = ACTIONS(5700), + [anon_sym_DQUOTE] = ACTIONS(5700), + [anon_sym_DOLLAR] = ACTIONS(5702), + [sym_raw_string] = ACTIONS(5700), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5700), + [anon_sym_BQUOTE] = ACTIONS(5700), + [anon_sym_LT_LPAREN] = ACTIONS(5700), + [anon_sym_GT_LPAREN] = ACTIONS(5700), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5702), }, [2092] = { - [sym_file_descriptor] = ACTIONS(741), - [sym__concat] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_PIPE_AMP] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(741), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_AMP_GT] = ACTIONS(743), - [anon_sym_AMP_GT_GT] = ACTIONS(741), - [anon_sym_LT_AMP] = ACTIONS(741), - [anon_sym_GT_AMP] = ACTIONS(741), - [anon_sym_LT_LT] = ACTIONS(743), - [anon_sym_LT_LT_DASH] = ACTIONS(741), - [anon_sym_LT_LT_LT] = ACTIONS(741), - [anon_sym_BQUOTE] = ACTIONS(741), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(5698), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(5704), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2093] = { - [sym_file_descriptor] = ACTIONS(745), - [sym__concat] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE_AMP] = ACTIONS(745), - [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(745), - [anon_sym_AMP_GT] = ACTIONS(747), - [anon_sym_AMP_GT_GT] = ACTIONS(745), - [anon_sym_LT_AMP] = ACTIONS(745), - [anon_sym_GT_AMP] = ACTIONS(745), - [anon_sym_LT_LT] = ACTIONS(747), - [anon_sym_LT_LT_DASH] = ACTIONS(745), - [anon_sym_LT_LT_LT] = ACTIONS(745), - [anon_sym_BQUOTE] = ACTIONS(745), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_esac] = ACTIONS(5698), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(5704), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2094] = { - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), + [sym__terminated_statement] = STATE(2461), + [sym_for_statement] = STATE(2466), + [sym_c_style_for_statement] = STATE(2466), + [sym_while_statement] = STATE(2466), + [sym_if_statement] = STATE(2466), + [sym_case_statement] = STATE(2466), + [sym_function_definition] = STATE(2466), + [sym_subshell] = STATE(2466), + [sym_pipeline] = STATE(2466), + [sym_list] = STATE(2466), + [sym_negated_command] = STATE(2466), + [sym_test_command] = STATE(2466), + [sym_declaration_command] = STATE(2466), + [sym_unset_command] = STATE(2466), + [sym_command] = STATE(2466), + [sym_command_name] = STATE(2083), + [sym_variable_assignment] = STATE(2467), + [sym_subscript] = STATE(2085), + [sym_file_redirect] = STATE(2087), + [sym_concatenation] = STATE(30), + [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), + [aux_sym_program_repeat1] = STATE(2461), + [aux_sym_command_repeat1] = STATE(2087), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4774), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5698), + [anon_sym_SEMI_SEMI] = ACTIONS(5706), + [anon_sym_function] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), + [anon_sym_declare] = ACTIONS(4790), + [anon_sym_typeset] = ACTIONS(4790), + [anon_sym_export] = ACTIONS(4790), + [anon_sym_readonly] = ACTIONS(4790), + [anon_sym_local] = ACTIONS(4790), + [anon_sym_unset] = ACTIONS(4792), + [anon_sym_unsetenv] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4798), }, [2095] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(5443), + [sym__terminated_statement] = STATE(2468), + [sym_for_statement] = STATE(2466), + [sym_c_style_for_statement] = STATE(2466), + [sym_while_statement] = STATE(2466), + [sym_if_statement] = STATE(2466), + [sym_case_statement] = STATE(2466), + [sym_function_definition] = STATE(2466), + [sym_subshell] = STATE(2466), + [sym_pipeline] = STATE(2466), + [sym_list] = STATE(2466), + [sym_negated_command] = STATE(2466), + [sym_test_command] = STATE(2466), + [sym_declaration_command] = STATE(2466), + [sym_unset_command] = STATE(2466), + [sym_command] = STATE(2466), + [sym_command_name] = STATE(2083), + [sym_variable_assignment] = STATE(2467), + [sym_subscript] = STATE(2085), + [sym_file_redirect] = STATE(2087), + [sym_concatenation] = STATE(30), + [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), + [aux_sym_program_repeat1] = STATE(2468), + [aux_sym_command_repeat1] = STATE(2087), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4774), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5698), + [anon_sym_SEMI_SEMI] = ACTIONS(5706), + [anon_sym_function] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), + [anon_sym_declare] = ACTIONS(4790), + [anon_sym_typeset] = ACTIONS(4790), + [anon_sym_export] = ACTIONS(4790), + [anon_sym_readonly] = ACTIONS(4790), + [anon_sym_local] = ACTIONS(4790), + [anon_sym_unset] = ACTIONS(4792), + [anon_sym_unsetenv] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4798), }, [2096] = { - [sym_concatenation] = STATE(2338), - [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), - [aux_sym_expansion_repeat1] = STATE(2338), - [anon_sym_RBRACE] = ACTIONS(5445), - [anon_sym_EQ] = ACTIONS(5447), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5451), - [anon_sym_COLON] = ACTIONS(5447), - [anon_sym_COLON_QMARK] = ACTIONS(5447), - [anon_sym_COLON_DASH] = ACTIONS(5447), - [anon_sym_PERCENT] = ACTIONS(5447), - [anon_sym_DASH] = ACTIONS(5447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_esac] = ACTIONS(5708), + [anon_sym_PIPE] = ACTIONS(5708), + [anon_sym_RPAREN] = ACTIONS(5708), + [anon_sym_SEMI_SEMI] = ACTIONS(5708), + [anon_sym_PIPE_AMP] = ACTIONS(5708), + [anon_sym_AMP_AMP] = ACTIONS(5708), + [anon_sym_PIPE_PIPE] = ACTIONS(5708), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5708), + [anon_sym_LF] = ACTIONS(5710), + [anon_sym_AMP] = ACTIONS(5708), }, [2097] = { - [sym_subscript] = STATE(2342), - [sym_variable_name] = ACTIONS(5453), - [anon_sym_DOLLAR] = ACTIONS(5455), - [anon_sym_DASH] = ACTIONS(5455), + [aux_sym_case_item_repeat1] = STATE(2470), + [aux_sym_concatenation_repeat1] = STATE(1635), + [sym__concat] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(3796), + [anon_sym_RPAREN] = ACTIONS(5712), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5457), - [anon_sym_STAR] = ACTIONS(5455), - [anon_sym_AT] = ACTIONS(5455), - [anon_sym_QMARK] = ACTIONS(5455), - [anon_sym_0] = ACTIONS(5459), - [anon_sym__] = ACTIONS(5459), }, [2098] = { - [sym_concatenation] = STATE(2345), - [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), - [aux_sym_expansion_repeat1] = STATE(2345), - [anon_sym_RBRACE] = ACTIONS(5461), - [anon_sym_EQ] = ACTIONS(5463), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5465), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5467), - [anon_sym_COLON] = ACTIONS(5463), - [anon_sym_COLON_QMARK] = ACTIONS(5463), - [anon_sym_COLON_DASH] = ACTIONS(5463), - [anon_sym_PERCENT] = ACTIONS(5463), - [anon_sym_DASH] = ACTIONS(5463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_case_item_repeat1] = STATE(2472), + [aux_sym_concatenation_repeat1] = STATE(1635), + [sym__concat] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(3796), + [anon_sym_RPAREN] = ACTIONS(5714), + [sym_comment] = ACTIONS(53), }, [2099] = { - [sym_concatenation] = STATE(2348), - [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), - [aux_sym_expansion_repeat1] = STATE(2348), - [anon_sym_RBRACE] = ACTIONS(5469), - [anon_sym_EQ] = ACTIONS(5471), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5475), - [anon_sym_COLON] = ACTIONS(5471), - [anon_sym_COLON_QMARK] = ACTIONS(5471), - [anon_sym_COLON_DASH] = ACTIONS(5471), - [anon_sym_PERCENT] = ACTIONS(5471), - [anon_sym_DASH] = ACTIONS(5471), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_case_item_repeat1] = STATE(2472), + [anon_sym_PIPE] = ACTIONS(3796), + [anon_sym_RPAREN] = ACTIONS(5714), + [sym_comment] = ACTIONS(53), }, [2100] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(5477), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), + [anon_sym_esac] = ACTIONS(5716), [sym_comment] = ACTIONS(53), }, [2101] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(5477), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [anon_sym_esac] = ACTIONS(5718), + [anon_sym_PIPE] = ACTIONS(5718), + [anon_sym_RPAREN] = ACTIONS(5718), + [anon_sym_SEMI_SEMI] = ACTIONS(5718), + [anon_sym_PIPE_AMP] = ACTIONS(5718), + [anon_sym_AMP_AMP] = ACTIONS(5718), + [anon_sym_PIPE_PIPE] = ACTIONS(5718), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_LF] = ACTIONS(5720), + [anon_sym_AMP] = ACTIONS(5718), }, [2102] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(5477), + [anon_sym_esac] = ACTIONS(5722), [sym_comment] = ACTIONS(53), }, [2103] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(5477), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym__concat] = ACTIONS(5202), + [anon_sym_in] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5204), + [sym__special_characters] = ACTIONS(5204), + [anon_sym_DQUOTE] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), + [anon_sym_BQUOTE] = ACTIONS(5204), + [anon_sym_LT_LPAREN] = ACTIONS(5204), + [anon_sym_GT_LPAREN] = ACTIONS(5204), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), }, [2104] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(5479), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5206), + [anon_sym_in] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5208), + [sym__special_characters] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), + [anon_sym_BQUOTE] = ACTIONS(5208), + [anon_sym_LT_LPAREN] = ACTIONS(5208), + [anon_sym_GT_LPAREN] = ACTIONS(5208), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), }, [2105] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(5479), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym__concat] = ACTIONS(5210), + [anon_sym_in] = ACTIONS(5212), + [anon_sym_SEMI_SEMI] = ACTIONS(5212), + [sym__special_characters] = ACTIONS(5212), + [anon_sym_DQUOTE] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), + [anon_sym_BQUOTE] = ACTIONS(5212), + [anon_sym_LT_LPAREN] = ACTIONS(5212), + [anon_sym_GT_LPAREN] = ACTIONS(5212), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5212), + [anon_sym_SEMI] = ACTIONS(5212), + [anon_sym_LF] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5212), }, [2106] = { - [sym_variable_name] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_RPAREN] = ACTIONS(3409), - [anon_sym_PIPE_AMP] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [sym__special_characters] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_DOLLAR] = ACTIONS(3411), - [sym_raw_string] = ACTIONS(3409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3409), - [anon_sym_BQUOTE] = ACTIONS(3409), - [anon_sym_LT_LPAREN] = ACTIONS(3409), - [anon_sym_GT_LPAREN] = ACTIONS(3409), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3411), - [sym_word] = ACTIONS(3411), + [sym__concat] = ACTIONS(5214), + [anon_sym_in] = ACTIONS(5216), + [anon_sym_SEMI_SEMI] = ACTIONS(5216), + [sym__special_characters] = ACTIONS(5216), + [anon_sym_DQUOTE] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5216), + [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(179), + [sym_word] = ACTIONS(5216), + [anon_sym_SEMI] = ACTIONS(5216), + [anon_sym_LF] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5216), }, [2107] = { - [sym__concat] = ACTIONS(3905), - [sym_variable_name] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3905), - [anon_sym_PIPE_AMP] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [sym__special_characters] = ACTIONS(3905), - [anon_sym_DQUOTE] = ACTIONS(3905), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3905), - [anon_sym_BQUOTE] = ACTIONS(3905), - [anon_sym_LT_LPAREN] = ACTIONS(3905), - [anon_sym_GT_LPAREN] = ACTIONS(3905), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3907), - [sym_word] = ACTIONS(3907), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5724), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2108] = { - [sym__concat] = ACTIONS(3913), - [sym_variable_name] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3913), - [anon_sym_PIPE_AMP] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [sym__special_characters] = ACTIONS(3913), - [anon_sym_DQUOTE] = ACTIONS(3913), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), - [anon_sym_BQUOTE] = ACTIONS(3913), - [anon_sym_LT_LPAREN] = ACTIONS(3913), - [anon_sym_GT_LPAREN] = ACTIONS(3913), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3915), - [sym_word] = ACTIONS(3915), + [sym__concat] = ACTIONS(5220), + [anon_sym_in] = ACTIONS(5222), + [anon_sym_SEMI_SEMI] = ACTIONS(5222), + [sym__special_characters] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5222), + [sym_raw_string] = ACTIONS(5222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), + [anon_sym_BQUOTE] = ACTIONS(5222), + [anon_sym_LT_LPAREN] = ACTIONS(5222), + [anon_sym_GT_LPAREN] = ACTIONS(5222), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LF] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5222), }, [2109] = { - [sym__concat] = ACTIONS(4000), - [sym_variable_name] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4000), - [anon_sym_PIPE_AMP] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_PIPE_PIPE] = ACTIONS(4000), - [sym__special_characters] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), - [anon_sym_BQUOTE] = ACTIONS(4000), - [anon_sym_LT_LPAREN] = ACTIONS(4000), - [anon_sym_GT_LPAREN] = ACTIONS(4000), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4002), - [sym_word] = ACTIONS(4002), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5726), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2110] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(5226), + [anon_sym_in] = ACTIONS(5228), + [anon_sym_SEMI_SEMI] = ACTIONS(5228), + [sym__special_characters] = ACTIONS(5228), + [anon_sym_DQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), + [anon_sym_BQUOTE] = ACTIONS(5228), + [anon_sym_LT_LPAREN] = ACTIONS(5228), + [anon_sym_GT_LPAREN] = ACTIONS(5228), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(5228), + [anon_sym_LF] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), }, [2111] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5483), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5728), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2112] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5485), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5232), + [anon_sym_in] = ACTIONS(5234), + [anon_sym_SEMI_SEMI] = ACTIONS(5234), + [sym__special_characters] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), + [anon_sym_BQUOTE] = ACTIONS(5234), + [anon_sym_LT_LPAREN] = ACTIONS(5234), + [anon_sym_GT_LPAREN] = ACTIONS(5234), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5234), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LF] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5234), }, [2113] = { - [anon_sym_RBRACE] = ACTIONS(5485), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5236), + [anon_sym_in] = ACTIONS(5238), + [anon_sym_SEMI_SEMI] = ACTIONS(5238), + [sym__special_characters] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), + [anon_sym_BQUOTE] = ACTIONS(5238), + [anon_sym_LT_LPAREN] = ACTIONS(5238), + [anon_sym_GT_LPAREN] = ACTIONS(5238), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LF] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), }, [2114] = { - [sym_concatenation] = STATE(2355), - [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), - [aux_sym_expansion_repeat1] = STATE(2355), - [anon_sym_RBRACE] = ACTIONS(5487), - [anon_sym_EQ] = ACTIONS(5489), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5491), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5489), - [anon_sym_COLON_QMARK] = ACTIONS(5489), - [anon_sym_COLON_DASH] = ACTIONS(5489), - [anon_sym_PERCENT] = ACTIONS(5489), - [anon_sym_DASH] = ACTIONS(5489), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(2114), + [sym__concat] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), }, [2115] = { - [sym__concat] = ACTIONS(4016), - [sym_variable_name] = ACTIONS(4016), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4016), - [anon_sym_PIPE_AMP] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym__special_characters] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym_raw_string] = ACTIONS(4016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4016), - [anon_sym_BQUOTE] = ACTIONS(4016), - [anon_sym_LT_LPAREN] = ACTIONS(4016), - [anon_sym_GT_LPAREN] = ACTIONS(4016), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4018), - [sym_word] = ACTIONS(4018), + [aux_sym_concatenation_repeat1] = STATE(2117), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_RPAREN] = ACTIONS(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(1135), + [anon_sym_PIPE_AMP] = ACTIONS(1135), + [anon_sym_AMP_AMP] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1135), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), }, [2116] = { - [sym_concatenation] = STATE(2357), - [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), - [aux_sym_expansion_repeat1] = STATE(2357), - [anon_sym_RBRACE] = ACTIONS(5493), - [anon_sym_EQ] = ACTIONS(5495), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5497), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5495), - [anon_sym_COLON_QMARK] = ACTIONS(5495), - [anon_sym_COLON_DASH] = ACTIONS(5495), - [anon_sym_PERCENT] = ACTIONS(5495), - [anon_sym_DASH] = ACTIONS(5495), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(2117), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_SEMI_SEMI] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), }, [2117] = { - [sym__concat] = ACTIONS(4026), - [sym_variable_name] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4028), - [sym_word] = ACTIONS(4028), + [aux_sym_concatenation_repeat1] = STATE(2478), + [sym__concat] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, [2118] = { - [sym_concatenation] = STATE(2359), - [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), - [aux_sym_expansion_repeat1] = STATE(2359), - [anon_sym_RBRACE] = ACTIONS(5499), - [anon_sym_EQ] = ACTIONS(5501), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5503), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5501), - [anon_sym_COLON_QMARK] = ACTIONS(5501), - [anon_sym_COLON_DASH] = ACTIONS(5501), - [anon_sym_PERCENT] = ACTIONS(5501), - [anon_sym_DASH] = ACTIONS(5501), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(2120), + [sym_file_descriptor] = ACTIONS(1133), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_RPAREN] = ACTIONS(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(1135), + [anon_sym_PIPE_AMP] = ACTIONS(1135), + [anon_sym_AMP_AMP] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1135), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1135), + [anon_sym_AMP_GT] = ACTIONS(1135), + [anon_sym_AMP_GT_GT] = ACTIONS(1135), + [anon_sym_LT_AMP] = ACTIONS(1135), + [anon_sym_GT_AMP] = ACTIONS(1135), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_LT_LT_DASH] = ACTIONS(1135), + [anon_sym_LT_LT_LT] = ACTIONS(1135), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), }, [2119] = { - [sym__concat] = ACTIONS(4036), - [sym_variable_name] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4038), - [sym_word] = ACTIONS(4038), + [aux_sym_concatenation_repeat1] = STATE(2120), + [sym_file_descriptor] = ACTIONS(1137), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_SEMI_SEMI] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1139), + [anon_sym_LT_AMP] = ACTIONS(1139), + [anon_sym_GT_AMP] = ACTIONS(1139), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1139), + [anon_sym_LT_LT_LT] = ACTIONS(1139), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), }, [2120] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5505), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(2479), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_LT_LT_LT] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, [2121] = { - [sym__concat] = ACTIONS(4042), - [sym_variable_name] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4042), - [anon_sym_PIPE_AMP] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [sym__special_characters] = ACTIONS(4042), - [anon_sym_DQUOTE] = ACTIONS(4042), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), - [anon_sym_BQUOTE] = ACTIONS(4042), - [anon_sym_LT_LPAREN] = ACTIONS(4042), - [anon_sym_GT_LPAREN] = ACTIONS(4042), + [sym__concat] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_RBRACK] = ACTIONS(5202), + [anon_sym_EQ_TILDE] = ACTIONS(5202), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_LT] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5202), + [anon_sym_BANG_EQ] = ACTIONS(5202), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4044), - [sym_word] = ACTIONS(4044), + [sym_test_operator] = ACTIONS(5202), }, [2122] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5507), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_RBRACK] = ACTIONS(5206), + [anon_sym_EQ_TILDE] = ACTIONS(5206), + [anon_sym_EQ_EQ] = ACTIONS(5206), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_LT] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5206), + [anon_sym_BANG_EQ] = ACTIONS(5206), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5206), }, [2123] = { - [sym__concat] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3905), - [anon_sym_PIPE_AMP] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [sym__special_characters] = ACTIONS(3905), - [anon_sym_DQUOTE] = ACTIONS(3905), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3905), - [anon_sym_BQUOTE] = ACTIONS(3905), - [anon_sym_LT_LPAREN] = ACTIONS(3905), - [anon_sym_GT_LPAREN] = ACTIONS(3905), + [sym__concat] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_RBRACK] = ACTIONS(5210), + [anon_sym_EQ_TILDE] = ACTIONS(5210), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3907), - [sym_word] = ACTIONS(3907), + [sym_test_operator] = ACTIONS(5210), }, [2124] = { - [sym__concat] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3913), - [anon_sym_PIPE_AMP] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [sym__special_characters] = ACTIONS(3913), - [anon_sym_DQUOTE] = ACTIONS(3913), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), - [anon_sym_BQUOTE] = ACTIONS(3913), - [anon_sym_LT_LPAREN] = ACTIONS(3913), - [anon_sym_GT_LPAREN] = ACTIONS(3913), + [sym__concat] = ACTIONS(5214), + [anon_sym_AMP_AMP] = ACTIONS(5214), + [anon_sym_PIPE_PIPE] = ACTIONS(5214), + [anon_sym_RBRACK] = ACTIONS(5214), + [anon_sym_EQ_TILDE] = ACTIONS(5214), + [anon_sym_EQ_EQ] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_LT] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5214), + [anon_sym_BANG_EQ] = ACTIONS(5214), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3915), - [sym_word] = ACTIONS(3915), + [sym_test_operator] = ACTIONS(5214), }, [2125] = { - [sym__concat] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4000), - [anon_sym_PIPE_AMP] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_PIPE_PIPE] = ACTIONS(4000), - [sym__special_characters] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), - [anon_sym_BQUOTE] = ACTIONS(4000), - [anon_sym_LT_LPAREN] = ACTIONS(4000), - [anon_sym_GT_LPAREN] = ACTIONS(4000), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4002), - [sym_word] = ACTIONS(4002), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5730), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2126] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5509), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [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_LT] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_BANG_EQ] = ACTIONS(5220), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5220), }, [2127] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5511), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5732), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2128] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5513), + [sym__concat] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_EQ_TILDE] = ACTIONS(5226), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5226), + [anon_sym_GT] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5226), }, [2129] = { - [anon_sym_RBRACE] = ACTIONS(5513), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5734), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2130] = { - [sym_concatenation] = STATE(2366), - [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), - [aux_sym_expansion_repeat1] = STATE(2366), - [anon_sym_RBRACE] = ACTIONS(5515), - [anon_sym_EQ] = ACTIONS(5517), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5517), - [anon_sym_COLON_QMARK] = ACTIONS(5517), - [anon_sym_COLON_DASH] = ACTIONS(5517), - [anon_sym_PERCENT] = ACTIONS(5517), - [anon_sym_DASH] = ACTIONS(5517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(5232), + [anon_sym_AMP_AMP] = ACTIONS(5232), + [anon_sym_PIPE_PIPE] = ACTIONS(5232), + [anon_sym_RBRACK] = ACTIONS(5232), + [anon_sym_EQ_TILDE] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5232), }, [2131] = { - [sym__concat] = ACTIONS(4016), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4016), - [anon_sym_PIPE_AMP] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym__special_characters] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym_raw_string] = ACTIONS(4016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4016), - [anon_sym_BQUOTE] = ACTIONS(4016), - [anon_sym_LT_LPAREN] = ACTIONS(4016), - [anon_sym_GT_LPAREN] = ACTIONS(4016), + [sym__concat] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_RBRACK] = ACTIONS(5236), + [anon_sym_EQ_TILDE] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_BANG_EQ] = ACTIONS(5236), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4018), - [sym_word] = ACTIONS(4018), + [sym_test_operator] = ACTIONS(5236), }, [2132] = { - [sym_concatenation] = STATE(2368), - [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), - [aux_sym_expansion_repeat1] = STATE(2368), - [anon_sym_RBRACE] = ACTIONS(5521), - [anon_sym_EQ] = ACTIONS(5523), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5525), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5523), - [anon_sym_COLON_QMARK] = ACTIONS(5523), - [anon_sym_COLON_DASH] = ACTIONS(5523), - [anon_sym_PERCENT] = ACTIONS(5523), - [anon_sym_DASH] = ACTIONS(5523), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(1754), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1756), + [anon_sym_LT_LT_LT] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), }, [2133] = { - [sym__concat] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4028), - [sym_word] = ACTIONS(4028), + [aux_sym_concatenation_repeat1] = STATE(2133), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(5736), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1756), + [anon_sym_LT_LT_LT] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), }, [2134] = { - [sym_concatenation] = STATE(2370), - [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), - [aux_sym_expansion_repeat1] = STATE(2370), - [anon_sym_RBRACE] = ACTIONS(5527), - [anon_sym_EQ] = ACTIONS(5529), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5529), - [anon_sym_COLON_QMARK] = ACTIONS(5529), - [anon_sym_COLON_DASH] = ACTIONS(5529), - [anon_sym_PERCENT] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(5529), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(1761), + [sym__concat] = ACTIONS(1761), + [anon_sym_esac] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1763), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1763), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1763), }, [2135] = { - [sym__concat] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4038), - [sym_word] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(5739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [2136] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5533), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(2487), + [sym_string] = STATE(2486), + [sym_simple_expansion] = STATE(2486), + [sym_string_expansion] = STATE(2486), + [sym_expansion] = STATE(2486), + [sym_command_substitution] = STATE(2486), + [sym_process_substitution] = STATE(2486), + [anon_sym_RBRACE] = ACTIONS(5741), + [sym__special_characters] = ACTIONS(5743), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(5745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5745), }, [2137] = { - [sym__concat] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4042), - [anon_sym_PIPE_AMP] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [sym__special_characters] = ACTIONS(4042), - [anon_sym_DQUOTE] = ACTIONS(4042), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), - [anon_sym_BQUOTE] = ACTIONS(4042), - [anon_sym_LT_LPAREN] = ACTIONS(4042), - [anon_sym_GT_LPAREN] = ACTIONS(4042), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4044), - [sym_word] = ACTIONS(4044), + [sym_file_descriptor] = ACTIONS(1846), + [sym__concat] = ACTIONS(1846), + [anon_sym_esac] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = ACTIONS(1848), + [anon_sym_PIPE_AMP] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_GT_GT] = ACTIONS(1848), + [anon_sym_AMP_GT] = ACTIONS(1848), + [anon_sym_AMP_GT_GT] = ACTIONS(1848), + [anon_sym_LT_AMP] = ACTIONS(1848), + [anon_sym_GT_AMP] = ACTIONS(1848), + [anon_sym_LT_LT] = ACTIONS(1848), + [anon_sym_LT_LT_DASH] = ACTIONS(1848), + [anon_sym_LT_LT_LT] = ACTIONS(1848), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), }, [2138] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5535), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5747), }, [2139] = { - [sym__simple_heredoc_body] = ACTIONS(4831), - [sym__heredoc_body_beginning] = ACTIONS(4831), - [sym_file_descriptor] = ACTIONS(4831), - [sym__concat] = ACTIONS(4831), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_PIPE_AMP] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4831), - [anon_sym_PIPE_PIPE] = ACTIONS(4831), - [anon_sym_EQ_TILDE] = ACTIONS(4833), - [anon_sym_EQ_EQ] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_GT_GT] = ACTIONS(4831), - [anon_sym_AMP_GT] = ACTIONS(4833), - [anon_sym_AMP_GT_GT] = ACTIONS(4831), - [anon_sym_LT_AMP] = ACTIONS(4831), - [anon_sym_GT_AMP] = ACTIONS(4831), - [anon_sym_LT_LT] = ACTIONS(4833), - [anon_sym_LT_LT_DASH] = ACTIONS(4831), - [anon_sym_LT_LT_LT] = ACTIONS(4831), - [sym__special_characters] = ACTIONS(4831), - [anon_sym_DQUOTE] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4831), - [anon_sym_BQUOTE] = ACTIONS(4831), - [anon_sym_LT_LPAREN] = ACTIONS(4831), - [anon_sym_GT_LPAREN] = ACTIONS(4831), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4833), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5749), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2140] = { - [sym__simple_heredoc_body] = ACTIONS(4835), - [sym__heredoc_body_beginning] = ACTIONS(4835), - [sym_file_descriptor] = ACTIONS(4835), - [sym__concat] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_PIPE_AMP] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_EQ_TILDE] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4835), - [anon_sym_AMP_GT] = ACTIONS(4837), - [anon_sym_AMP_GT_GT] = ACTIONS(4835), - [anon_sym_LT_AMP] = ACTIONS(4835), - [anon_sym_GT_AMP] = ACTIONS(4835), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_LT_LT_DASH] = ACTIONS(4835), - [anon_sym_LT_LT_LT] = ACTIONS(4835), - [sym__special_characters] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4835), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LT_LPAREN] = ACTIONS(4835), - [anon_sym_GT_LPAREN] = ACTIONS(4835), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(5751), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4837), }, [2141] = { - [sym__simple_heredoc_body] = ACTIONS(4839), - [sym__heredoc_body_beginning] = ACTIONS(4839), - [sym_file_descriptor] = ACTIONS(4839), - [sym__concat] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_PIPE_AMP] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_EQ_TILDE] = ACTIONS(4841), - [anon_sym_EQ_EQ] = ACTIONS(4841), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_GT_GT] = ACTIONS(4839), - [anon_sym_AMP_GT] = ACTIONS(4841), - [anon_sym_AMP_GT_GT] = ACTIONS(4839), - [anon_sym_LT_AMP] = ACTIONS(4839), - [anon_sym_GT_AMP] = ACTIONS(4839), - [anon_sym_LT_LT] = ACTIONS(4841), - [anon_sym_LT_LT_DASH] = ACTIONS(4839), - [anon_sym_LT_LT_LT] = ACTIONS(4839), - [sym__special_characters] = ACTIONS(4839), - [anon_sym_DQUOTE] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4839), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), - [anon_sym_BQUOTE] = ACTIONS(4839), - [anon_sym_LT_LPAREN] = ACTIONS(4839), - [anon_sym_GT_LPAREN] = ACTIONS(4839), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4841), + [sym_concatenation] = STATE(2493), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2493), + [anon_sym_RBRACE] = ACTIONS(5753), + [anon_sym_EQ] = ACTIONS(5755), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(5759), + [anon_sym_COLON] = ACTIONS(5755), + [anon_sym_COLON_QMARK] = ACTIONS(5755), + [anon_sym_COLON_DASH] = ACTIONS(5755), + [anon_sym_PERCENT] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2142] = { - [sym__simple_heredoc_body] = ACTIONS(4843), - [sym__heredoc_body_beginning] = ACTIONS(4843), - [sym_file_descriptor] = ACTIONS(4843), - [sym__concat] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_PIPE_AMP] = ACTIONS(4843), - [anon_sym_AMP_AMP] = ACTIONS(4843), - [anon_sym_PIPE_PIPE] = ACTIONS(4843), - [anon_sym_EQ_TILDE] = ACTIONS(4845), - [anon_sym_EQ_EQ] = ACTIONS(4845), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_GT_GT] = ACTIONS(4843), - [anon_sym_AMP_GT] = ACTIONS(4845), - [anon_sym_AMP_GT_GT] = ACTIONS(4843), - [anon_sym_LT_AMP] = ACTIONS(4843), - [anon_sym_GT_AMP] = ACTIONS(4843), - [anon_sym_LT_LT] = ACTIONS(4845), - [anon_sym_LT_LT_DASH] = ACTIONS(4843), - [anon_sym_LT_LT_LT] = ACTIONS(4843), - [sym__special_characters] = ACTIONS(4843), - [anon_sym_DQUOTE] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4843), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4843), - [anon_sym_BQUOTE] = ACTIONS(4843), - [anon_sym_LT_LPAREN] = ACTIONS(4843), - [anon_sym_GT_LPAREN] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4845), + [sym_concatenation] = STATE(2496), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2496), + [anon_sym_RBRACE] = ACTIONS(5761), + [anon_sym_EQ] = ACTIONS(5763), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(5767), + [anon_sym_COLON] = ACTIONS(5763), + [anon_sym_COLON_QMARK] = ACTIONS(5763), + [anon_sym_COLON_DASH] = ACTIONS(5763), + [anon_sym_PERCENT] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2143] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5537), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(2498), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2498), + [anon_sym_RBRACE] = ACTIONS(5741), + [anon_sym_EQ] = ACTIONS(5769), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(5773), + [anon_sym_COLON] = ACTIONS(5769), + [anon_sym_COLON_QMARK] = ACTIONS(5769), + [anon_sym_COLON_DASH] = ACTIONS(5769), + [anon_sym_PERCENT] = ACTIONS(5769), + [anon_sym_DASH] = ACTIONS(5769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2144] = { - [sym__simple_heredoc_body] = ACTIONS(4849), - [sym__heredoc_body_beginning] = ACTIONS(4849), - [sym_file_descriptor] = ACTIONS(4849), - [sym__concat] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4849), - [anon_sym_PIPE_AMP] = ACTIONS(4849), - [anon_sym_AMP_AMP] = ACTIONS(4849), - [anon_sym_PIPE_PIPE] = ACTIONS(4849), - [anon_sym_EQ_TILDE] = ACTIONS(4851), - [anon_sym_EQ_EQ] = ACTIONS(4851), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_GT_GT] = ACTIONS(4849), - [anon_sym_AMP_GT] = ACTIONS(4851), - [anon_sym_AMP_GT_GT] = ACTIONS(4849), - [anon_sym_LT_AMP] = ACTIONS(4849), - [anon_sym_GT_AMP] = ACTIONS(4849), - [anon_sym_LT_LT] = ACTIONS(4851), - [anon_sym_LT_LT_DASH] = ACTIONS(4849), - [anon_sym_LT_LT_LT] = ACTIONS(4849), - [sym__special_characters] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4849), - [anon_sym_BQUOTE] = ACTIONS(4849), - [anon_sym_LT_LPAREN] = ACTIONS(4849), - [anon_sym_GT_LPAREN] = ACTIONS(4849), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4851), + [sym_file_descriptor] = ACTIONS(1914), + [sym__concat] = ACTIONS(1914), + [anon_sym_esac] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(1916), + [anon_sym_AMP_AMP] = ACTIONS(1916), + [anon_sym_PIPE_PIPE] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_GT] = ACTIONS(1916), + [anon_sym_GT_GT] = ACTIONS(1916), + [anon_sym_AMP_GT] = ACTIONS(1916), + [anon_sym_AMP_GT_GT] = ACTIONS(1916), + [anon_sym_LT_AMP] = ACTIONS(1916), + [anon_sym_GT_AMP] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1916), + [anon_sym_LT_LT_DASH] = ACTIONS(1916), + [anon_sym_LT_LT_LT] = ACTIONS(1916), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1916), }, [2145] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5539), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5775), }, [2146] = { - [sym__simple_heredoc_body] = ACTIONS(4855), - [sym__heredoc_body_beginning] = ACTIONS(4855), - [sym_file_descriptor] = ACTIONS(4855), - [sym__concat] = ACTIONS(4855), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_PIPE_AMP] = ACTIONS(4855), - [anon_sym_AMP_AMP] = ACTIONS(4855), - [anon_sym_PIPE_PIPE] = ACTIONS(4855), - [anon_sym_EQ_TILDE] = ACTIONS(4857), - [anon_sym_EQ_EQ] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_GT_GT] = ACTIONS(4855), - [anon_sym_AMP_GT] = ACTIONS(4857), - [anon_sym_AMP_GT_GT] = ACTIONS(4855), - [anon_sym_LT_AMP] = ACTIONS(4855), - [anon_sym_GT_AMP] = ACTIONS(4855), - [anon_sym_LT_LT] = ACTIONS(4857), - [anon_sym_LT_LT_DASH] = ACTIONS(4855), - [anon_sym_LT_LT_LT] = ACTIONS(4855), - [sym__special_characters] = ACTIONS(4855), - [anon_sym_DQUOTE] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4855), - [anon_sym_BQUOTE] = ACTIONS(4855), - [anon_sym_LT_LPAREN] = ACTIONS(4855), - [anon_sym_GT_LPAREN] = ACTIONS(4855), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4857), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5777), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2147] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5541), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(1922), + [sym__concat] = ACTIONS(1922), + [anon_sym_esac] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_GT] = ACTIONS(1924), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1924), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1924), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1924), }, [2148] = { - [sym__simple_heredoc_body] = ACTIONS(4861), - [sym__heredoc_body_beginning] = ACTIONS(4861), - [sym_file_descriptor] = ACTIONS(4861), - [sym__concat] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_EQ_TILDE] = ACTIONS(4863), - [anon_sym_EQ_EQ] = ACTIONS(4863), - [anon_sym_LT] = ACTIONS(4863), - [anon_sym_GT] = ACTIONS(4863), - [anon_sym_GT_GT] = ACTIONS(4861), - [anon_sym_AMP_GT] = ACTIONS(4863), - [anon_sym_AMP_GT_GT] = ACTIONS(4861), - [anon_sym_LT_AMP] = ACTIONS(4861), - [anon_sym_GT_AMP] = ACTIONS(4861), - [anon_sym_LT_LT] = ACTIONS(4863), - [anon_sym_LT_LT_DASH] = ACTIONS(4861), - [anon_sym_LT_LT_LT] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4863), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5779), }, [2149] = { - [sym__simple_heredoc_body] = ACTIONS(4865), - [sym__heredoc_body_beginning] = ACTIONS(4865), - [sym_file_descriptor] = ACTIONS(4865), - [sym__concat] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_RPAREN] = ACTIONS(4865), - [anon_sym_PIPE_AMP] = ACTIONS(4865), - [anon_sym_AMP_AMP] = ACTIONS(4865), - [anon_sym_PIPE_PIPE] = ACTIONS(4865), - [anon_sym_EQ_TILDE] = ACTIONS(4867), - [anon_sym_EQ_EQ] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4867), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4865), - [anon_sym_AMP_GT] = ACTIONS(4867), - [anon_sym_AMP_GT_GT] = ACTIONS(4865), - [anon_sym_LT_AMP] = ACTIONS(4865), - [anon_sym_GT_AMP] = ACTIONS(4865), - [anon_sym_LT_LT] = ACTIONS(4867), - [anon_sym_LT_LT_DASH] = ACTIONS(4865), - [anon_sym_LT_LT_LT] = ACTIONS(4865), - [sym__special_characters] = ACTIONS(4865), - [anon_sym_DQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4865), - [anon_sym_BQUOTE] = ACTIONS(4865), - [anon_sym_LT_LPAREN] = ACTIONS(4865), - [anon_sym_GT_LPAREN] = ACTIONS(4865), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4867), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5741), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2150] = { - [aux_sym_concatenation_repeat1] = STATE(2152), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1105), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(2066), + [sym__concat] = ACTIONS(2066), + [anon_sym_esac] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_SEMI_SEMI] = ACTIONS(2068), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_AMP_GT] = ACTIONS(2068), + [anon_sym_AMP_GT_GT] = ACTIONS(2068), + [anon_sym_LT_AMP] = ACTIONS(2068), + [anon_sym_GT_AMP] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_LT_LT_DASH] = ACTIONS(2068), + [anon_sym_LT_LT_LT] = ACTIONS(2068), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_LF] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2068), }, [2151] = { - [aux_sym_concatenation_repeat1] = STATE(2152), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1111), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(2132), + [sym__concat] = ACTIONS(2132), + [anon_sym_esac] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_SEMI_SEMI] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(2134), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(2134), + [anon_sym_LT_AMP] = ACTIONS(2134), + [anon_sym_GT_AMP] = ACTIONS(2134), + [anon_sym_LT_LT] = ACTIONS(2134), + [anon_sym_LT_LT_DASH] = ACTIONS(2134), + [anon_sym_LT_LT_LT] = ACTIONS(2134), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), }, [2152] = { - [aux_sym_concatenation_repeat1] = STATE(2376), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), + [sym__concat] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5202), + [anon_sym_EQ_TILDE] = ACTIONS(5202), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_LT] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5202), + [anon_sym_BANG_EQ] = ACTIONS(5202), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5202), }, [2153] = { - [aux_sym_concatenation_repeat1] = STATE(2155), - [sym_file_descriptor] = ACTIONS(1105), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1105), - [anon_sym_AMP_GT] = ACTIONS(1107), - [anon_sym_AMP_GT_GT] = ACTIONS(1105), - [anon_sym_LT_AMP] = ACTIONS(1105), - [anon_sym_GT_AMP] = ACTIONS(1105), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_LT_LT_DASH] = ACTIONS(1105), - [anon_sym_LT_LT_LT] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1105), + [sym__concat] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5206), + [anon_sym_EQ_TILDE] = ACTIONS(5206), + [anon_sym_EQ_EQ] = ACTIONS(5206), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_LT] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5206), + [anon_sym_BANG_EQ] = ACTIONS(5206), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5206), }, [2154] = { - [aux_sym_concatenation_repeat1] = STATE(2155), - [sym_file_descriptor] = ACTIONS(1109), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(1111), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1109), - [anon_sym_LT_AMP] = ACTIONS(1109), - [anon_sym_GT_AMP] = ACTIONS(1109), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1109), - [anon_sym_LT_LT_LT] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), + [sym__concat] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5210), + [anon_sym_EQ_TILDE] = ACTIONS(5210), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5210), }, [2155] = { - [aux_sym_concatenation_repeat1] = STATE(2377), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_PIPE_AMP] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(705), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(705), - [anon_sym_LT_AMP] = ACTIONS(705), - [anon_sym_GT_AMP] = ACTIONS(705), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_LT_LT_DASH] = ACTIONS(705), - [anon_sym_LT_LT_LT] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), + [sym__concat] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5214), + [anon_sym_AMP_AMP] = ACTIONS(5214), + [anon_sym_PIPE_PIPE] = ACTIONS(5214), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5214), + [anon_sym_EQ_TILDE] = ACTIONS(5214), + [anon_sym_EQ_EQ] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_LT] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5214), + [anon_sym_BANG_EQ] = ACTIONS(5214), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5214), }, [2156] = { - [sym__heredoc_body_middle] = ACTIONS(3905), - [sym__heredoc_body_end] = ACTIONS(3905), - [anon_sym_DOLLAR] = ACTIONS(3907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5781), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2157] = { - [sym__heredoc_body_middle] = ACTIONS(3913), - [sym__heredoc_body_end] = ACTIONS(3913), - [anon_sym_DOLLAR] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), + [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_RBRACK_RBRACK] = ACTIONS(5220), + [anon_sym_EQ_TILDE] = ACTIONS(5220), + [anon_sym_EQ_EQ] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_BANG_EQ] = ACTIONS(5220), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5220), }, [2158] = { - [sym__heredoc_body_middle] = ACTIONS(4000), - [sym__heredoc_body_end] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5783), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2159] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5543), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5226), + [anon_sym_EQ_TILDE] = ACTIONS(5226), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5226), + [anon_sym_GT] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5226), }, [2160] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5545), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5785), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2161] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5547), + [sym__concat] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5232), + [anon_sym_AMP_AMP] = ACTIONS(5232), + [anon_sym_PIPE_PIPE] = ACTIONS(5232), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5232), + [anon_sym_EQ_TILDE] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5232), }, [2162] = { - [anon_sym_RBRACE] = ACTIONS(5547), + [sym__concat] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5236), + [anon_sym_EQ_TILDE] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_BANG_EQ] = ACTIONS(5236), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5236), }, [2163] = { - [sym_concatenation] = STATE(2382), - [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), - [aux_sym_expansion_repeat1] = STATE(2382), - [anon_sym_RBRACE] = ACTIONS(5549), - [anon_sym_EQ] = ACTIONS(5551), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5553), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5551), - [anon_sym_COLON_QMARK] = ACTIONS(5551), - [anon_sym_COLON_DASH] = ACTIONS(5551), - [anon_sym_PERCENT] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(5202), + [sym_variable_name] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5204), + [anon_sym_PIPE_AMP] = ACTIONS(5204), + [anon_sym_AMP_AMP] = ACTIONS(5204), + [anon_sym_PIPE_PIPE] = ACTIONS(5204), + [sym__special_characters] = ACTIONS(5204), + [anon_sym_DQUOTE] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), + [anon_sym_BQUOTE] = ACTIONS(5204), + [anon_sym_LT_LPAREN] = ACTIONS(5204), + [anon_sym_GT_LPAREN] = ACTIONS(5204), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), + [sym_word] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), }, [2164] = { - [sym__heredoc_body_middle] = ACTIONS(4016), - [sym__heredoc_body_end] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(4018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5206), + [sym_variable_name] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5208), + [anon_sym_PIPE_AMP] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [sym__special_characters] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), + [anon_sym_BQUOTE] = ACTIONS(5208), + [anon_sym_LT_LPAREN] = ACTIONS(5208), + [anon_sym_GT_LPAREN] = ACTIONS(5208), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), + [sym_word] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), }, [2165] = { - [sym_concatenation] = STATE(2384), - [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), - [aux_sym_expansion_repeat1] = STATE(2384), - [anon_sym_RBRACE] = ACTIONS(5555), - [anon_sym_EQ] = ACTIONS(5557), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5557), - [anon_sym_COLON_QMARK] = ACTIONS(5557), - [anon_sym_COLON_DASH] = ACTIONS(5557), - [anon_sym_PERCENT] = ACTIONS(5557), - [anon_sym_DASH] = ACTIONS(5557), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(5210), + [sym_variable_name] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5212), + [anon_sym_SEMI_SEMI] = ACTIONS(5212), + [anon_sym_PIPE_AMP] = ACTIONS(5212), + [anon_sym_AMP_AMP] = ACTIONS(5212), + [anon_sym_PIPE_PIPE] = ACTIONS(5212), + [sym__special_characters] = ACTIONS(5212), + [anon_sym_DQUOTE] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), + [anon_sym_BQUOTE] = ACTIONS(5212), + [anon_sym_LT_LPAREN] = ACTIONS(5212), + [anon_sym_GT_LPAREN] = ACTIONS(5212), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5212), + [sym_word] = ACTIONS(5212), + [anon_sym_SEMI] = ACTIONS(5212), + [anon_sym_LF] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5212), }, [2166] = { - [sym__heredoc_body_middle] = ACTIONS(4026), - [sym__heredoc_body_end] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5214), + [sym_variable_name] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5216), + [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), + [sym__special_characters] = ACTIONS(5216), + [anon_sym_DQUOTE] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5216), + [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(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5216), + [sym_word] = ACTIONS(5216), + [anon_sym_SEMI] = ACTIONS(5216), + [anon_sym_LF] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5216), }, [2167] = { - [sym_concatenation] = STATE(2386), - [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), - [aux_sym_expansion_repeat1] = STATE(2386), - [anon_sym_RBRACE] = ACTIONS(5561), - [anon_sym_EQ] = ACTIONS(5563), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5563), - [anon_sym_COLON_QMARK] = ACTIONS(5563), - [anon_sym_COLON_DASH] = ACTIONS(5563), - [anon_sym_PERCENT] = ACTIONS(5563), - [anon_sym_DASH] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5787), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2168] = { - [sym__heredoc_body_middle] = ACTIONS(4036), - [sym__heredoc_body_end] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5220), + [sym_variable_name] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_SEMI_SEMI] = ACTIONS(5222), + [anon_sym_PIPE_AMP] = ACTIONS(5222), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [sym__special_characters] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5222), + [sym_raw_string] = ACTIONS(5222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), + [anon_sym_BQUOTE] = ACTIONS(5222), + [anon_sym_LT_LPAREN] = ACTIONS(5222), + [anon_sym_GT_LPAREN] = ACTIONS(5222), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), + [sym_word] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LF] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5222), }, [2169] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5567), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5789), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2170] = { - [sym__heredoc_body_middle] = ACTIONS(4042), - [sym__heredoc_body_end] = ACTIONS(4042), - [anon_sym_DOLLAR] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5226), + [sym_variable_name] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5228), + [anon_sym_SEMI_SEMI] = ACTIONS(5228), + [anon_sym_PIPE_AMP] = ACTIONS(5228), + [anon_sym_AMP_AMP] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5228), + [sym__special_characters] = ACTIONS(5228), + [anon_sym_DQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), + [anon_sym_BQUOTE] = ACTIONS(5228), + [anon_sym_LT_LPAREN] = ACTIONS(5228), + [anon_sym_GT_LPAREN] = ACTIONS(5228), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5228), + [sym_word] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(5228), + [anon_sym_LF] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), }, [2171] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5569), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5791), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2172] = { - [sym__concat] = ACTIONS(3905), - [anon_sym_RPAREN] = ACTIONS(3905), - [sym__special_characters] = ACTIONS(3905), - [anon_sym_DQUOTE] = ACTIONS(3905), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3905), - [anon_sym_BQUOTE] = ACTIONS(3905), - [anon_sym_LT_LPAREN] = ACTIONS(3905), - [anon_sym_GT_LPAREN] = ACTIONS(3905), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3905), + [sym__concat] = ACTIONS(5232), + [sym_variable_name] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_SEMI_SEMI] = ACTIONS(5234), + [anon_sym_PIPE_AMP] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [sym__special_characters] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), + [anon_sym_BQUOTE] = ACTIONS(5234), + [anon_sym_LT_LPAREN] = ACTIONS(5234), + [anon_sym_GT_LPAREN] = ACTIONS(5234), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5234), + [sym_word] = ACTIONS(5234), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LF] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5234), }, [2173] = { - [sym__concat] = ACTIONS(3913), - [anon_sym_RPAREN] = ACTIONS(3913), - [sym__special_characters] = ACTIONS(3913), - [anon_sym_DQUOTE] = ACTIONS(3913), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), - [anon_sym_BQUOTE] = ACTIONS(3913), - [anon_sym_LT_LPAREN] = ACTIONS(3913), - [anon_sym_GT_LPAREN] = ACTIONS(3913), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3913), + [sym__concat] = ACTIONS(5236), + [sym_variable_name] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_SEMI_SEMI] = ACTIONS(5238), + [anon_sym_PIPE_AMP] = ACTIONS(5238), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [sym__special_characters] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), + [anon_sym_BQUOTE] = ACTIONS(5238), + [anon_sym_LT_LPAREN] = ACTIONS(5238), + [anon_sym_GT_LPAREN] = ACTIONS(5238), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5238), + [sym_word] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LF] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), }, [2174] = { - [sym__concat] = ACTIONS(4000), - [anon_sym_RPAREN] = ACTIONS(4000), - [sym__special_characters] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), - [anon_sym_BQUOTE] = ACTIONS(4000), - [anon_sym_LT_LPAREN] = ACTIONS(4000), - [anon_sym_GT_LPAREN] = ACTIONS(4000), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4000), + [sym__concat] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5204), + [anon_sym_PIPE_AMP] = ACTIONS(5204), + [anon_sym_AMP_AMP] = ACTIONS(5204), + [anon_sym_PIPE_PIPE] = ACTIONS(5204), + [sym__special_characters] = ACTIONS(5204), + [anon_sym_DQUOTE] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), + [anon_sym_BQUOTE] = ACTIONS(5204), + [anon_sym_LT_LPAREN] = ACTIONS(5204), + [anon_sym_GT_LPAREN] = ACTIONS(5204), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), + [sym_word] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), }, [2175] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5571), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5208), + [anon_sym_PIPE_AMP] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [sym__special_characters] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), + [anon_sym_BQUOTE] = ACTIONS(5208), + [anon_sym_LT_LPAREN] = ACTIONS(5208), + [anon_sym_GT_LPAREN] = ACTIONS(5208), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), + [sym_word] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), }, [2176] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5573), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5212), + [anon_sym_SEMI_SEMI] = ACTIONS(5212), + [anon_sym_PIPE_AMP] = ACTIONS(5212), + [anon_sym_AMP_AMP] = ACTIONS(5212), + [anon_sym_PIPE_PIPE] = ACTIONS(5212), + [sym__special_characters] = ACTIONS(5212), + [anon_sym_DQUOTE] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), + [anon_sym_BQUOTE] = ACTIONS(5212), + [anon_sym_LT_LPAREN] = ACTIONS(5212), + [anon_sym_GT_LPAREN] = ACTIONS(5212), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5212), + [sym_word] = ACTIONS(5212), + [anon_sym_SEMI] = ACTIONS(5212), + [anon_sym_LF] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5212), }, [2177] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5575), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5216), + [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), + [sym__special_characters] = ACTIONS(5216), + [anon_sym_DQUOTE] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5216), + [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(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5216), + [sym_word] = ACTIONS(5216), + [anon_sym_SEMI] = ACTIONS(5216), + [anon_sym_LF] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5216), }, [2178] = { - [anon_sym_RBRACE] = ACTIONS(5575), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5793), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2179] = { - [sym_concatenation] = STATE(2393), - [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), - [aux_sym_expansion_repeat1] = STATE(2393), - [anon_sym_RBRACE] = ACTIONS(5577), - [anon_sym_EQ] = ACTIONS(5579), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5579), - [anon_sym_COLON_QMARK] = ACTIONS(5579), - [anon_sym_COLON_DASH] = ACTIONS(5579), - [anon_sym_PERCENT] = ACTIONS(5579), - [anon_sym_DASH] = ACTIONS(5579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_SEMI_SEMI] = ACTIONS(5222), + [anon_sym_PIPE_AMP] = ACTIONS(5222), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [sym__special_characters] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5222), + [sym_raw_string] = ACTIONS(5222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), + [anon_sym_BQUOTE] = ACTIONS(5222), + [anon_sym_LT_LPAREN] = ACTIONS(5222), + [anon_sym_GT_LPAREN] = ACTIONS(5222), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), + [sym_word] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LF] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5222), }, [2180] = { - [sym__concat] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4016), - [sym__special_characters] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym_raw_string] = ACTIONS(4016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4016), - [anon_sym_BQUOTE] = ACTIONS(4016), - [anon_sym_LT_LPAREN] = ACTIONS(4016), - [anon_sym_GT_LPAREN] = ACTIONS(4016), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4016), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5795), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2181] = { - [sym_concatenation] = STATE(2395), - [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), - [aux_sym_expansion_repeat1] = STATE(2395), - [anon_sym_RBRACE] = ACTIONS(5583), - [anon_sym_EQ] = ACTIONS(5585), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5587), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5585), - [anon_sym_COLON_QMARK] = ACTIONS(5585), - [anon_sym_COLON_DASH] = ACTIONS(5585), - [anon_sym_PERCENT] = ACTIONS(5585), - [anon_sym_DASH] = ACTIONS(5585), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5228), + [anon_sym_SEMI_SEMI] = ACTIONS(5228), + [anon_sym_PIPE_AMP] = ACTIONS(5228), + [anon_sym_AMP_AMP] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5228), + [sym__special_characters] = ACTIONS(5228), + [anon_sym_DQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), + [anon_sym_BQUOTE] = ACTIONS(5228), + [anon_sym_LT_LPAREN] = ACTIONS(5228), + [anon_sym_GT_LPAREN] = ACTIONS(5228), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5228), + [sym_word] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(5228), + [anon_sym_LF] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), }, [2182] = { - [sym__concat] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4026), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5797), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2183] = { - [sym_concatenation] = STATE(2397), - [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), - [aux_sym_expansion_repeat1] = STATE(2397), - [anon_sym_RBRACE] = ACTIONS(5589), - [anon_sym_EQ] = ACTIONS(5591), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5593), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5591), - [anon_sym_COLON_QMARK] = ACTIONS(5591), - [anon_sym_COLON_DASH] = ACTIONS(5591), - [anon_sym_PERCENT] = ACTIONS(5591), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_SEMI_SEMI] = ACTIONS(5234), + [anon_sym_PIPE_AMP] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [sym__special_characters] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), + [anon_sym_BQUOTE] = ACTIONS(5234), + [anon_sym_LT_LPAREN] = ACTIONS(5234), + [anon_sym_GT_LPAREN] = ACTIONS(5234), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5234), + [sym_word] = ACTIONS(5234), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LF] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5234), }, [2184] = { - [sym__concat] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4036), + [sym__concat] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_SEMI_SEMI] = ACTIONS(5238), + [anon_sym_PIPE_AMP] = ACTIONS(5238), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [sym__special_characters] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), + [anon_sym_BQUOTE] = ACTIONS(5238), + [anon_sym_LT_LPAREN] = ACTIONS(5238), + [anon_sym_GT_LPAREN] = ACTIONS(5238), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5238), + [sym_word] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LF] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), }, [2185] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5595), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [sym_variable_name] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5202), + [anon_sym_LT_AMP] = ACTIONS(5202), + [anon_sym_GT_AMP] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5202), }, [2186] = { - [sym__concat] = ACTIONS(4042), - [anon_sym_RPAREN] = ACTIONS(4042), - [sym__special_characters] = ACTIONS(4042), - [anon_sym_DQUOTE] = ACTIONS(4042), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), - [anon_sym_BQUOTE] = ACTIONS(4042), - [anon_sym_LT_LPAREN] = ACTIONS(4042), - [anon_sym_GT_LPAREN] = ACTIONS(4042), + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [sym_variable_name] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5206), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5206), + [anon_sym_LT_AMP] = ACTIONS(5206), + [anon_sym_GT_AMP] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4042), + [sym_word] = ACTIONS(5206), }, [2187] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5597), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(5210), + [sym__concat] = ACTIONS(5210), + [sym_variable_name] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5210), + [anon_sym_PIPE_AMP] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5210), + [anon_sym_AMP_GT] = ACTIONS(5212), + [anon_sym_AMP_GT_GT] = ACTIONS(5210), + [anon_sym_LT_AMP] = ACTIONS(5210), + [anon_sym_GT_AMP] = ACTIONS(5210), + [sym__special_characters] = ACTIONS(5210), + [anon_sym_DQUOTE] = ACTIONS(5210), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5210), + [anon_sym_BQUOTE] = ACTIONS(5210), + [anon_sym_LT_LPAREN] = ACTIONS(5210), + [anon_sym_GT_LPAREN] = ACTIONS(5210), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5210), }, [2188] = { - [sym_file_descriptor] = ACTIONS(4831), - [sym__concat] = ACTIONS(4831), - [sym_variable_name] = ACTIONS(4831), - [anon_sym_esac] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_RPAREN] = ACTIONS(4833), - [anon_sym_SEMI_SEMI] = ACTIONS(4833), - [anon_sym_PIPE_AMP] = ACTIONS(4833), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_GT_GT] = ACTIONS(4833), - [anon_sym_AMP_GT] = ACTIONS(4833), - [anon_sym_AMP_GT_GT] = ACTIONS(4833), - [anon_sym_LT_AMP] = ACTIONS(4833), - [anon_sym_GT_AMP] = ACTIONS(4833), - [sym__special_characters] = ACTIONS(4833), - [anon_sym_DQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4833), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), - [anon_sym_BQUOTE] = ACTIONS(4833), - [anon_sym_LT_LPAREN] = ACTIONS(4833), - [anon_sym_GT_LPAREN] = ACTIONS(4833), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4833), - [anon_sym_SEMI] = ACTIONS(4833), - [anon_sym_LF] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4833), + [sym_file_descriptor] = ACTIONS(5214), + [sym__concat] = ACTIONS(5214), + [sym_variable_name] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5214), + [anon_sym_PIPE_AMP] = ACTIONS(5214), + [anon_sym_AMP_AMP] = ACTIONS(5214), + [anon_sym_PIPE_PIPE] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5216), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5214), + [anon_sym_AMP_GT] = ACTIONS(5216), + [anon_sym_AMP_GT_GT] = ACTIONS(5214), + [anon_sym_LT_AMP] = ACTIONS(5214), + [anon_sym_GT_AMP] = ACTIONS(5214), + [sym__special_characters] = ACTIONS(5214), + [anon_sym_DQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR] = ACTIONS(5216), + [sym_raw_string] = ACTIONS(5214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5214), + [anon_sym_BQUOTE] = ACTIONS(5214), + [anon_sym_LT_LPAREN] = ACTIONS(5214), + [anon_sym_GT_LPAREN] = ACTIONS(5214), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5214), }, [2189] = { - [sym_file_descriptor] = ACTIONS(4835), - [sym__concat] = ACTIONS(4835), - [sym_variable_name] = ACTIONS(4835), - [anon_sym_esac] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_RPAREN] = ACTIONS(4837), - [anon_sym_SEMI_SEMI] = ACTIONS(4837), - [anon_sym_PIPE_AMP] = ACTIONS(4837), - [anon_sym_AMP_AMP] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_AMP_GT] = ACTIONS(4837), - [anon_sym_AMP_GT_GT] = ACTIONS(4837), - [anon_sym_LT_AMP] = ACTIONS(4837), - [anon_sym_GT_AMP] = ACTIONS(4837), - [sym__special_characters] = ACTIONS(4837), - [anon_sym_DQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4837), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4837), - [anon_sym_LT_LPAREN] = ACTIONS(4837), - [anon_sym_GT_LPAREN] = ACTIONS(4837), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym_LF] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5799), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2190] = { - [sym_file_descriptor] = ACTIONS(4839), - [sym__concat] = ACTIONS(4839), - [sym_variable_name] = ACTIONS(4839), - [anon_sym_esac] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_RPAREN] = ACTIONS(4841), - [anon_sym_SEMI_SEMI] = ACTIONS(4841), - [anon_sym_PIPE_AMP] = ACTIONS(4841), - [anon_sym_AMP_AMP] = ACTIONS(4841), - [anon_sym_PIPE_PIPE] = ACTIONS(4841), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_GT_GT] = ACTIONS(4841), - [anon_sym_AMP_GT] = ACTIONS(4841), - [anon_sym_AMP_GT_GT] = ACTIONS(4841), - [anon_sym_LT_AMP] = ACTIONS(4841), - [anon_sym_GT_AMP] = ACTIONS(4841), - [sym__special_characters] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), - [anon_sym_BQUOTE] = ACTIONS(4841), - [anon_sym_LT_LPAREN] = ACTIONS(4841), - [anon_sym_GT_LPAREN] = ACTIONS(4841), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4841), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_LF] = ACTIONS(4839), - [anon_sym_AMP] = ACTIONS(4841), + [sym_file_descriptor] = ACTIONS(5220), + [sym__concat] = ACTIONS(5220), + [sym_variable_name] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_RPAREN] = 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), + [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(53), + [sym_word] = ACTIONS(5220), }, [2191] = { - [sym_file_descriptor] = ACTIONS(4843), - [sym__concat] = ACTIONS(4843), - [sym_variable_name] = ACTIONS(4843), - [anon_sym_esac] = ACTIONS(4845), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_RPAREN] = ACTIONS(4845), - [anon_sym_SEMI_SEMI] = ACTIONS(4845), - [anon_sym_PIPE_AMP] = ACTIONS(4845), - [anon_sym_AMP_AMP] = ACTIONS(4845), - [anon_sym_PIPE_PIPE] = ACTIONS(4845), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_GT_GT] = ACTIONS(4845), - [anon_sym_AMP_GT] = ACTIONS(4845), - [anon_sym_AMP_GT_GT] = ACTIONS(4845), - [anon_sym_LT_AMP] = ACTIONS(4845), - [anon_sym_GT_AMP] = ACTIONS(4845), - [sym__special_characters] = ACTIONS(4845), - [anon_sym_DQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), - [anon_sym_BQUOTE] = ACTIONS(4845), - [anon_sym_LT_LPAREN] = ACTIONS(4845), - [anon_sym_GT_LPAREN] = ACTIONS(4845), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4845), - [anon_sym_SEMI] = ACTIONS(4845), - [anon_sym_LF] = ACTIONS(4843), - [anon_sym_AMP] = ACTIONS(4845), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5801), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2192] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5599), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(5226), + [sym__concat] = ACTIONS(5226), + [sym_variable_name] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_PIPE_AMP] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5226), + [anon_sym_AMP_GT] = ACTIONS(5228), + [anon_sym_AMP_GT_GT] = ACTIONS(5226), + [anon_sym_LT_AMP] = ACTIONS(5226), + [anon_sym_GT_AMP] = ACTIONS(5226), + [sym__special_characters] = ACTIONS(5226), + [anon_sym_DQUOTE] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5226), + [anon_sym_BQUOTE] = ACTIONS(5226), + [anon_sym_LT_LPAREN] = ACTIONS(5226), + [anon_sym_GT_LPAREN] = ACTIONS(5226), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5226), }, [2193] = { - [sym_file_descriptor] = ACTIONS(4849), - [sym__concat] = ACTIONS(4849), - [sym_variable_name] = ACTIONS(4849), - [anon_sym_esac] = ACTIONS(4851), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4851), - [anon_sym_SEMI_SEMI] = ACTIONS(4851), - [anon_sym_PIPE_AMP] = ACTIONS(4851), - [anon_sym_AMP_AMP] = ACTIONS(4851), - [anon_sym_PIPE_PIPE] = ACTIONS(4851), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_GT_GT] = ACTIONS(4851), - [anon_sym_AMP_GT] = ACTIONS(4851), - [anon_sym_AMP_GT_GT] = ACTIONS(4851), - [anon_sym_LT_AMP] = ACTIONS(4851), - [anon_sym_GT_AMP] = ACTIONS(4851), - [sym__special_characters] = ACTIONS(4851), - [anon_sym_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4851), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4851), - [anon_sym_LT_LPAREN] = ACTIONS(4851), - [anon_sym_GT_LPAREN] = ACTIONS(4851), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4851), - [anon_sym_SEMI] = ACTIONS(4851), - [anon_sym_LF] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4851), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5803), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2194] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5601), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(5232), + [sym__concat] = ACTIONS(5232), + [sym_variable_name] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5232), + [anon_sym_PIPE_AMP] = ACTIONS(5232), + [anon_sym_AMP_AMP] = ACTIONS(5232), + [anon_sym_PIPE_PIPE] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_GT] = ACTIONS(5232), + [anon_sym_AMP_GT] = ACTIONS(5234), + [anon_sym_AMP_GT_GT] = ACTIONS(5232), + [anon_sym_LT_AMP] = ACTIONS(5232), + [anon_sym_GT_AMP] = ACTIONS(5232), + [sym__special_characters] = ACTIONS(5232), + [anon_sym_DQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5232), + [anon_sym_BQUOTE] = ACTIONS(5232), + [anon_sym_LT_LPAREN] = ACTIONS(5232), + [anon_sym_GT_LPAREN] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5232), }, [2195] = { - [sym_file_descriptor] = ACTIONS(4855), - [sym__concat] = ACTIONS(4855), - [sym_variable_name] = ACTIONS(4855), - [anon_sym_esac] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_RPAREN] = ACTIONS(4857), - [anon_sym_SEMI_SEMI] = ACTIONS(4857), - [anon_sym_PIPE_AMP] = ACTIONS(4857), - [anon_sym_AMP_AMP] = ACTIONS(4857), - [anon_sym_PIPE_PIPE] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_GT_GT] = ACTIONS(4857), - [anon_sym_AMP_GT] = ACTIONS(4857), - [anon_sym_AMP_GT_GT] = ACTIONS(4857), - [anon_sym_LT_AMP] = ACTIONS(4857), - [anon_sym_GT_AMP] = ACTIONS(4857), - [sym__special_characters] = ACTIONS(4857), - [anon_sym_DQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4857), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), - [anon_sym_BQUOTE] = ACTIONS(4857), - [anon_sym_LT_LPAREN] = ACTIONS(4857), - [anon_sym_GT_LPAREN] = ACTIONS(4857), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4857), - [anon_sym_SEMI] = ACTIONS(4857), - [anon_sym_LF] = ACTIONS(4855), - [anon_sym_AMP] = ACTIONS(4857), + [sym_file_descriptor] = ACTIONS(5236), + [sym__concat] = ACTIONS(5236), + [sym_variable_name] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5236), + [anon_sym_PIPE_AMP] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_AMP_GT] = ACTIONS(5238), + [anon_sym_AMP_GT_GT] = ACTIONS(5236), + [anon_sym_LT_AMP] = ACTIONS(5236), + [anon_sym_GT_AMP] = ACTIONS(5236), + [sym__special_characters] = ACTIONS(5236), + [anon_sym_DQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5236), + [anon_sym_BQUOTE] = ACTIONS(5236), + [anon_sym_LT_LPAREN] = ACTIONS(5236), + [anon_sym_GT_LPAREN] = ACTIONS(5236), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5236), }, [2196] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5603), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym__string_content] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), + [anon_sym_BQUOTE] = ACTIONS(5204), + [sym_comment] = ACTIONS(179), }, [2197] = { - [sym_file_descriptor] = ACTIONS(4861), - [sym__concat] = ACTIONS(4861), - [sym_variable_name] = ACTIONS(4861), - [anon_sym_esac] = ACTIONS(4863), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_SEMI_SEMI] = ACTIONS(4863), - [anon_sym_PIPE_AMP] = ACTIONS(4863), - [anon_sym_AMP_AMP] = ACTIONS(4863), - [anon_sym_PIPE_PIPE] = ACTIONS(4863), - [anon_sym_LT] = ACTIONS(4863), - [anon_sym_GT] = ACTIONS(4863), - [anon_sym_GT_GT] = ACTIONS(4863), - [anon_sym_AMP_GT] = ACTIONS(4863), - [anon_sym_AMP_GT_GT] = ACTIONS(4863), - [anon_sym_LT_AMP] = ACTIONS(4863), - [anon_sym_GT_AMP] = ACTIONS(4863), - [sym__special_characters] = ACTIONS(4863), - [anon_sym_DQUOTE] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4863), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), - [anon_sym_BQUOTE] = ACTIONS(4863), - [anon_sym_LT_LPAREN] = ACTIONS(4863), - [anon_sym_GT_LPAREN] = ACTIONS(4863), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4863), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4863), + [sym__concat] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym__string_content] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), + [anon_sym_BQUOTE] = ACTIONS(5208), + [sym_comment] = ACTIONS(179), }, [2198] = { - [sym_file_descriptor] = ACTIONS(4865), - [sym__concat] = ACTIONS(4865), - [sym_variable_name] = ACTIONS(4865), - [anon_sym_esac] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_RPAREN] = ACTIONS(4867), - [anon_sym_SEMI_SEMI] = ACTIONS(4867), - [anon_sym_PIPE_AMP] = ACTIONS(4867), - [anon_sym_AMP_AMP] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4867), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4867), - [anon_sym_AMP_GT] = ACTIONS(4867), - [anon_sym_AMP_GT_GT] = ACTIONS(4867), - [anon_sym_LT_AMP] = ACTIONS(4867), - [anon_sym_GT_AMP] = ACTIONS(4867), - [sym__special_characters] = ACTIONS(4867), - [anon_sym_DQUOTE] = ACTIONS(4867), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), - [anon_sym_BQUOTE] = ACTIONS(4867), - [anon_sym_LT_LPAREN] = ACTIONS(4867), - [anon_sym_GT_LPAREN] = ACTIONS(4867), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_LF] = ACTIONS(4865), - [anon_sym_AMP] = ACTIONS(4867), + [sym__concat] = ACTIONS(5210), + [anon_sym_DQUOTE] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym__string_content] = ACTIONS(5210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), + [anon_sym_BQUOTE] = ACTIONS(5212), + [sym_comment] = ACTIONS(179), }, [2199] = { - [sym_concatenation] = STATE(212), - [sym_string] = STATE(2404), - [sym_array] = STATE(212), - [sym_simple_expansion] = STATE(2404), - [sym_string_expansion] = STATE(2404), - [sym_expansion] = STATE(2404), - [sym_command_substitution] = STATE(2404), - [sym_process_substitution] = STATE(2404), - [sym__empty_value] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [sym__special_characters] = ACTIONS(5605), - [anon_sym_DQUOTE] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [sym_raw_string] = ACTIONS(5607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(399), - [anon_sym_BQUOTE] = ACTIONS(401), - [anon_sym_LT_LPAREN] = ACTIONS(403), - [anon_sym_GT_LPAREN] = ACTIONS(403), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5607), + [sym__concat] = ACTIONS(5214), + [anon_sym_DQUOTE] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5216), + [sym__string_content] = ACTIONS(5214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), + [anon_sym_BQUOTE] = ACTIONS(5216), + [sym_comment] = ACTIONS(179), }, [2200] = { - [sym_do_group] = STATE(2405), - [anon_sym_do] = ACTIONS(411), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2201] = { - [sym_compound_statement] = STATE(2407), - [anon_sym_LPAREN] = ACTIONS(5609), - [anon_sym_LBRACE] = ACTIONS(457), - [sym_comment] = ACTIONS(53), + [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(179), }, [2202] = { - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_RBRACK] = ACTIONS(5611), - [anon_sym_EQ_TILDE] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(553), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(547), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5807), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2203] = { - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5611), - [anon_sym_EQ_TILDE] = ACTIONS(581), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_EQ] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(579), + [sym__concat] = ACTIONS(5226), + [anon_sym_DQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym__string_content] = ACTIONS(5226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), + [anon_sym_BQUOTE] = ACTIONS(5228), + [sym_comment] = ACTIONS(179), }, [2204] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(5613), - [anon_sym_PLUS_EQ] = ACTIONS(5613), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2205] = { - [aux_sym_concatenation_repeat1] = STATE(2411), - [sym__concat] = ACTIONS(5615), - [sym_variable_name] = ACTIONS(589), - [anon_sym_esac] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(591), - [anon_sym_SEMI_SEMI] = ACTIONS(591), - [anon_sym_PIPE_AMP] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [sym__special_characters] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [anon_sym_DOLLAR] = ACTIONS(591), - [sym_raw_string] = ACTIONS(591), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(591), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(591), - [anon_sym_BQUOTE] = ACTIONS(591), - [anon_sym_LT_LPAREN] = ACTIONS(591), - [anon_sym_GT_LPAREN] = ACTIONS(591), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(591), - [sym_word] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(591), + [sym__concat] = ACTIONS(5232), + [anon_sym_DQUOTE] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym__string_content] = ACTIONS(5232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), + [anon_sym_BQUOTE] = ACTIONS(5234), + [sym_comment] = ACTIONS(179), }, [2206] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2414), - [anon_sym_DQUOTE] = ACTIONS(5617), - [anon_sym_DOLLAR] = ACTIONS(5619), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [sym__concat] = ACTIONS(5236), + [anon_sym_DQUOTE] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym__string_content] = ACTIONS(5236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), + [anon_sym_BQUOTE] = ACTIONS(5238), + [sym_comment] = ACTIONS(179), }, [2207] = { - [sym_string] = STATE(2416), - [anon_sym_DQUOTE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(5623), - [sym_raw_string] = ACTIONS(5625), - [anon_sym_POUND] = ACTIONS(5623), - [anon_sym_DASH] = ACTIONS(5623), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5627), - [anon_sym_STAR] = ACTIONS(5623), - [anon_sym_AT] = ACTIONS(5623), - [anon_sym_QMARK] = ACTIONS(5623), - [anon_sym_0] = ACTIONS(5629), - [anon_sym__] = ACTIONS(5629), + [anon_sym_RBRACE] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(5811), + [sym__special_characters] = ACTIONS(5811), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(5811), + [sym_raw_string] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(5811), + [anon_sym_COLON_QMARK] = ACTIONS(5811), + [anon_sym_COLON_DASH] = ACTIONS(5811), + [anon_sym_PERCENT] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4567), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LT_LPAREN] = ACTIONS(4567), + [anon_sym_GT_LPAREN] = ACTIONS(4567), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5811), }, [2208] = { - [aux_sym_concatenation_repeat1] = STATE(2411), - [sym__concat] = ACTIONS(5615), - [sym_variable_name] = ACTIONS(607), - [anon_sym_esac] = ACTIONS(609), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_SEMI_SEMI] = ACTIONS(609), - [anon_sym_PIPE_AMP] = ACTIONS(609), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [sym__special_characters] = ACTIONS(609), - [anon_sym_DQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(609), - [sym_raw_string] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_LT_LPAREN] = ACTIONS(609), - [anon_sym_GT_LPAREN] = ACTIONS(609), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), - [sym_word] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_EQ] = ACTIONS(5813), + [sym__special_characters] = ACTIONS(5813), + [anon_sym_DQUOTE] = ACTIONS(4569), + [anon_sym_DOLLAR] = ACTIONS(5813), + [sym_raw_string] = ACTIONS(4569), + [anon_sym_POUND] = ACTIONS(4569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4569), + [anon_sym_COLON] = ACTIONS(5813), + [anon_sym_COLON_QMARK] = ACTIONS(5813), + [anon_sym_COLON_DASH] = ACTIONS(5813), + [anon_sym_PERCENT] = ACTIONS(5813), + [anon_sym_DASH] = ACTIONS(5813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4569), + [anon_sym_LT_LPAREN] = ACTIONS(4569), + [anon_sym_GT_LPAREN] = ACTIONS(4569), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5813), }, [2209] = { - [sym_subscript] = STATE(2422), - [sym_variable_name] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_POUND] = ACTIONS(5635), - [anon_sym_DASH] = ACTIONS(5633), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5637), - [anon_sym_STAR] = ACTIONS(5633), - [anon_sym_AT] = ACTIONS(5633), - [anon_sym_QMARK] = ACTIONS(5633), - [anon_sym_0] = ACTIONS(5639), - [anon_sym__] = ACTIONS(5639), + [sym__concat] = ACTIONS(2920), + [anon_sym_RBRACE] = ACTIONS(2920), + [sym_comment] = ACTIONS(53), }, [2210] = { - [sym_for_statement] = STATE(2423), - [sym_while_statement] = STATE(2423), - [sym_if_statement] = STATE(2423), - [sym_case_statement] = STATE(2423), - [sym_function_definition] = STATE(2423), - [sym_subshell] = STATE(2423), - [sym_pipeline] = STATE(2423), - [sym_list] = STATE(2423), - [sym_negated_command] = STATE(2423), - [sym_test_command] = STATE(2423), - [sym_declaration_command] = STATE(2423), - [sym_unset_command] = STATE(2423), - [sym_command] = STATE(2423), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2424), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__concat] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), }, [2211] = { - [sym_for_statement] = STATE(2425), - [sym_while_statement] = STATE(2425), - [sym_if_statement] = STATE(2425), - [sym_case_statement] = STATE(2425), - [sym_function_definition] = STATE(2425), - [sym_subshell] = STATE(2425), - [sym_pipeline] = STATE(2425), - [sym_list] = STATE(2425), - [sym_negated_command] = STATE(2425), - [sym_test_command] = STATE(2425), - [sym_declaration_command] = STATE(2425), - [sym_unset_command] = STATE(2425), - [sym_command] = STATE(2425), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2426), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5815), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), }, [2212] = { - [sym_for_statement] = STATE(2427), - [sym_while_statement] = STATE(2427), - [sym_if_statement] = STATE(2427), - [sym_case_statement] = STATE(2427), - [sym_function_definition] = STATE(2427), - [sym_subshell] = STATE(2427), - [sym_pipeline] = STATE(2427), - [sym_list] = STATE(2427), - [sym_negated_command] = STATE(2427), - [sym_test_command] = STATE(2427), - [sym_declaration_command] = STATE(2427), - [sym_unset_command] = STATE(2427), - [sym_command] = STATE(2427), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2428), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5817), + [sym_comment] = ACTIONS(53), + }, + [2213] = { + [anon_sym_RBRACE] = ACTIONS(5817), + [sym_comment] = ACTIONS(53), + }, + [2214] = { + [sym_concatenation] = STATE(2520), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2520), + [anon_sym_RBRACE] = ACTIONS(5819), + [anon_sym_EQ] = ACTIONS(5821), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5821), + [anon_sym_COLON_QMARK] = ACTIONS(5821), + [anon_sym_COLON_DASH] = ACTIONS(5821), + [anon_sym_PERCENT] = ACTIONS(5821), + [anon_sym_DASH] = ACTIONS(5821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2215] = { + [sym__concat] = ACTIONS(3016), + [anon_sym_RBRACE] = ACTIONS(3016), + [sym_comment] = ACTIONS(53), + }, + [2216] = { + [sym_concatenation] = STATE(2523), + [sym_string] = STATE(2522), + [sym_simple_expansion] = STATE(2522), + [sym_string_expansion] = STATE(2522), + [sym_expansion] = STATE(2522), + [sym_command_substitution] = STATE(2522), + [sym_process_substitution] = STATE(2522), + [anon_sym_RBRACE] = ACTIONS(5817), + [sym__special_characters] = ACTIONS(5825), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(5827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5827), + }, + [2217] = { + [sym__concat] = ACTIONS(3059), + [anon_sym_RBRACE] = ACTIONS(3059), + [sym_comment] = ACTIONS(53), + }, + [2218] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5829), + }, + [2219] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5831), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2220] = { + [sym__concat] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [sym_comment] = ACTIONS(53), + }, + [2221] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5833), + }, + [2222] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5835), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2223] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5837), + }, + [2224] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5817), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2225] = { + [sym_concatenation] = STATE(2530), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2530), + [anon_sym_RBRACE] = ACTIONS(5839), + [anon_sym_EQ] = ACTIONS(5841), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5843), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_COLON_QMARK] = ACTIONS(5841), + [anon_sym_COLON_DASH] = ACTIONS(5841), + [anon_sym_PERCENT] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2226] = { + [sym__concat] = ACTIONS(3083), + [anon_sym_RBRACE] = ACTIONS(3083), + [sym_comment] = ACTIONS(53), + }, + [2227] = { + [sym_concatenation] = STATE(2532), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2532), + [anon_sym_RBRACE] = ACTIONS(5845), + [anon_sym_EQ] = ACTIONS(5847), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5847), + [anon_sym_COLON_QMARK] = ACTIONS(5847), + [anon_sym_COLON_DASH] = ACTIONS(5847), + [anon_sym_PERCENT] = ACTIONS(5847), + [anon_sym_DASH] = ACTIONS(5847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2228] = { + [sym__concat] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4166), + [sym__special_characters] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4166), + [anon_sym_COLON_QMARK] = ACTIONS(4166), + [anon_sym_COLON_DASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4164), + [anon_sym_BQUOTE] = ACTIONS(4164), + [anon_sym_LT_LPAREN] = ACTIONS(4164), + [anon_sym_GT_LPAREN] = ACTIONS(4164), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4166), + }, + [2229] = { + [sym__concat] = ACTIONS(4172), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_EQ] = ACTIONS(4174), + [sym__special_characters] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4172), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4172), + [anon_sym_POUND] = ACTIONS(4172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(4174), + [anon_sym_COLON_QMARK] = ACTIONS(4174), + [anon_sym_COLON_DASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4172), + [anon_sym_BQUOTE] = ACTIONS(4172), + [anon_sym_LT_LPAREN] = ACTIONS(4172), + [anon_sym_GT_LPAREN] = ACTIONS(4172), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4174), + }, + [2230] = { + [sym__concat] = ACTIONS(4259), + [anon_sym_RBRACE] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4261), + [sym__special_characters] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4261), + [anon_sym_COLON_QMARK] = ACTIONS(4261), + [anon_sym_COLON_DASH] = ACTIONS(4261), + [anon_sym_PERCENT] = ACTIONS(4261), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4259), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LT_LPAREN] = ACTIONS(4259), + [anon_sym_GT_LPAREN] = ACTIONS(4259), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4261), + }, + [2231] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5851), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2232] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5853), + [sym_comment] = ACTIONS(53), + }, + [2233] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5855), + [sym_comment] = ACTIONS(53), + }, + [2234] = { + [anon_sym_RBRACE] = ACTIONS(5855), + [sym_comment] = ACTIONS(53), + }, + [2235] = { + [sym_concatenation] = STATE(2537), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2537), + [anon_sym_RBRACE] = ACTIONS(5857), + [anon_sym_EQ] = ACTIONS(5859), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5859), + [anon_sym_COLON_QMARK] = ACTIONS(5859), + [anon_sym_COLON_DASH] = ACTIONS(5859), + [anon_sym_PERCENT] = ACTIONS(5859), + [anon_sym_DASH] = ACTIONS(5859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2236] = { + [sym__concat] = ACTIONS(4275), + [anon_sym_RBRACE] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4277), + [sym__special_characters] = ACTIONS(4277), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4277), + [anon_sym_COLON_QMARK] = ACTIONS(4277), + [anon_sym_COLON_DASH] = ACTIONS(4277), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LT_LPAREN] = ACTIONS(4275), + [anon_sym_GT_LPAREN] = ACTIONS(4275), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4277), + }, + [2237] = { + [sym_concatenation] = STATE(2539), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2539), + [anon_sym_RBRACE] = ACTIONS(5863), + [anon_sym_EQ] = ACTIONS(5865), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5865), + [anon_sym_COLON_QMARK] = ACTIONS(5865), + [anon_sym_COLON_DASH] = ACTIONS(5865), + [anon_sym_PERCENT] = ACTIONS(5865), + [anon_sym_DASH] = ACTIONS(5865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2238] = { + [sym__concat] = ACTIONS(4285), + [anon_sym_RBRACE] = ACTIONS(4285), + [anon_sym_EQ] = ACTIONS(4287), + [sym__special_characters] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4285), + [anon_sym_POUND] = ACTIONS(4285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), + [anon_sym_COLON] = ACTIONS(4287), + [anon_sym_COLON_QMARK] = ACTIONS(4287), + [anon_sym_COLON_DASH] = ACTIONS(4287), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_DASH] = ACTIONS(4287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4285), + [anon_sym_BQUOTE] = ACTIONS(4285), + [anon_sym_LT_LPAREN] = ACTIONS(4285), + [anon_sym_GT_LPAREN] = ACTIONS(4285), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4287), + }, + [2239] = { + [sym_concatenation] = STATE(2541), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2541), + [anon_sym_RBRACE] = ACTIONS(5869), + [anon_sym_EQ] = ACTIONS(5871), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5871), + [anon_sym_COLON_QMARK] = ACTIONS(5871), + [anon_sym_COLON_DASH] = ACTIONS(5871), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2240] = { + [sym__concat] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4297), + [sym__special_characters] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4295), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4295), + [anon_sym_POUND] = ACTIONS(4295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_COLON_QMARK] = ACTIONS(4297), + [anon_sym_COLON_DASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4295), + [anon_sym_BQUOTE] = ACTIONS(4295), + [anon_sym_LT_LPAREN] = ACTIONS(4295), + [anon_sym_GT_LPAREN] = ACTIONS(4295), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4297), + }, + [2241] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5875), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2242] = { + [sym__concat] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_EQ] = ACTIONS(4303), + [sym__special_characters] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4301), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4301), + [anon_sym_POUND] = ACTIONS(4301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_COLON_QMARK] = ACTIONS(4303), + [anon_sym_COLON_DASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4301), + [anon_sym_BQUOTE] = ACTIONS(4301), + [anon_sym_LT_LPAREN] = ACTIONS(4301), + [anon_sym_GT_LPAREN] = ACTIONS(4301), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4303), + }, + [2243] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5877), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2244] = { + [sym__simple_heredoc_body] = ACTIONS(5879), + [sym__heredoc_body_beginning] = ACTIONS(5879), + [sym_file_descriptor] = ACTIONS(5879), + [sym__concat] = ACTIONS(5879), + [anon_sym_esac] = ACTIONS(5881), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_RPAREN] = ACTIONS(5881), + [anon_sym_SEMI_SEMI] = ACTIONS(5881), + [anon_sym_PIPE_AMP] = ACTIONS(5881), + [anon_sym_AMP_AMP] = ACTIONS(5881), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [anon_sym_EQ_TILDE] = ACTIONS(5881), + [anon_sym_EQ_EQ] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_GT_GT] = ACTIONS(5881), + [anon_sym_AMP_GT] = ACTIONS(5881), + [anon_sym_AMP_GT_GT] = ACTIONS(5881), + [anon_sym_LT_AMP] = ACTIONS(5881), + [anon_sym_GT_AMP] = ACTIONS(5881), + [anon_sym_LT_LT] = ACTIONS(5881), + [anon_sym_LT_LT_DASH] = ACTIONS(5881), + [anon_sym_LT_LT_LT] = ACTIONS(5881), + [sym__special_characters] = ACTIONS(5881), + [anon_sym_DQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), + [anon_sym_BQUOTE] = ACTIONS(5881), + [anon_sym_LT_LPAREN] = ACTIONS(5881), + [anon_sym_GT_LPAREN] = ACTIONS(5881), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5881), + [anon_sym_SEMI] = ACTIONS(5881), + [anon_sym_LF] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), + }, + [2245] = { + [sym__simple_heredoc_body] = ACTIONS(5883), + [sym__heredoc_body_beginning] = ACTIONS(5883), + [sym_file_descriptor] = ACTIONS(5883), + [sym__concat] = ACTIONS(5883), + [anon_sym_esac] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5885), + [anon_sym_SEMI_SEMI] = ACTIONS(5885), + [anon_sym_PIPE_AMP] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [anon_sym_EQ_TILDE] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_GT_GT] = ACTIONS(5885), + [anon_sym_AMP_GT] = ACTIONS(5885), + [anon_sym_AMP_GT_GT] = ACTIONS(5885), + [anon_sym_LT_AMP] = ACTIONS(5885), + [anon_sym_GT_AMP] = ACTIONS(5885), + [anon_sym_LT_LT] = ACTIONS(5885), + [anon_sym_LT_LT_DASH] = ACTIONS(5885), + [anon_sym_LT_LT_LT] = ACTIONS(5885), + [sym__special_characters] = ACTIONS(5885), + [anon_sym_DQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), + [anon_sym_BQUOTE] = ACTIONS(5885), + [anon_sym_LT_LPAREN] = ACTIONS(5885), + [anon_sym_GT_LPAREN] = ACTIONS(5885), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5885), + [anon_sym_SEMI] = ACTIONS(5885), + [anon_sym_LF] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + }, + [2246] = { + [sym__simple_heredoc_body] = ACTIONS(5887), + [sym__heredoc_body_beginning] = ACTIONS(5887), + [sym_file_descriptor] = ACTIONS(5887), + [sym__concat] = ACTIONS(5887), + [anon_sym_esac] = ACTIONS(5889), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5889), + [anon_sym_SEMI_SEMI] = ACTIONS(5889), + [anon_sym_PIPE_AMP] = ACTIONS(5889), + [anon_sym_AMP_AMP] = ACTIONS(5889), + [anon_sym_PIPE_PIPE] = ACTIONS(5889), + [anon_sym_EQ_TILDE] = ACTIONS(5889), + [anon_sym_EQ_EQ] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_GT_GT] = ACTIONS(5889), + [anon_sym_AMP_GT] = ACTIONS(5889), + [anon_sym_AMP_GT_GT] = ACTIONS(5889), + [anon_sym_LT_AMP] = ACTIONS(5889), + [anon_sym_GT_AMP] = ACTIONS(5889), + [anon_sym_LT_LT] = ACTIONS(5889), + [anon_sym_LT_LT_DASH] = ACTIONS(5889), + [anon_sym_LT_LT_LT] = ACTIONS(5889), + [sym__special_characters] = ACTIONS(5889), + [anon_sym_DQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), + [anon_sym_BQUOTE] = ACTIONS(5889), + [anon_sym_LT_LPAREN] = ACTIONS(5889), + [anon_sym_GT_LPAREN] = ACTIONS(5889), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5889), + [anon_sym_SEMI] = ACTIONS(5889), + [anon_sym_LF] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), + }, + [2247] = { + [sym__terminated_statement] = STATE(2545), + [sym_for_statement] = STATE(680), + [sym_c_style_for_statement] = STATE(680), + [sym_while_statement] = STATE(680), + [sym_if_statement] = STATE(680), + [sym_case_statement] = STATE(680), + [sym_function_definition] = STATE(680), + [sym_subshell] = STATE(680), + [sym_pipeline] = STATE(680), + [sym_list] = STATE(680), + [sym_negated_command] = STATE(680), + [sym_test_command] = STATE(680), + [sym_declaration_command] = STATE(680), + [sym_unset_command] = STATE(680), + [sym_command] = STATE(680), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(681), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2545), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(5891), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -56951,137 +58613,3634 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_word] = ACTIONS(55), }, - [2213] = { - [sym_variable_name] = ACTIONS(621), - [anon_sym_esac] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_SEMI_SEMI] = ACTIONS(623), - [anon_sym_PIPE_AMP] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [sym__special_characters] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(623), - [sym_raw_string] = ACTIONS(623), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(623), - [anon_sym_BQUOTE] = ACTIONS(623), - [anon_sym_LT_LPAREN] = ACTIONS(623), - [anon_sym_GT_LPAREN] = ACTIONS(623), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), - [sym_word] = ACTIONS(623), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_LF] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - }, - [2214] = { - [anon_sym_EQ] = ACTIONS(5613), - [anon_sym_PLUS_EQ] = ACTIONS(5613), + [2248] = { + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_RPAREN] = ACTIONS(4656), + [anon_sym_PIPE_AMP] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [anon_sym_BQUOTE] = ACTIONS(4656), [sym_comment] = ACTIONS(53), }, - [2215] = { - [sym_variable_assignment] = STATE(2429), - [sym_subscript] = STATE(2214), - [sym_concatenation] = STATE(2429), - [sym_string] = STATE(2208), - [sym_simple_expansion] = STATE(2208), - [sym_string_expansion] = STATE(2208), - [sym_expansion] = STATE(2208), - [sym_command_substitution] = STATE(2208), - [sym_process_substitution] = STATE(2208), - [aux_sym_declaration_command_repeat1] = STATE(2429), - [sym_variable_name] = ACTIONS(5173), - [anon_sym_esac] = ACTIONS(625), - [anon_sym_PIPE] = 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), - [sym__special_characters] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [sym_raw_string] = ACTIONS(5181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5185), - [anon_sym_BQUOTE] = ACTIONS(5187), - [anon_sym_LT_LPAREN] = ACTIONS(5189), - [anon_sym_GT_LPAREN] = ACTIONS(5189), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5191), - [sym_word] = ACTIONS(5181), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), + [2249] = { + [sym_do_group] = STATE(2546), + [sym_compound_statement] = STATE(2546), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(5240), + [sym_comment] = ACTIONS(53), }, - [2216] = { - [aux_sym_concatenation_repeat1] = STATE(2431), - [sym__concat] = ACTIONS(5641), - [anon_sym_esac] = ACTIONS(631), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_SEMI_SEMI] = ACTIONS(631), - [anon_sym_PIPE_AMP] = ACTIONS(631), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym__special_characters] = ACTIONS(631), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [sym_raw_string] = ACTIONS(631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(631), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(631), - [sym_word] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), + [2250] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(5893), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_EQ_TILDE] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3688), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3684), + }, + [2251] = { + [sym__expression] = STATE(2548), + [sym_binary_expression] = STATE(2548), + [sym_unary_expression] = STATE(2548), + [sym_parenthesized_expression] = STATE(2548), + [sym_concatenation] = STATE(2548), + [sym_string] = STATE(1102), + [sym_simple_expansion] = STATE(1102), + [sym_string_expansion] = STATE(1102), + [sym_expansion] = STATE(1102), + [sym_command_substitution] = STATE(1102), + [sym_process_substitution] = STATE(1102), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5893), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [sym__special_characters] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [sym_raw_string] = ACTIONS(2347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), + [anon_sym_BQUOTE] = ACTIONS(2353), + [anon_sym_LT_LPAREN] = ACTIONS(2355), + [anon_sym_GT_LPAREN] = ACTIONS(2355), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2357), + [sym_test_operator] = ACTIONS(2359), + }, + [2252] = { + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_RPAREN] = ACTIONS(4760), + [anon_sym_PIPE_AMP] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_BQUOTE] = ACTIONS(4760), + [sym_comment] = ACTIONS(53), + }, + [2253] = { + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_RPAREN] = ACTIONS(3767), + [anon_sym_PIPE_AMP] = ACTIONS(3767), + [anon_sym_AMP_AMP] = ACTIONS(3767), + [anon_sym_PIPE_PIPE] = ACTIONS(3767), + [anon_sym_BQUOTE] = ACTIONS(3767), + [sym_comment] = ACTIONS(53), + }, + [2254] = { + [anon_sym_PIPE] = ACTIONS(4764), + [anon_sym_RPAREN] = ACTIONS(4766), + [anon_sym_PIPE_AMP] = ACTIONS(4766), + [anon_sym_AMP_AMP] = ACTIONS(4766), + [anon_sym_PIPE_PIPE] = ACTIONS(4766), + [anon_sym_BQUOTE] = ACTIONS(4766), + [sym_comment] = ACTIONS(53), + }, + [2255] = { + [anon_sym_fi] = ACTIONS(5895), + [sym_comment] = ACTIONS(53), + }, + [2256] = { + [anon_sym_PIPE] = ACTIONS(4808), + [anon_sym_RPAREN] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [sym_comment] = ACTIONS(53), + }, + [2257] = { + [anon_sym_esac] = ACTIONS(5897), + [sym_comment] = ACTIONS(53), + }, + [2258] = { + [anon_sym_PIPE] = ACTIONS(4838), + [anon_sym_RPAREN] = ACTIONS(4840), + [anon_sym_PIPE_AMP] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_BQUOTE] = ACTIONS(4840), + [sym_comment] = ACTIONS(53), + }, + [2259] = { + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(2551), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1640), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2467), + }, + [2260] = { + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4844), + [anon_sym_PIPE_AMP] = ACTIONS(4844), + [anon_sym_AMP_AMP] = ACTIONS(4844), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_BQUOTE] = ACTIONS(4844), + [sym_comment] = ACTIONS(53), + }, + [2261] = { + [anon_sym_esac] = ACTIONS(5899), + [sym_comment] = ACTIONS(53), + }, + [2262] = { + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4850), + [anon_sym_PIPE_AMP] = ACTIONS(4850), + [anon_sym_AMP_AMP] = ACTIONS(4850), + [anon_sym_PIPE_PIPE] = ACTIONS(4850), + [anon_sym_BQUOTE] = ACTIONS(4850), + [sym_comment] = ACTIONS(53), + }, + [2263] = { + [sym_case_item] = STATE(1151), + [sym_last_case_item] = STATE(2553), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [aux_sym_case_statement_repeat1] = STATE(1640), + [sym__special_characters] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2467), + }, + [2264] = { + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4882), + [anon_sym_PIPE_AMP] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_BQUOTE] = ACTIONS(4882), + [sym_comment] = ACTIONS(53), + }, + [2265] = { + [aux_sym_concatenation_repeat1] = STATE(2268), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_RPAREN] = ACTIONS(1133), + [anon_sym_PIPE_AMP] = ACTIONS(1133), + [anon_sym_AMP_AMP] = ACTIONS(1133), + [anon_sym_PIPE_PIPE] = ACTIONS(1133), + [sym_comment] = ACTIONS(53), + }, + [2266] = { + [aux_sym_concatenation_repeat1] = STATE(2268), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1137), + [anon_sym_PIPE_AMP] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [sym_comment] = ACTIONS(53), + }, + [2267] = { + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1137), + [anon_sym_PIPE_AMP] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1137), + [sym_comment] = ACTIONS(53), + }, + [2268] = { + [aux_sym_concatenation_repeat1] = STATE(2554), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + }, + [2269] = { + [aux_sym_concatenation_repeat1] = STATE(2273), + [sym_file_descriptor] = ACTIONS(1133), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_RPAREN] = ACTIONS(1133), + [anon_sym_PIPE_AMP] = ACTIONS(1133), + [anon_sym_AMP_AMP] = ACTIONS(1133), + [anon_sym_PIPE_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1133), + [anon_sym_AMP_GT] = ACTIONS(1135), + [anon_sym_AMP_GT_GT] = ACTIONS(1133), + [anon_sym_LT_AMP] = ACTIONS(1133), + [anon_sym_GT_AMP] = ACTIONS(1133), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_LT_LT_DASH] = ACTIONS(1133), + [anon_sym_LT_LT_LT] = ACTIONS(1133), + [sym_comment] = ACTIONS(53), + }, + [2270] = { + [aux_sym_concatenation_repeat1] = STATE(2273), + [sym_file_descriptor] = ACTIONS(1137), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1137), + [anon_sym_PIPE_AMP] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1137), + [anon_sym_LT_AMP] = ACTIONS(1137), + [anon_sym_GT_AMP] = ACTIONS(1137), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1137), + [anon_sym_LT_LT_LT] = ACTIONS(1137), + [sym_comment] = ACTIONS(53), + }, + [2271] = { + [sym_file_descriptor] = ACTIONS(1137), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1137), + [anon_sym_PIPE_AMP] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1137), + [anon_sym_LT_AMP] = ACTIONS(1137), + [anon_sym_GT_AMP] = ACTIONS(1137), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1137), + [anon_sym_LT_LT_LT] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1137), + [sym_comment] = ACTIONS(53), + }, + [2272] = { + [sym_string] = STATE(2555), + [sym_simple_expansion] = STATE(2555), + [sym_string_expansion] = STATE(2555), + [sym_expansion] = STATE(2555), + [sym_command_substitution] = STATE(2555), + [sym_process_substitution] = STATE(2555), + [sym__special_characters] = ACTIONS(5901), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4357), + [sym_raw_string] = ACTIONS(5901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4365), + [anon_sym_LT_LPAREN] = ACTIONS(4367), + [anon_sym_GT_LPAREN] = ACTIONS(4367), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5901), + }, + [2273] = { + [aux_sym_concatenation_repeat1] = STATE(2556), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_LT_LT_LT] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + }, + [2274] = { + [sym_file_descriptor] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_PIPE_AMP] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_GT] = ACTIONS(735), + [anon_sym_AMP_GT] = ACTIONS(737), + [anon_sym_AMP_GT_GT] = ACTIONS(735), + [anon_sym_LT_AMP] = ACTIONS(735), + [anon_sym_GT_AMP] = ACTIONS(735), + [anon_sym_LT_LT] = ACTIONS(737), + [anon_sym_LT_LT_DASH] = ACTIONS(735), + [anon_sym_LT_LT_LT] = ACTIONS(735), + [anon_sym_BQUOTE] = ACTIONS(735), + [sym_comment] = ACTIONS(53), + }, + [2275] = { + [anon_sym_DQUOTE] = ACTIONS(5903), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [2276] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(5903), + [anon_sym_DOLLAR] = ACTIONS(5905), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [2277] = { + [sym_file_descriptor] = ACTIONS(767), + [sym__concat] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(767), + [anon_sym_AMP_GT] = ACTIONS(769), + [anon_sym_AMP_GT_GT] = ACTIONS(767), + [anon_sym_LT_AMP] = ACTIONS(767), + [anon_sym_GT_AMP] = ACTIONS(767), + [anon_sym_LT_LT] = ACTIONS(769), + [anon_sym_LT_LT_DASH] = ACTIONS(767), + [anon_sym_LT_LT_LT] = ACTIONS(767), + [anon_sym_BQUOTE] = ACTIONS(767), + [sym_comment] = ACTIONS(53), + }, + [2278] = { + [sym_file_descriptor] = ACTIONS(771), + [sym__concat] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_AMP_GT] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_LT_AMP] = ACTIONS(771), + [anon_sym_GT_AMP] = ACTIONS(771), + [anon_sym_LT_LT] = ACTIONS(773), + [anon_sym_LT_LT_DASH] = ACTIONS(771), + [anon_sym_LT_LT_LT] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(771), + [sym_comment] = ACTIONS(53), + }, + [2279] = { + [sym_file_descriptor] = ACTIONS(775), + [sym__concat] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_PIPE_AMP] = ACTIONS(775), + [anon_sym_AMP_AMP] = ACTIONS(775), + [anon_sym_PIPE_PIPE] = ACTIONS(775), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(775), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(775), + [anon_sym_LT_AMP] = ACTIONS(775), + [anon_sym_GT_AMP] = ACTIONS(775), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(775), + [anon_sym_LT_LT_LT] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(775), + [sym_comment] = ACTIONS(53), + }, + [2280] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(5907), + [sym_comment] = ACTIONS(53), + }, + [2281] = { + [sym_concatenation] = STATE(2562), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2562), + [anon_sym_RBRACE] = ACTIONS(5909), + [anon_sym_EQ] = ACTIONS(5911), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_COLON_QMARK] = ACTIONS(5911), + [anon_sym_COLON_DASH] = ACTIONS(5911), + [anon_sym_PERCENT] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2282] = { + [sym_subscript] = STATE(2566), + [sym_variable_name] = ACTIONS(5917), + [anon_sym_DOLLAR] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5919), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_AT] = ACTIONS(5919), + [anon_sym_QMARK] = ACTIONS(5919), + [anon_sym_0] = ACTIONS(5923), + [anon_sym__] = ACTIONS(5923), + }, + [2283] = { + [sym_concatenation] = STATE(2569), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2569), + [anon_sym_RBRACE] = ACTIONS(5925), + [anon_sym_EQ] = ACTIONS(5927), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(5931), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_COLON_QMARK] = ACTIONS(5927), + [anon_sym_COLON_DASH] = ACTIONS(5927), + [anon_sym_PERCENT] = ACTIONS(5927), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2284] = { + [sym_concatenation] = STATE(2572), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2572), + [anon_sym_RBRACE] = ACTIONS(5933), + [anon_sym_EQ] = ACTIONS(5935), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(5939), + [anon_sym_COLON] = ACTIONS(5935), + [anon_sym_COLON_QMARK] = ACTIONS(5935), + [anon_sym_COLON_DASH] = ACTIONS(5935), + [anon_sym_PERCENT] = ACTIONS(5935), + [anon_sym_DASH] = ACTIONS(5935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2285] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(5941), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [2286] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(5941), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [2287] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(5941), + [sym_comment] = ACTIONS(53), + }, + [2288] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [2289] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [2290] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [2291] = { + [sym_variable_name] = ACTIONS(3581), + [anon_sym_PIPE] = ACTIONS(3583), + [anon_sym_RPAREN] = ACTIONS(3581), + [anon_sym_PIPE_AMP] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [sym__special_characters] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_DOLLAR] = ACTIONS(3583), + [sym_raw_string] = ACTIONS(3581), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3581), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3581), + [anon_sym_BQUOTE] = ACTIONS(3581), + [anon_sym_LT_LPAREN] = ACTIONS(3581), + [anon_sym_GT_LPAREN] = ACTIONS(3581), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3583), + [sym_word] = ACTIONS(3583), + }, + [2292] = { + [sym__concat] = ACTIONS(4164), + [sym_variable_name] = ACTIONS(4164), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_PIPE_AMP] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [sym__special_characters] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4164), + [anon_sym_BQUOTE] = ACTIONS(4164), + [anon_sym_LT_LPAREN] = ACTIONS(4164), + [anon_sym_GT_LPAREN] = ACTIONS(4164), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4166), + [sym_word] = ACTIONS(4166), + }, + [2293] = { + [sym__concat] = ACTIONS(4172), + [sym_variable_name] = ACTIONS(4172), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_PIPE_AMP] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [sym__special_characters] = ACTIONS(4172), + [anon_sym_DQUOTE] = ACTIONS(4172), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4172), + [anon_sym_BQUOTE] = ACTIONS(4172), + [anon_sym_LT_LPAREN] = ACTIONS(4172), + [anon_sym_GT_LPAREN] = ACTIONS(4172), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4174), + [sym_word] = ACTIONS(4174), + }, + [2294] = { + [sym__concat] = ACTIONS(4259), + [sym_variable_name] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_RPAREN] = ACTIONS(4259), + [anon_sym_PIPE_AMP] = ACTIONS(4259), + [anon_sym_AMP_AMP] = ACTIONS(4259), + [anon_sym_PIPE_PIPE] = ACTIONS(4259), + [sym__special_characters] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4259), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LT_LPAREN] = ACTIONS(4259), + [anon_sym_GT_LPAREN] = ACTIONS(4259), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4261), + [sym_word] = ACTIONS(4261), + }, + [2295] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5945), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2296] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5947), + [sym_comment] = ACTIONS(53), + }, + [2297] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5949), + [sym_comment] = ACTIONS(53), + }, + [2298] = { + [anon_sym_RBRACE] = ACTIONS(5949), + [sym_comment] = ACTIONS(53), + }, + [2299] = { + [sym_concatenation] = STATE(2579), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2579), + [anon_sym_RBRACE] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5953), + [anon_sym_COLON_QMARK] = ACTIONS(5953), + [anon_sym_COLON_DASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2300] = { + [sym__concat] = ACTIONS(4275), + [sym_variable_name] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4275), + [anon_sym_PIPE_AMP] = ACTIONS(4275), + [anon_sym_AMP_AMP] = ACTIONS(4275), + [anon_sym_PIPE_PIPE] = ACTIONS(4275), + [sym__special_characters] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LT_LPAREN] = ACTIONS(4275), + [anon_sym_GT_LPAREN] = ACTIONS(4275), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), + [sym_word] = ACTIONS(4277), + }, + [2301] = { + [sym_concatenation] = STATE(2581), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2581), + [anon_sym_RBRACE] = ACTIONS(5957), + [anon_sym_EQ] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5959), + [anon_sym_COLON_QMARK] = ACTIONS(5959), + [anon_sym_COLON_DASH] = ACTIONS(5959), + [anon_sym_PERCENT] = ACTIONS(5959), + [anon_sym_DASH] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2302] = { + [sym__concat] = ACTIONS(4285), + [sym_variable_name] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4285), + [anon_sym_PIPE_AMP] = ACTIONS(4285), + [anon_sym_AMP_AMP] = ACTIONS(4285), + [anon_sym_PIPE_PIPE] = ACTIONS(4285), + [sym__special_characters] = ACTIONS(4285), + [anon_sym_DQUOTE] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4285), + [anon_sym_BQUOTE] = ACTIONS(4285), + [anon_sym_LT_LPAREN] = ACTIONS(4285), + [anon_sym_GT_LPAREN] = ACTIONS(4285), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4287), + [sym_word] = ACTIONS(4287), + }, + [2303] = { + [sym_concatenation] = STATE(2583), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2583), + [anon_sym_RBRACE] = ACTIONS(5963), + [anon_sym_EQ] = ACTIONS(5965), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5965), + [anon_sym_COLON_QMARK] = ACTIONS(5965), + [anon_sym_COLON_DASH] = ACTIONS(5965), + [anon_sym_PERCENT] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2304] = { + [sym__concat] = ACTIONS(4295), + [sym_variable_name] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_PIPE_AMP] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [sym__special_characters] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4295), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4295), + [anon_sym_BQUOTE] = ACTIONS(4295), + [anon_sym_LT_LPAREN] = ACTIONS(4295), + [anon_sym_GT_LPAREN] = ACTIONS(4295), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4297), + [sym_word] = ACTIONS(4297), + }, + [2305] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5969), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2306] = { + [sym__concat] = ACTIONS(4301), + [sym_variable_name] = ACTIONS(4301), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_PIPE_AMP] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [sym__special_characters] = ACTIONS(4301), + [anon_sym_DQUOTE] = ACTIONS(4301), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4301), + [anon_sym_BQUOTE] = ACTIONS(4301), + [anon_sym_LT_LPAREN] = ACTIONS(4301), + [anon_sym_GT_LPAREN] = ACTIONS(4301), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4303), + [sym_word] = ACTIONS(4303), + }, + [2307] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5971), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2308] = { + [sym__concat] = ACTIONS(4164), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_PIPE_AMP] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [sym__special_characters] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4164), + [anon_sym_BQUOTE] = ACTIONS(4164), + [anon_sym_LT_LPAREN] = ACTIONS(4164), + [anon_sym_GT_LPAREN] = ACTIONS(4164), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4166), + [sym_word] = ACTIONS(4166), + }, + [2309] = { + [sym__concat] = ACTIONS(4172), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_PIPE_AMP] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [sym__special_characters] = ACTIONS(4172), + [anon_sym_DQUOTE] = ACTIONS(4172), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4172), + [anon_sym_BQUOTE] = ACTIONS(4172), + [anon_sym_LT_LPAREN] = ACTIONS(4172), + [anon_sym_GT_LPAREN] = ACTIONS(4172), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4174), + [sym_word] = ACTIONS(4174), + }, + [2310] = { + [sym__concat] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_RPAREN] = ACTIONS(4259), + [anon_sym_PIPE_AMP] = ACTIONS(4259), + [anon_sym_AMP_AMP] = ACTIONS(4259), + [anon_sym_PIPE_PIPE] = ACTIONS(4259), + [sym__special_characters] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4259), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LT_LPAREN] = ACTIONS(4259), + [anon_sym_GT_LPAREN] = ACTIONS(4259), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4261), + [sym_word] = ACTIONS(4261), + }, + [2311] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5973), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2312] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5975), + [sym_comment] = ACTIONS(53), + }, + [2313] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(5977), + [sym_comment] = ACTIONS(53), + }, + [2314] = { + [anon_sym_RBRACE] = ACTIONS(5977), + [sym_comment] = ACTIONS(53), + }, + [2315] = { + [sym_concatenation] = STATE(2590), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2590), + [anon_sym_RBRACE] = ACTIONS(5979), + [anon_sym_EQ] = ACTIONS(5981), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5983), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5981), + [anon_sym_COLON_QMARK] = ACTIONS(5981), + [anon_sym_COLON_DASH] = ACTIONS(5981), + [anon_sym_PERCENT] = ACTIONS(5981), + [anon_sym_DASH] = ACTIONS(5981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2316] = { + [sym__concat] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4275), + [anon_sym_PIPE_AMP] = ACTIONS(4275), + [anon_sym_AMP_AMP] = ACTIONS(4275), + [anon_sym_PIPE_PIPE] = ACTIONS(4275), + [sym__special_characters] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LT_LPAREN] = ACTIONS(4275), + [anon_sym_GT_LPAREN] = ACTIONS(4275), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), + [sym_word] = ACTIONS(4277), + }, + [2317] = { + [sym_concatenation] = STATE(2592), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2592), + [anon_sym_RBRACE] = ACTIONS(5985), + [anon_sym_EQ] = ACTIONS(5987), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_COLON_QMARK] = ACTIONS(5987), + [anon_sym_COLON_DASH] = ACTIONS(5987), + [anon_sym_PERCENT] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2318] = { + [sym__concat] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4285), + [anon_sym_PIPE_AMP] = ACTIONS(4285), + [anon_sym_AMP_AMP] = ACTIONS(4285), + [anon_sym_PIPE_PIPE] = ACTIONS(4285), + [sym__special_characters] = ACTIONS(4285), + [anon_sym_DQUOTE] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4285), + [anon_sym_BQUOTE] = ACTIONS(4285), + [anon_sym_LT_LPAREN] = ACTIONS(4285), + [anon_sym_GT_LPAREN] = ACTIONS(4285), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4287), + [sym_word] = ACTIONS(4287), + }, + [2319] = { + [sym_concatenation] = STATE(2594), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2594), + [anon_sym_RBRACE] = ACTIONS(5991), + [anon_sym_EQ] = ACTIONS(5993), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(5995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(5993), + [anon_sym_COLON_QMARK] = ACTIONS(5993), + [anon_sym_COLON_DASH] = ACTIONS(5993), + [anon_sym_PERCENT] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5993), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2320] = { + [sym__concat] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_PIPE_AMP] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [sym__special_characters] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4295), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4295), + [anon_sym_BQUOTE] = ACTIONS(4295), + [anon_sym_LT_LPAREN] = ACTIONS(4295), + [anon_sym_GT_LPAREN] = ACTIONS(4295), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4297), + [sym_word] = ACTIONS(4297), + }, + [2321] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5997), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2322] = { + [sym__concat] = ACTIONS(4301), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_PIPE_AMP] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [sym__special_characters] = ACTIONS(4301), + [anon_sym_DQUOTE] = ACTIONS(4301), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4301), + [anon_sym_BQUOTE] = ACTIONS(4301), + [anon_sym_LT_LPAREN] = ACTIONS(4301), + [anon_sym_GT_LPAREN] = ACTIONS(4301), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4303), + [sym_word] = ACTIONS(4303), + }, + [2323] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(5999), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2324] = { + [sym__simple_heredoc_body] = ACTIONS(5202), + [sym__heredoc_body_beginning] = ACTIONS(5202), + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_EQ_TILDE] = ACTIONS(5204), + [anon_sym_EQ_EQ] = ACTIONS(5204), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5202), + [anon_sym_LT_AMP] = ACTIONS(5202), + [anon_sym_GT_AMP] = ACTIONS(5202), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_LT_LT_DASH] = ACTIONS(5202), + [anon_sym_LT_LT_LT] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5204), + }, + [2325] = { + [sym__simple_heredoc_body] = ACTIONS(5206), + [sym__heredoc_body_beginning] = ACTIONS(5206), + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_EQ_TILDE] = ACTIONS(5208), + [anon_sym_EQ_EQ] = ACTIONS(5208), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5206), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5206), + [anon_sym_LT_AMP] = ACTIONS(5206), + [anon_sym_GT_AMP] = ACTIONS(5206), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_LT_LT_DASH] = ACTIONS(5206), + [anon_sym_LT_LT_LT] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5208), + }, + [2326] = { + [sym__simple_heredoc_body] = ACTIONS(5210), + [sym__heredoc_body_beginning] = ACTIONS(5210), + [sym_file_descriptor] = ACTIONS(5210), + [sym__concat] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5210), + [anon_sym_PIPE_AMP] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_EQ_TILDE] = ACTIONS(5212), + [anon_sym_EQ_EQ] = ACTIONS(5212), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5210), + [anon_sym_AMP_GT] = ACTIONS(5212), + [anon_sym_AMP_GT_GT] = ACTIONS(5210), + [anon_sym_LT_AMP] = ACTIONS(5210), + [anon_sym_GT_AMP] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_LT_LT_DASH] = ACTIONS(5210), + [anon_sym_LT_LT_LT] = ACTIONS(5210), + [sym__special_characters] = ACTIONS(5210), + [anon_sym_DQUOTE] = ACTIONS(5210), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5210), + [anon_sym_BQUOTE] = ACTIONS(5210), + [anon_sym_LT_LPAREN] = ACTIONS(5210), + [anon_sym_GT_LPAREN] = ACTIONS(5210), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5212), + }, + [2327] = { + [sym__simple_heredoc_body] = ACTIONS(5214), + [sym__heredoc_body_beginning] = ACTIONS(5214), + [sym_file_descriptor] = ACTIONS(5214), + [sym__concat] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5214), + [anon_sym_PIPE_AMP] = ACTIONS(5214), + [anon_sym_AMP_AMP] = ACTIONS(5214), + [anon_sym_PIPE_PIPE] = ACTIONS(5214), + [anon_sym_EQ_TILDE] = ACTIONS(5216), + [anon_sym_EQ_EQ] = ACTIONS(5216), + [anon_sym_LT] = ACTIONS(5216), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5214), + [anon_sym_AMP_GT] = ACTIONS(5216), + [anon_sym_AMP_GT_GT] = ACTIONS(5214), + [anon_sym_LT_AMP] = ACTIONS(5214), + [anon_sym_GT_AMP] = ACTIONS(5214), + [anon_sym_LT_LT] = ACTIONS(5216), + [anon_sym_LT_LT_DASH] = ACTIONS(5214), + [anon_sym_LT_LT_LT] = ACTIONS(5214), + [sym__special_characters] = ACTIONS(5214), + [anon_sym_DQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR] = ACTIONS(5216), + [sym_raw_string] = ACTIONS(5214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5214), + [anon_sym_BQUOTE] = ACTIONS(5214), + [anon_sym_LT_LPAREN] = ACTIONS(5214), + [anon_sym_GT_LPAREN] = ACTIONS(5214), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5216), + }, + [2328] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6001), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2329] = { + [sym__simple_heredoc_body] = ACTIONS(5220), + [sym__heredoc_body_beginning] = ACTIONS(5220), + [sym_file_descriptor] = ACTIONS(5220), + [sym__concat] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_RPAREN] = 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(53), + [sym_word] = ACTIONS(5222), + }, + [2330] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6003), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2331] = { + [sym__simple_heredoc_body] = ACTIONS(5226), + [sym__heredoc_body_beginning] = ACTIONS(5226), + [sym_file_descriptor] = ACTIONS(5226), + [sym__concat] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_PIPE_AMP] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_EQ_TILDE] = ACTIONS(5228), + [anon_sym_EQ_EQ] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5226), + [anon_sym_AMP_GT] = ACTIONS(5228), + [anon_sym_AMP_GT_GT] = ACTIONS(5226), + [anon_sym_LT_AMP] = ACTIONS(5226), + [anon_sym_GT_AMP] = ACTIONS(5226), + [anon_sym_LT_LT] = ACTIONS(5228), + [anon_sym_LT_LT_DASH] = ACTIONS(5226), + [anon_sym_LT_LT_LT] = ACTIONS(5226), + [sym__special_characters] = ACTIONS(5226), + [anon_sym_DQUOTE] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5226), + [anon_sym_BQUOTE] = ACTIONS(5226), + [anon_sym_LT_LPAREN] = ACTIONS(5226), + [anon_sym_GT_LPAREN] = ACTIONS(5226), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5228), + }, + [2332] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6005), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2333] = { + [sym__simple_heredoc_body] = ACTIONS(5232), + [sym__heredoc_body_beginning] = ACTIONS(5232), + [sym_file_descriptor] = ACTIONS(5232), + [sym__concat] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5232), + [anon_sym_PIPE_AMP] = ACTIONS(5232), + [anon_sym_AMP_AMP] = ACTIONS(5232), + [anon_sym_PIPE_PIPE] = ACTIONS(5232), + [anon_sym_EQ_TILDE] = ACTIONS(5234), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_GT] = ACTIONS(5232), + [anon_sym_AMP_GT] = ACTIONS(5234), + [anon_sym_AMP_GT_GT] = ACTIONS(5232), + [anon_sym_LT_AMP] = ACTIONS(5232), + [anon_sym_GT_AMP] = ACTIONS(5232), + [anon_sym_LT_LT] = ACTIONS(5234), + [anon_sym_LT_LT_DASH] = ACTIONS(5232), + [anon_sym_LT_LT_LT] = ACTIONS(5232), + [sym__special_characters] = ACTIONS(5232), + [anon_sym_DQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5232), + [anon_sym_BQUOTE] = ACTIONS(5232), + [anon_sym_LT_LPAREN] = ACTIONS(5232), + [anon_sym_GT_LPAREN] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5234), + }, + [2334] = { + [sym__simple_heredoc_body] = ACTIONS(5236), + [sym__heredoc_body_beginning] = ACTIONS(5236), + [sym_file_descriptor] = ACTIONS(5236), + [sym__concat] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5236), + [anon_sym_PIPE_AMP] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_EQ_TILDE] = ACTIONS(5238), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_AMP_GT] = ACTIONS(5238), + [anon_sym_AMP_GT_GT] = ACTIONS(5236), + [anon_sym_LT_AMP] = ACTIONS(5236), + [anon_sym_GT_AMP] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_LT_LT_DASH] = ACTIONS(5236), + [anon_sym_LT_LT_LT] = ACTIONS(5236), + [sym__special_characters] = ACTIONS(5236), + [anon_sym_DQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5236), + [anon_sym_BQUOTE] = ACTIONS(5236), + [anon_sym_LT_LPAREN] = ACTIONS(5236), + [anon_sym_GT_LPAREN] = ACTIONS(5236), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5238), + }, + [2335] = { + [aux_sym_concatenation_repeat1] = STATE(2337), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_PIPE_AMP] = ACTIONS(1133), + [anon_sym_AMP_AMP] = ACTIONS(1133), + [anon_sym_PIPE_PIPE] = ACTIONS(1133), + [anon_sym_BQUOTE] = ACTIONS(1133), + [sym_comment] = ACTIONS(53), + }, + [2336] = { + [aux_sym_concatenation_repeat1] = STATE(2337), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1137), + [sym_comment] = ACTIONS(53), + }, + [2337] = { + [aux_sym_concatenation_repeat1] = STATE(2600), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + }, + [2338] = { + [aux_sym_concatenation_repeat1] = STATE(2340), + [sym_file_descriptor] = ACTIONS(1133), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_PIPE_AMP] = ACTIONS(1133), + [anon_sym_AMP_AMP] = ACTIONS(1133), + [anon_sym_PIPE_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1133), + [anon_sym_AMP_GT] = ACTIONS(1135), + [anon_sym_AMP_GT_GT] = ACTIONS(1133), + [anon_sym_LT_AMP] = ACTIONS(1133), + [anon_sym_GT_AMP] = ACTIONS(1133), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_LT_LT_DASH] = ACTIONS(1133), + [anon_sym_LT_LT_LT] = ACTIONS(1133), + [anon_sym_BQUOTE] = ACTIONS(1133), + [sym_comment] = ACTIONS(53), + }, + [2339] = { + [aux_sym_concatenation_repeat1] = STATE(2340), + [sym_file_descriptor] = ACTIONS(1137), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1137), + [anon_sym_LT_AMP] = ACTIONS(1137), + [anon_sym_GT_AMP] = ACTIONS(1137), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1137), + [anon_sym_LT_LT_LT] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1137), + [sym_comment] = ACTIONS(53), + }, + [2340] = { + [aux_sym_concatenation_repeat1] = STATE(2601), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_LT_LT_LT] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + }, + [2341] = { + [sym__heredoc_body_middle] = ACTIONS(4164), + [sym__heredoc_body_end] = ACTIONS(4164), + [anon_sym_DOLLAR] = ACTIONS(4166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), + [sym_comment] = ACTIONS(53), + }, + [2342] = { + [sym__heredoc_body_middle] = ACTIONS(4172), + [sym__heredoc_body_end] = ACTIONS(4172), + [anon_sym_DOLLAR] = ACTIONS(4174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), + [sym_comment] = ACTIONS(53), + }, + [2343] = { + [sym__heredoc_body_middle] = ACTIONS(4259), + [sym__heredoc_body_end] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), + [sym_comment] = ACTIONS(53), + }, + [2344] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6007), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2345] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6009), + [sym_comment] = ACTIONS(53), + }, + [2346] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6011), + [sym_comment] = ACTIONS(53), + }, + [2347] = { + [anon_sym_RBRACE] = ACTIONS(6011), + [sym_comment] = ACTIONS(53), + }, + [2348] = { + [sym_concatenation] = STATE(2606), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2606), + [anon_sym_RBRACE] = ACTIONS(6013), + [anon_sym_EQ] = ACTIONS(6015), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6015), + [anon_sym_COLON_QMARK] = ACTIONS(6015), + [anon_sym_COLON_DASH] = ACTIONS(6015), + [anon_sym_PERCENT] = ACTIONS(6015), + [anon_sym_DASH] = ACTIONS(6015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2349] = { + [sym__heredoc_body_middle] = ACTIONS(4275), + [sym__heredoc_body_end] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), + [sym_comment] = ACTIONS(53), + }, + [2350] = { + [sym_concatenation] = STATE(2608), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2608), + [anon_sym_RBRACE] = ACTIONS(6019), + [anon_sym_EQ] = ACTIONS(6021), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6023), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6021), + [anon_sym_COLON_QMARK] = ACTIONS(6021), + [anon_sym_COLON_DASH] = ACTIONS(6021), + [anon_sym_PERCENT] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2351] = { + [sym__heredoc_body_middle] = ACTIONS(4285), + [sym__heredoc_body_end] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), + [sym_comment] = ACTIONS(53), + }, + [2352] = { + [sym_concatenation] = STATE(2610), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2610), + [anon_sym_RBRACE] = ACTIONS(6025), + [anon_sym_EQ] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6027), + [anon_sym_COLON_QMARK] = ACTIONS(6027), + [anon_sym_COLON_DASH] = ACTIONS(6027), + [anon_sym_PERCENT] = ACTIONS(6027), + [anon_sym_DASH] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2353] = { + [sym__heredoc_body_middle] = ACTIONS(4295), + [sym__heredoc_body_end] = ACTIONS(4295), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), + [sym_comment] = ACTIONS(53), + }, + [2354] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6031), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2355] = { + [sym__heredoc_body_middle] = ACTIONS(4301), + [sym__heredoc_body_end] = ACTIONS(4301), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), + [sym_comment] = ACTIONS(53), + }, + [2356] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6033), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2357] = { + [sym__concat] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [sym__special_characters] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4164), + [anon_sym_BQUOTE] = ACTIONS(4164), + [anon_sym_LT_LPAREN] = ACTIONS(4164), + [anon_sym_GT_LPAREN] = ACTIONS(4164), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4164), + }, + [2358] = { + [sym__concat] = ACTIONS(4172), + [anon_sym_RPAREN] = ACTIONS(4172), + [sym__special_characters] = ACTIONS(4172), + [anon_sym_DQUOTE] = ACTIONS(4172), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4172), + [anon_sym_BQUOTE] = ACTIONS(4172), + [anon_sym_LT_LPAREN] = ACTIONS(4172), + [anon_sym_GT_LPAREN] = ACTIONS(4172), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4172), + }, + [2359] = { + [sym__concat] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__special_characters] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4259), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LT_LPAREN] = ACTIONS(4259), + [anon_sym_GT_LPAREN] = ACTIONS(4259), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4259), + }, + [2360] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6035), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2361] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6037), + [sym_comment] = ACTIONS(53), + }, + [2362] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6039), + [sym_comment] = ACTIONS(53), + }, + [2363] = { + [anon_sym_RBRACE] = ACTIONS(6039), + [sym_comment] = ACTIONS(53), + }, + [2364] = { + [sym_concatenation] = STATE(2617), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2617), + [anon_sym_RBRACE] = ACTIONS(6041), + [anon_sym_EQ] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6043), + [anon_sym_COLON_QMARK] = ACTIONS(6043), + [anon_sym_COLON_DASH] = ACTIONS(6043), + [anon_sym_PERCENT] = ACTIONS(6043), + [anon_sym_DASH] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2365] = { + [sym__concat] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__special_characters] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LT_LPAREN] = ACTIONS(4275), + [anon_sym_GT_LPAREN] = ACTIONS(4275), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4275), + }, + [2366] = { + [sym_concatenation] = STATE(2619), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2619), + [anon_sym_RBRACE] = ACTIONS(6047), + [anon_sym_EQ] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6049), + [anon_sym_COLON_QMARK] = ACTIONS(6049), + [anon_sym_COLON_DASH] = ACTIONS(6049), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_DASH] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2367] = { + [sym__concat] = ACTIONS(4285), + [anon_sym_RPAREN] = ACTIONS(4285), + [sym__special_characters] = ACTIONS(4285), + [anon_sym_DQUOTE] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4285), + [anon_sym_BQUOTE] = ACTIONS(4285), + [anon_sym_LT_LPAREN] = ACTIONS(4285), + [anon_sym_GT_LPAREN] = ACTIONS(4285), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4285), + }, + [2368] = { + [sym_concatenation] = STATE(2621), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2621), + [anon_sym_RBRACE] = ACTIONS(6053), + [anon_sym_EQ] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6055), + [anon_sym_COLON_QMARK] = ACTIONS(6055), + [anon_sym_COLON_DASH] = ACTIONS(6055), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_DASH] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2369] = { + [sym__concat] = ACTIONS(4295), + [anon_sym_RPAREN] = ACTIONS(4295), + [sym__special_characters] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4295), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4295), + [anon_sym_BQUOTE] = ACTIONS(4295), + [anon_sym_LT_LPAREN] = ACTIONS(4295), + [anon_sym_GT_LPAREN] = ACTIONS(4295), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4295), + }, + [2370] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2371] = { + [sym__concat] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [sym__special_characters] = ACTIONS(4301), + [anon_sym_DQUOTE] = ACTIONS(4301), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4301), + [anon_sym_BQUOTE] = ACTIONS(4301), + [anon_sym_LT_LPAREN] = ACTIONS(4301), + [anon_sym_GT_LPAREN] = ACTIONS(4301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4301), + }, + [2372] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6061), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2373] = { + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [sym_variable_name] = ACTIONS(5202), + [anon_sym_esac] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5204), + [anon_sym_PIPE_AMP] = ACTIONS(5204), + [anon_sym_AMP_AMP] = ACTIONS(5204), + [anon_sym_PIPE_PIPE] = ACTIONS(5204), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5204), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5204), + [anon_sym_LT_AMP] = ACTIONS(5204), + [anon_sym_GT_AMP] = ACTIONS(5204), + [sym__special_characters] = ACTIONS(5204), + [anon_sym_DQUOTE] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), + [anon_sym_BQUOTE] = ACTIONS(5204), + [anon_sym_LT_LPAREN] = ACTIONS(5204), + [anon_sym_GT_LPAREN] = ACTIONS(5204), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + }, + [2374] = { + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [sym_variable_name] = ACTIONS(5206), + [anon_sym_esac] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5208), + [anon_sym_PIPE_AMP] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5208), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5208), + [anon_sym_LT_AMP] = ACTIONS(5208), + [anon_sym_GT_AMP] = ACTIONS(5208), + [sym__special_characters] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), + [anon_sym_BQUOTE] = ACTIONS(5208), + [anon_sym_LT_LPAREN] = ACTIONS(5208), + [anon_sym_GT_LPAREN] = ACTIONS(5208), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + }, + [2375] = { + [sym_file_descriptor] = ACTIONS(5210), + [sym__concat] = ACTIONS(5210), + [sym_variable_name] = ACTIONS(5210), + [anon_sym_esac] = ACTIONS(5212), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5212), + [anon_sym_SEMI_SEMI] = ACTIONS(5212), + [anon_sym_PIPE_AMP] = ACTIONS(5212), + [anon_sym_AMP_AMP] = ACTIONS(5212), + [anon_sym_PIPE_PIPE] = ACTIONS(5212), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), + [anon_sym_AMP_GT] = ACTIONS(5212), + [anon_sym_AMP_GT_GT] = ACTIONS(5212), + [anon_sym_LT_AMP] = ACTIONS(5212), + [anon_sym_GT_AMP] = ACTIONS(5212), + [sym__special_characters] = ACTIONS(5212), + [anon_sym_DQUOTE] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), + [anon_sym_BQUOTE] = ACTIONS(5212), + [anon_sym_LT_LPAREN] = ACTIONS(5212), + [anon_sym_GT_LPAREN] = ACTIONS(5212), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5212), + [anon_sym_SEMI] = ACTIONS(5212), + [anon_sym_LF] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5212), + }, + [2376] = { + [sym_file_descriptor] = ACTIONS(5214), + [sym__concat] = ACTIONS(5214), + [sym_variable_name] = ACTIONS(5214), + [anon_sym_esac] = ACTIONS(5216), + [anon_sym_PIPE] = ACTIONS(5216), + [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(5216), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5216), + [anon_sym_AMP_GT] = ACTIONS(5216), + [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(5216), + [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(179), + [sym_word] = ACTIONS(5216), + [anon_sym_SEMI] = ACTIONS(5216), + [anon_sym_LF] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5216), + }, + [2377] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6063), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2378] = { + [sym_file_descriptor] = ACTIONS(5220), + [sym__concat] = ACTIONS(5220), + [sym_variable_name] = ACTIONS(5220), + [anon_sym_esac] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_SEMI_SEMI] = ACTIONS(5222), + [anon_sym_PIPE_AMP] = ACTIONS(5222), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5222), + [anon_sym_GT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5222), + [anon_sym_AMP_GT] = ACTIONS(5222), + [anon_sym_AMP_GT_GT] = ACTIONS(5222), + [anon_sym_LT_AMP] = ACTIONS(5222), + [anon_sym_GT_AMP] = ACTIONS(5222), + [sym__special_characters] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5222), + [sym_raw_string] = ACTIONS(5222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), + [anon_sym_BQUOTE] = ACTIONS(5222), + [anon_sym_LT_LPAREN] = ACTIONS(5222), + [anon_sym_GT_LPAREN] = ACTIONS(5222), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LF] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5222), + }, + [2379] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6065), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2380] = { + [sym_file_descriptor] = ACTIONS(5226), + [sym__concat] = ACTIONS(5226), + [sym_variable_name] = ACTIONS(5226), + [anon_sym_esac] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5228), + [anon_sym_SEMI_SEMI] = ACTIONS(5228), + [anon_sym_PIPE_AMP] = ACTIONS(5228), + [anon_sym_AMP_AMP] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_AMP_GT] = ACTIONS(5228), + [anon_sym_AMP_GT_GT] = ACTIONS(5228), + [anon_sym_LT_AMP] = ACTIONS(5228), + [anon_sym_GT_AMP] = ACTIONS(5228), + [sym__special_characters] = ACTIONS(5228), + [anon_sym_DQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), + [anon_sym_BQUOTE] = ACTIONS(5228), + [anon_sym_LT_LPAREN] = ACTIONS(5228), + [anon_sym_GT_LPAREN] = ACTIONS(5228), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(5228), + [anon_sym_LF] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), + }, + [2381] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6067), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2382] = { + [sym_file_descriptor] = ACTIONS(5232), + [sym__concat] = ACTIONS(5232), + [sym_variable_name] = ACTIONS(5232), + [anon_sym_esac] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_SEMI_SEMI] = ACTIONS(5234), + [anon_sym_PIPE_AMP] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_GT] = ACTIONS(5234), + [anon_sym_AMP_GT] = ACTIONS(5234), + [anon_sym_AMP_GT_GT] = ACTIONS(5234), + [anon_sym_LT_AMP] = ACTIONS(5234), + [anon_sym_GT_AMP] = ACTIONS(5234), + [sym__special_characters] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), + [anon_sym_BQUOTE] = ACTIONS(5234), + [anon_sym_LT_LPAREN] = ACTIONS(5234), + [anon_sym_GT_LPAREN] = ACTIONS(5234), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5234), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LF] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5234), + }, + [2383] = { + [sym_file_descriptor] = ACTIONS(5236), + [sym__concat] = ACTIONS(5236), + [sym_variable_name] = ACTIONS(5236), + [anon_sym_esac] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_SEMI_SEMI] = ACTIONS(5238), + [anon_sym_PIPE_AMP] = ACTIONS(5238), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_AMP_GT] = ACTIONS(5238), + [anon_sym_AMP_GT_GT] = ACTIONS(5238), + [anon_sym_LT_AMP] = ACTIONS(5238), + [anon_sym_GT_AMP] = ACTIONS(5238), + [sym__special_characters] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), + [anon_sym_BQUOTE] = ACTIONS(5238), + [anon_sym_LT_LPAREN] = ACTIONS(5238), + [anon_sym_GT_LPAREN] = ACTIONS(5238), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LF] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), + }, + [2384] = { + [anon_sym_esac] = ACTIONS(3860), + [anon_sym_PIPE] = ACTIONS(3860), + [anon_sym_RPAREN] = ACTIONS(3860), + [anon_sym_SEMI_SEMI] = ACTIONS(3860), + [anon_sym_PIPE_AMP] = ACTIONS(3860), + [anon_sym_AMP_AMP] = ACTIONS(3860), + [anon_sym_PIPE_PIPE] = ACTIONS(3860), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3860), + [anon_sym_LF] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3860), + }, + [2385] = { + [sym__concat] = ACTIONS(2920), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_EQ_TILDE] = ACTIONS(2920), + [anon_sym_EQ_EQ] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_GT] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2920), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2920), + }, + [2386] = { + [sym__concat] = ACTIONS(2934), + [anon_sym_RPAREN_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_LT] = ACTIONS(2934), + [anon_sym_GT] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2934), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2934), + }, + [2387] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6069), + [sym_comment] = ACTIONS(53), + }, + [2388] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6071), + [sym_comment] = ACTIONS(53), + }, + [2389] = { + [anon_sym_RBRACE] = ACTIONS(6071), + [sym_comment] = ACTIONS(53), + }, + [2390] = { + [sym_concatenation] = STATE(2630), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2630), + [anon_sym_RBRACE] = ACTIONS(6073), + [anon_sym_EQ] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6075), + [anon_sym_COLON_QMARK] = ACTIONS(6075), + [anon_sym_COLON_DASH] = ACTIONS(6075), + [anon_sym_PERCENT] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2391] = { + [sym__concat] = ACTIONS(3016), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [anon_sym_EQ_TILDE] = ACTIONS(3016), + [anon_sym_EQ_EQ] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym_GT] = ACTIONS(3016), + [anon_sym_BANG_EQ] = ACTIONS(3016), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3016), + }, + [2392] = { + [sym_concatenation] = STATE(2633), + [sym_string] = STATE(2632), + [sym_simple_expansion] = STATE(2632), + [sym_string_expansion] = STATE(2632), + [sym_expansion] = STATE(2632), + [sym_command_substitution] = STATE(2632), + [sym_process_substitution] = STATE(2632), + [anon_sym_RBRACE] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6079), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(6081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6081), + }, + [2393] = { + [sym__concat] = ACTIONS(3059), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_EQ_TILDE] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3059), + [anon_sym_GT] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3059), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3059), + }, + [2394] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6083), + }, + [2395] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6085), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2396] = { + [sym__concat] = ACTIONS(3067), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3067), + }, + [2397] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6087), + }, + [2398] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6089), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2399] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6091), + }, + [2400] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6071), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2401] = { + [sym_concatenation] = STATE(2640), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2640), + [anon_sym_RBRACE] = ACTIONS(6093), + [anon_sym_EQ] = ACTIONS(6095), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6095), + [anon_sym_COLON_QMARK] = ACTIONS(6095), + [anon_sym_COLON_DASH] = ACTIONS(6095), + [anon_sym_PERCENT] = ACTIONS(6095), + [anon_sym_DASH] = ACTIONS(6095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2402] = { + [sym__concat] = ACTIONS(3083), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [anon_sym_EQ_TILDE] = ACTIONS(3083), + [anon_sym_EQ_EQ] = ACTIONS(3083), + [anon_sym_EQ] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_GT] = ACTIONS(3083), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3083), + }, + [2403] = { + [sym_concatenation] = STATE(2642), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2642), + [anon_sym_RBRACE] = ACTIONS(6099), + [anon_sym_EQ] = ACTIONS(6101), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6101), + [anon_sym_COLON_QMARK] = ACTIONS(6101), + [anon_sym_COLON_DASH] = ACTIONS(6101), + [anon_sym_PERCENT] = ACTIONS(6101), + [anon_sym_DASH] = ACTIONS(6101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2404] = { + [anon_sym_esac] = ACTIONS(6105), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_RPAREN] = ACTIONS(6105), + [anon_sym_SEMI_SEMI] = ACTIONS(6105), + [anon_sym_PIPE_AMP] = ACTIONS(6105), + [anon_sym_AMP_AMP] = ACTIONS(6105), + [anon_sym_PIPE_PIPE] = ACTIONS(6105), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(6105), + [anon_sym_LF] = ACTIONS(6107), + [anon_sym_AMP] = ACTIONS(6105), + }, + [2405] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_esac] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5204), + [anon_sym_PIPE_AMP] = ACTIONS(5204), + [anon_sym_AMP_AMP] = ACTIONS(5204), + [anon_sym_PIPE_PIPE] = ACTIONS(5204), + [anon_sym_EQ_TILDE] = ACTIONS(5204), + [anon_sym_EQ_EQ] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_BANG_EQ] = ACTIONS(5204), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + }, + [2406] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_esac] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5208), + [anon_sym_PIPE_AMP] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [anon_sym_EQ_TILDE] = ACTIONS(5208), + [anon_sym_EQ_EQ] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_BANG_EQ] = ACTIONS(5208), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + }, + [2407] = { + [sym__concat] = ACTIONS(5210), + [anon_sym_esac] = ACTIONS(5212), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_SEMI_SEMI] = ACTIONS(5212), + [anon_sym_PIPE_AMP] = ACTIONS(5212), + [anon_sym_AMP_AMP] = ACTIONS(5212), + [anon_sym_PIPE_PIPE] = ACTIONS(5212), + [anon_sym_EQ_TILDE] = ACTIONS(5212), + [anon_sym_EQ_EQ] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_BANG_EQ] = ACTIONS(5212), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5212), + [anon_sym_SEMI] = ACTIONS(5212), + [anon_sym_LF] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5212), + }, + [2408] = { + [sym__concat] = ACTIONS(5214), + [anon_sym_esac] = ACTIONS(5216), + [anon_sym_PIPE] = 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(5216), + [anon_sym_EQ_EQ] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_LT] = ACTIONS(5216), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_BANG_EQ] = ACTIONS(5216), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5216), + [anon_sym_SEMI] = ACTIONS(5216), + [anon_sym_LF] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5216), + }, + [2409] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6109), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2410] = { + [sym__concat] = ACTIONS(5220), + [anon_sym_esac] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_SEMI_SEMI] = ACTIONS(5222), + [anon_sym_PIPE_AMP] = ACTIONS(5222), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [anon_sym_EQ_TILDE] = ACTIONS(5222), + [anon_sym_EQ_EQ] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5222), + [anon_sym_GT] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5222), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LF] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5222), + }, + [2411] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2412] = { + [sym__concat] = ACTIONS(5226), + [anon_sym_esac] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_SEMI_SEMI] = ACTIONS(5228), + [anon_sym_PIPE_AMP] = ACTIONS(5228), + [anon_sym_AMP_AMP] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5228), + [anon_sym_EQ_TILDE] = ACTIONS(5228), + [anon_sym_EQ_EQ] = ACTIONS(5228), + [anon_sym_EQ] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_BANG_EQ] = ACTIONS(5228), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(5228), + [anon_sym_LF] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), + }, + [2413] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6113), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2414] = { + [sym__concat] = ACTIONS(5232), + [anon_sym_esac] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_SEMI_SEMI] = ACTIONS(5234), + [anon_sym_PIPE_AMP] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_EQ_TILDE] = ACTIONS(5234), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5234), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LF] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5234), + }, + [2415] = { + [sym__concat] = ACTIONS(5236), + [anon_sym_esac] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_SEMI_SEMI] = ACTIONS(5238), + [anon_sym_PIPE_AMP] = ACTIONS(5238), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [anon_sym_EQ_TILDE] = ACTIONS(5238), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5238), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LF] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), + }, + [2416] = { + [sym_do_group] = STATE(2646), + [sym_compound_statement] = STATE(2646), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(3656), + [sym_comment] = ACTIONS(53), + }, + [2417] = { + [sym_concatenation] = STATE(214), + [sym_string] = STATE(2648), + [sym_array] = STATE(214), + [sym_simple_expansion] = STATE(2648), + [sym_string_expansion] = STATE(2648), + [sym_expansion] = STATE(2648), + [sym_command_substitution] = STATE(2648), + [sym_process_substitution] = STATE(2648), + [sym__empty_value] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(389), + [sym__special_characters] = ACTIONS(6115), + [anon_sym_DQUOTE] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [sym_raw_string] = ACTIONS(6117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), + [anon_sym_BQUOTE] = ACTIONS(403), + [anon_sym_LT_LPAREN] = ACTIONS(405), + [anon_sym_GT_LPAREN] = ACTIONS(405), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6117), + }, + [2418] = { + [sym_do_group] = STATE(2649), + [anon_sym_do] = ACTIONS(437), + [sym_comment] = ACTIONS(53), + }, + [2419] = { + [sym_compound_statement] = STATE(2651), + [anon_sym_LPAREN] = ACTIONS(6119), + [anon_sym_LBRACE] = ACTIONS(483), + [sym_comment] = ACTIONS(53), + }, + [2420] = { + [anon_sym_AMP_AMP] = ACTIONS(573), + [anon_sym_PIPE_PIPE] = ACTIONS(573), + [anon_sym_RBRACK] = ACTIONS(6121), + [anon_sym_EQ_TILDE] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_BANG_EQ] = ACTIONS(573), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(573), + }, + [2421] = { + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6121), + [anon_sym_EQ_TILDE] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_EQ] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(605), + }, + [2422] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(6123), + [anon_sym_PLUS_EQ] = ACTIONS(6123), + [sym_comment] = ACTIONS(53), + }, + [2423] = { + [aux_sym_concatenation_repeat1] = STATE(2655), + [sym__concat] = ACTIONS(6125), + [sym_variable_name] = ACTIONS(615), + [anon_sym_esac] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_SEMI_SEMI] = ACTIONS(617), + [anon_sym_PIPE_AMP] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [sym__special_characters] = ACTIONS(617), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(617), + [sym_raw_string] = ACTIONS(617), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_LT_LPAREN] = ACTIONS(617), + [anon_sym_GT_LPAREN] = ACTIONS(617), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(617), + [sym_word] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(617), + }, + [2424] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(2658), + [anon_sym_DQUOTE] = ACTIONS(6127), + [anon_sym_DOLLAR] = ACTIONS(6129), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [2425] = { + [sym_string] = STATE(2660), + [anon_sym_DQUOTE] = ACTIONS(6131), + [anon_sym_DOLLAR] = ACTIONS(6133), + [sym_raw_string] = ACTIONS(6135), + [anon_sym_POUND] = ACTIONS(6133), + [anon_sym_DASH] = ACTIONS(6133), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6137), + [anon_sym_STAR] = ACTIONS(6133), + [anon_sym_AT] = ACTIONS(6133), + [anon_sym_QMARK] = ACTIONS(6133), + [anon_sym_0] = ACTIONS(6139), + [anon_sym__] = ACTIONS(6139), + }, + [2426] = { + [aux_sym_concatenation_repeat1] = STATE(2655), + [sym__concat] = ACTIONS(6125), + [sym_variable_name] = ACTIONS(633), + [anon_sym_esac] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_SEMI_SEMI] = ACTIONS(635), + [anon_sym_PIPE_AMP] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [sym__special_characters] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(635), + [sym_raw_string] = ACTIONS(635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), + [anon_sym_BQUOTE] = ACTIONS(635), + [anon_sym_LT_LPAREN] = ACTIONS(635), + [anon_sym_GT_LPAREN] = ACTIONS(635), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), + [sym_word] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(635), [anon_sym_LF] = ACTIONS(633), - [anon_sym_AMP] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(635), }, - [2217] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2434), - [anon_sym_DQUOTE] = ACTIONS(5643), - [anon_sym_DOLLAR] = ACTIONS(5645), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [2427] = { + [sym_subscript] = STATE(2666), + [sym_variable_name] = ACTIONS(6141), + [anon_sym_DOLLAR] = ACTIONS(6143), + [anon_sym_POUND] = ACTIONS(6145), + [anon_sym_DASH] = ACTIONS(6143), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6143), + [anon_sym_AT] = ACTIONS(6143), + [anon_sym_QMARK] = ACTIONS(6143), + [anon_sym_0] = ACTIONS(6149), + [anon_sym__] = ACTIONS(6149), }, - [2218] = { - [sym_string] = STATE(2436), - [anon_sym_DQUOTE] = ACTIONS(5647), - [anon_sym_DOLLAR] = ACTIONS(5649), - [sym_raw_string] = ACTIONS(5651), - [anon_sym_POUND] = ACTIONS(5649), - [anon_sym_DASH] = ACTIONS(5649), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5653), - [anon_sym_STAR] = ACTIONS(5649), - [anon_sym_AT] = ACTIONS(5649), - [anon_sym_QMARK] = ACTIONS(5649), - [anon_sym_0] = ACTIONS(5655), - [anon_sym__] = ACTIONS(5655), + [2428] = { + [sym_for_statement] = STATE(2667), + [sym_c_style_for_statement] = STATE(2667), + [sym_while_statement] = STATE(2667), + [sym_if_statement] = STATE(2667), + [sym_case_statement] = STATE(2667), + [sym_function_definition] = STATE(2667), + [sym_subshell] = STATE(2667), + [sym_pipeline] = STATE(2667), + [sym_list] = STATE(2667), + [sym_negated_command] = STATE(2667), + [sym_test_command] = STATE(2667), + [sym_declaration_command] = STATE(2667), + [sym_unset_command] = STATE(2667), + [sym_command] = STATE(2667), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(2668), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), }, - [2219] = { - [aux_sym_concatenation_repeat1] = STATE(2431), - [sym__concat] = ACTIONS(5641), + [2429] = { + [sym_for_statement] = STATE(2669), + [sym_c_style_for_statement] = STATE(2669), + [sym_while_statement] = STATE(2669), + [sym_if_statement] = STATE(2669), + [sym_case_statement] = STATE(2669), + [sym_function_definition] = STATE(2669), + [sym_subshell] = STATE(2669), + [sym_pipeline] = STATE(2669), + [sym_list] = STATE(2669), + [sym_negated_command] = STATE(2669), + [sym_test_command] = STATE(2669), + [sym_declaration_command] = STATE(2669), + [sym_unset_command] = STATE(2669), + [sym_command] = STATE(2669), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(2670), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [2430] = { + [sym_for_statement] = STATE(2671), + [sym_c_style_for_statement] = STATE(2671), + [sym_while_statement] = STATE(2671), + [sym_if_statement] = STATE(2671), + [sym_case_statement] = STATE(2671), + [sym_function_definition] = STATE(2671), + [sym_subshell] = STATE(2671), + [sym_pipeline] = STATE(2671), + [sym_list] = STATE(2671), + [sym_negated_command] = STATE(2671), + [sym_test_command] = STATE(2671), + [sym_declaration_command] = STATE(2671), + [sym_unset_command] = STATE(2671), + [sym_command] = STATE(2671), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(2672), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [2431] = { + [sym_variable_name] = ACTIONS(647), [anon_sym_esac] = ACTIONS(649), [anon_sym_PIPE] = ACTIONS(649), [anon_sym_SEMI_SEMI] = ACTIONS(649), @@ -57097,8676 +62256,915 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(649), [anon_sym_LT_LPAREN] = ACTIONS(649), [anon_sym_GT_LPAREN] = ACTIONS(649), - [sym_comment] = ACTIONS(177), + [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), [sym_word] = ACTIONS(649), [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_LF] = ACTIONS(651), + [anon_sym_LF] = ACTIONS(647), [anon_sym_AMP] = ACTIONS(649), }, - [2220] = { - [sym_subscript] = STATE(2442), - [sym_variable_name] = ACTIONS(5657), - [anon_sym_DOLLAR] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(5661), - [anon_sym_DASH] = ACTIONS(5659), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5663), - [anon_sym_STAR] = ACTIONS(5659), - [anon_sym_AT] = ACTIONS(5659), - [anon_sym_QMARK] = ACTIONS(5659), - [anon_sym_0] = ACTIONS(5665), - [anon_sym__] = ACTIONS(5665), - }, - [2221] = { - [sym_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_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(164), - [sym_variable_assignment] = STATE(2444), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [2222] = { - [sym_for_statement] = STATE(2445), - [sym_while_statement] = STATE(2445), - [sym_if_statement] = STATE(2445), - [sym_case_statement] = STATE(2445), - [sym_function_definition] = STATE(2445), - [sym_subshell] = STATE(2445), - [sym_pipeline] = STATE(2445), - [sym_list] = STATE(2445), - [sym_negated_command] = STATE(2445), - [sym_test_command] = STATE(2445), - [sym_declaration_command] = STATE(2445), - [sym_unset_command] = STATE(2445), - [sym_command] = STATE(2445), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2446), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [2223] = { - [sym_for_statement] = STATE(2447), - [sym_while_statement] = STATE(2447), - [sym_if_statement] = STATE(2447), - [sym_case_statement] = STATE(2447), - [sym_function_definition] = STATE(2447), - [sym_subshell] = STATE(2447), - [sym_pipeline] = STATE(2447), - [sym_list] = STATE(2447), - [sym_negated_command] = STATE(2447), - [sym_test_command] = STATE(2447), - [sym_declaration_command] = STATE(2447), - [sym_unset_command] = STATE(2447), - [sym_command] = STATE(2447), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2448), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [2224] = { - [anon_sym_esac] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [anon_sym_PIPE_AMP] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [sym__special_characters] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [anon_sym_DOLLAR] = ACTIONS(663), - [sym_raw_string] = ACTIONS(663), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(663), - [anon_sym_BQUOTE] = ACTIONS(663), - [anon_sym_LT_LPAREN] = ACTIONS(663), - [anon_sym_GT_LPAREN] = ACTIONS(663), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(663), - [sym_word] = ACTIONS(663), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LF] = ACTIONS(665), - [anon_sym_AMP] = ACTIONS(663), - }, - [2225] = { - [sym_concatenation] = STATE(2449), - [sym_string] = STATE(2219), - [sym_simple_expansion] = STATE(2219), - [sym_string_expansion] = STATE(2219), - [sym_expansion] = STATE(2219), - [sym_command_substitution] = STATE(2219), - [sym_process_substitution] = STATE(2219), - [aux_sym_unset_command_repeat1] = STATE(2449), - [anon_sym_esac] = ACTIONS(667), - [anon_sym_PIPE] = ACTIONS(667), - [anon_sym_SEMI_SEMI] = ACTIONS(667), - [anon_sym_PIPE_AMP] = ACTIONS(667), - [anon_sym_AMP_AMP] = ACTIONS(667), - [anon_sym_PIPE_PIPE] = ACTIONS(667), - [sym__special_characters] = ACTIONS(5193), - [anon_sym_DQUOTE] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [sym_raw_string] = ACTIONS(5199), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5201), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5203), - [anon_sym_BQUOTE] = ACTIONS(5205), - [anon_sym_LT_LPAREN] = ACTIONS(5207), - [anon_sym_GT_LPAREN] = ACTIONS(5207), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5209), - [sym_word] = ACTIONS(5199), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_LF] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(667), - }, - [2226] = { - [aux_sym_concatenation_repeat1] = STATE(2450), - [sym__simple_heredoc_body] = ACTIONS(705), - [sym__heredoc_body_beginning] = ACTIONS(705), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(707), - [anon_sym_PIPE] = 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_EQ_TILDE] = ACTIONS(707), - [anon_sym_EQ_EQ] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(707), - [anon_sym_LT_AMP] = ACTIONS(707), - [anon_sym_GT_AMP] = ACTIONS(707), - [anon_sym_LT_LT] = ACTIONS(707), - [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(707), - [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(177), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [2227] = { - [anon_sym_RPAREN] = ACTIONS(5667), - [sym_comment] = ACTIONS(53), - }, - [2228] = { - [sym_for_statement] = STATE(537), - [sym_while_statement] = STATE(537), - [sym_if_statement] = STATE(537), - [sym_case_statement] = STATE(537), - [sym_function_definition] = STATE(537), - [sym_subshell] = STATE(537), - [sym_pipeline] = STATE(537), - [sym_list] = STATE(537), - [sym_negated_command] = STATE(537), - [sym_test_command] = STATE(537), - [sym_declaration_command] = STATE(537), - [sym_unset_command] = STATE(537), - [sym_command] = STATE(537), - [sym_command_name] = STATE(1903), - [sym_variable_assignment] = STATE(538), - [sym_subscript] = STATE(1905), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(1900), - [sym_simple_expansion] = STATE(1900), - [sym_string_expansion] = STATE(1900), - [sym_expansion] = STATE(1900), - [sym_command_substitution] = STATE(1900), - [sym_process_substitution] = STATE(1900), - [aux_sym_command_repeat1] = STATE(1907), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), - [anon_sym_declare] = ACTIONS(4419), - [anon_sym_typeset] = ACTIONS(4419), - [anon_sym_export] = ACTIONS(4419), - [anon_sym_readonly] = ACTIONS(4419), - [anon_sym_local] = ACTIONS(4419), - [anon_sym_unset] = ACTIONS(4421), - [anon_sym_unsetenv] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4427), - }, - [2229] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_esac] = ACTIONS(5669), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(5671), - [anon_sym_DQUOTE] = ACTIONS(5673), - [anon_sym_DOLLAR] = ACTIONS(5671), - [sym_raw_string] = ACTIONS(5673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5673), - [anon_sym_BQUOTE] = ACTIONS(5673), - [anon_sym_LT_LPAREN] = ACTIONS(5673), - [anon_sym_GT_LPAREN] = ACTIONS(5673), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5671), - }, - [2230] = { - [sym_for_statement] = STATE(2452), - [sym_while_statement] = STATE(2452), - [sym_if_statement] = STATE(2452), - [sym_case_statement] = STATE(2452), - [sym_function_definition] = STATE(2452), - [sym_subshell] = STATE(2452), - [sym_pipeline] = STATE(2452), - [sym_list] = STATE(2452), - [sym_negated_command] = STATE(2452), - [sym_test_command] = STATE(2452), - [sym_declaration_command] = STATE(2452), - [sym_unset_command] = STATE(2452), - [sym_command] = STATE(2452), - [sym_command_name] = STATE(1903), - [sym_variable_assignment] = STATE(2453), - [sym_subscript] = STATE(1905), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(1900), - [sym_simple_expansion] = STATE(1900), - [sym_string_expansion] = STATE(1900), - [sym_expansion] = STATE(1900), - [sym_command_substitution] = STATE(1900), - [sym_process_substitution] = STATE(1900), - [aux_sym_command_repeat1] = STATE(1907), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), - [anon_sym_declare] = ACTIONS(4419), - [anon_sym_typeset] = ACTIONS(4419), - [anon_sym_export] = ACTIONS(4419), - [anon_sym_readonly] = ACTIONS(4419), - [anon_sym_local] = ACTIONS(4419), - [anon_sym_unset] = ACTIONS(4421), - [anon_sym_unsetenv] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4427), - }, - [2231] = { - [anon_sym_LT] = ACTIONS(5675), - [anon_sym_GT] = ACTIONS(5675), - [anon_sym_GT_GT] = ACTIONS(5677), - [anon_sym_AMP_GT] = ACTIONS(5675), - [anon_sym_AMP_GT_GT] = ACTIONS(5677), - [anon_sym_LT_AMP] = ACTIONS(5677), - [anon_sym_GT_AMP] = ACTIONS(5677), - [sym_comment] = ACTIONS(53), - }, - [2232] = { - [sym_concatenation] = STATE(548), - [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(5679), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5681), - [sym_regex] = ACTIONS(991), - }, - [2233] = { - [sym_concatenation] = STATE(551), - [sym_string] = STATE(2458), - [sym_simple_expansion] = STATE(2458), - [sym_string_expansion] = STATE(2458), - [sym_expansion] = STATE(2458), - [sym_command_substitution] = STATE(2458), - [sym_process_substitution] = STATE(2458), - [sym__special_characters] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5685), - }, - [2234] = { - [sym_concatenation] = STATE(555), - [sym_string] = STATE(2460), - [sym_simple_expansion] = STATE(2460), - [sym_string_expansion] = STATE(2460), - [sym_expansion] = STATE(2460), - [sym_command_substitution] = STATE(2460), - [sym_process_substitution] = STATE(2460), - [sym__special_characters] = ACTIONS(5687), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5689), - }, - [2235] = { - [aux_sym_concatenation_repeat1] = STATE(2226), - [sym__simple_heredoc_body] = ACTIONS(1003), - [sym__heredoc_body_beginning] = ACTIONS(1003), - [sym_file_descriptor] = ACTIONS(1003), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_SEMI_SEMI] = ACTIONS(1005), - [anon_sym_PIPE_AMP] = ACTIONS(1005), - [anon_sym_AMP_AMP] = ACTIONS(1005), - [anon_sym_PIPE_PIPE] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_GT_GT] = ACTIONS(1005), - [anon_sym_AMP_GT] = ACTIONS(1005), - [anon_sym_AMP_GT_GT] = ACTIONS(1005), - [anon_sym_LT_AMP] = ACTIONS(1005), - [anon_sym_GT_AMP] = ACTIONS(1005), - [anon_sym_LT_LT] = ACTIONS(1005), - [anon_sym_LT_LT_DASH] = ACTIONS(1005), - [anon_sym_LT_LT_LT] = ACTIONS(1005), - [sym__special_characters] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [sym_raw_string] = ACTIONS(1005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1005), - [anon_sym_BQUOTE] = ACTIONS(1005), - [anon_sym_LT_LPAREN] = ACTIONS(1005), - [anon_sym_GT_LPAREN] = ACTIONS(1005), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1005), - }, - [2236] = { - [aux_sym_concatenation_repeat1] = STATE(2226), - [sym__simple_heredoc_body] = ACTIONS(1007), - [sym__heredoc_body_beginning] = ACTIONS(1007), - [sym_file_descriptor] = ACTIONS(1007), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(1009), - [anon_sym_PIPE] = 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_EQ_TILDE] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1009), - [anon_sym_GT_GT] = ACTIONS(1009), - [anon_sym_AMP_GT] = ACTIONS(1009), - [anon_sym_AMP_GT_GT] = ACTIONS(1009), - [anon_sym_LT_AMP] = ACTIONS(1009), - [anon_sym_GT_AMP] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1009), - [anon_sym_LT_LT_DASH] = ACTIONS(1009), - [anon_sym_LT_LT_LT] = ACTIONS(1009), - [sym__special_characters] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [anon_sym_DOLLAR] = ACTIONS(1009), - [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(177), - [sym_word] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1009), - }, - [2237] = { - [sym_file_redirect] = STATE(2461), - [sym_heredoc_redirect] = STATE(2461), - [sym_heredoc_body] = STATE(556), - [sym_herestring_redirect] = STATE(2461), - [aux_sym_while_statement_repeat1] = STATE(2461), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5219), - [anon_sym_esac] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_SEMI_SEMI] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(5223), - [anon_sym_GT] = ACTIONS(5223), - [anon_sym_GT_GT] = ACTIONS(5223), - [anon_sym_AMP_GT] = ACTIONS(5223), - [anon_sym_AMP_GT_GT] = ACTIONS(5223), - [anon_sym_LT_AMP] = ACTIONS(5223), - [anon_sym_GT_AMP] = ACTIONS(5223), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5225), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_LF] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1011), - }, - [2238] = { - [sym_file_redirect] = STATE(2462), - [sym_heredoc_redirect] = STATE(2462), - [sym_heredoc_body] = STATE(556), - [sym_herestring_redirect] = STATE(2462), - [sym_concatenation] = STATE(2463), - [sym_string] = STATE(2236), - [sym_simple_expansion] = STATE(2236), - [sym_string_expansion] = STATE(2236), - [sym_expansion] = STATE(2236), - [sym_command_substitution] = STATE(2236), - [sym_process_substitution] = STATE(2236), - [aux_sym_while_statement_repeat1] = STATE(2462), - [aux_sym_command_repeat2] = STATE(2463), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5219), - [anon_sym_esac] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_SEMI_SEMI] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [anon_sym_EQ_TILDE] = ACTIONS(5221), - [anon_sym_EQ_EQ] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5223), - [anon_sym_GT] = ACTIONS(5223), - [anon_sym_GT_GT] = ACTIONS(5223), - [anon_sym_AMP_GT] = ACTIONS(5223), - [anon_sym_AMP_GT_GT] = ACTIONS(5223), - [anon_sym_LT_AMP] = ACTIONS(5223), - [anon_sym_GT_AMP] = ACTIONS(5223), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5225), - [sym__special_characters] = ACTIONS(5227), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5229), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5229), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_LF] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1011), - }, - [2239] = { - [anon_sym_esac] = ACTIONS(5669), - [sym__special_characters] = ACTIONS(5673), - [anon_sym_DQUOTE] = ACTIONS(5673), - [anon_sym_DOLLAR] = ACTIONS(5671), - [sym_raw_string] = ACTIONS(5673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5673), - [anon_sym_BQUOTE] = ACTIONS(5673), - [anon_sym_LT_LPAREN] = ACTIONS(5673), - [anon_sym_GT_LPAREN] = ACTIONS(5673), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5671), - }, - [2240] = { - [anon_sym_esac] = ACTIONS(5669), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(5691), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2241] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(5669), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(5691), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2242] = { - [sym__terminated_statement] = STATE(2242), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2242), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1015), - [sym_variable_name] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(3516), - [anon_sym_SEMI_SEMI] = ACTIONS(1021), - [anon_sym_function] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), - [anon_sym_declare] = ACTIONS(1050), - [anon_sym_typeset] = ACTIONS(1050), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_readonly] = ACTIONS(1050), - [anon_sym_local] = ACTIONS(1050), - [anon_sym_unset] = ACTIONS(1053), - [anon_sym_unsetenv] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1056), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1056), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1083), - [anon_sym_GT_LPAREN] = ACTIONS(1083), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1086), - }, - [2243] = { - [sym_file_redirect] = STATE(2462), - [sym_heredoc_redirect] = STATE(2462), - [sym_heredoc_body] = STATE(556), - [sym_herestring_redirect] = STATE(2462), - [sym_concatenation] = STATE(2465), - [sym_string] = STATE(2236), - [sym_simple_expansion] = STATE(2236), - [sym_string_expansion] = STATE(2236), - [sym_expansion] = STATE(2236), - [sym_command_substitution] = STATE(2236), - [sym_process_substitution] = STATE(2236), - [aux_sym_while_statement_repeat1] = STATE(2462), - [aux_sym_command_repeat2] = STATE(2465), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5219), - [anon_sym_esac] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_SEMI_SEMI] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [anon_sym_EQ_TILDE] = ACTIONS(5221), - [anon_sym_EQ_EQ] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5223), - [anon_sym_GT] = ACTIONS(5223), - [anon_sym_GT_GT] = ACTIONS(5223), - [anon_sym_AMP_GT] = ACTIONS(5223), - [anon_sym_AMP_GT_GT] = ACTIONS(5223), - [anon_sym_LT_AMP] = ACTIONS(5223), - [anon_sym_GT_AMP] = ACTIONS(5223), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5225), - [sym__special_characters] = ACTIONS(5227), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5229), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5229), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_LF] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1011), - }, - [2244] = { - [sym__terminated_statement] = STATE(2242), - [sym_for_statement] = STATE(2467), - [sym_while_statement] = STATE(2467), - [sym_if_statement] = STATE(2467), - [sym_case_statement] = STATE(2467), - [sym_function_definition] = STATE(2467), - [sym_subshell] = STATE(2467), - [sym_pipeline] = STATE(2467), - [sym_list] = STATE(2467), - [sym_negated_command] = STATE(2467), - [sym_test_command] = STATE(2467), - [sym_declaration_command] = STATE(2467), - [sym_unset_command] = STATE(2467), - [sym_command] = STATE(2467), - [sym_command_name] = STATE(1903), - [sym_variable_assignment] = STATE(2468), - [sym_subscript] = STATE(1905), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(1900), - [sym_simple_expansion] = STATE(1900), - [sym_string_expansion] = STATE(1900), - [sym_expansion] = STATE(1900), - [sym_command_substitution] = STATE(1900), - [sym_process_substitution] = STATE(1900), - [aux_sym_program_repeat1] = STATE(2242), - [aux_sym_command_repeat1] = STATE(1907), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5669), - [anon_sym_SEMI_SEMI] = ACTIONS(5693), - [anon_sym_function] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), - [anon_sym_declare] = ACTIONS(4419), - [anon_sym_typeset] = ACTIONS(4419), - [anon_sym_export] = ACTIONS(4419), - [anon_sym_readonly] = ACTIONS(4419), - [anon_sym_local] = ACTIONS(4419), - [anon_sym_unset] = ACTIONS(4421), - [anon_sym_unsetenv] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4427), - }, - [2245] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_esac] = ACTIONS(5695), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(5697), - [anon_sym_DQUOTE] = ACTIONS(5699), - [anon_sym_DOLLAR] = ACTIONS(5697), - [sym_raw_string] = ACTIONS(5699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5699), - [anon_sym_BQUOTE] = ACTIONS(5699), - [anon_sym_LT_LPAREN] = ACTIONS(5699), - [anon_sym_GT_LPAREN] = ACTIONS(5699), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5697), - }, - [2246] = { - [anon_sym_esac] = ACTIONS(5695), - [sym__special_characters] = ACTIONS(5699), - [anon_sym_DQUOTE] = ACTIONS(5699), - [anon_sym_DOLLAR] = ACTIONS(5697), - [sym_raw_string] = ACTIONS(5699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5699), - [anon_sym_BQUOTE] = ACTIONS(5699), - [anon_sym_LT_LPAREN] = ACTIONS(5699), - [anon_sym_GT_LPAREN] = ACTIONS(5699), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5697), - }, - [2247] = { - [anon_sym_esac] = ACTIONS(5695), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(5701), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2248] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(5695), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(5701), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2249] = { - [sym__terminated_statement] = STATE(2242), - [sym_for_statement] = STATE(2471), - [sym_while_statement] = STATE(2471), - [sym_if_statement] = STATE(2471), - [sym_case_statement] = STATE(2471), - [sym_function_definition] = STATE(2471), - [sym_subshell] = STATE(2471), - [sym_pipeline] = STATE(2471), - [sym_list] = STATE(2471), - [sym_negated_command] = STATE(2471), - [sym_test_command] = STATE(2471), - [sym_declaration_command] = STATE(2471), - [sym_unset_command] = STATE(2471), - [sym_command] = STATE(2471), - [sym_command_name] = STATE(1903), - [sym_variable_assignment] = STATE(2472), - [sym_subscript] = STATE(1905), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(1900), - [sym_simple_expansion] = STATE(1900), - [sym_string_expansion] = STATE(1900), - [sym_expansion] = STATE(1900), - [sym_command_substitution] = STATE(1900), - [sym_process_substitution] = STATE(1900), - [aux_sym_program_repeat1] = STATE(2242), - [aux_sym_command_repeat1] = STATE(1907), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5695), - [anon_sym_SEMI_SEMI] = ACTIONS(5703), - [anon_sym_function] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), - [anon_sym_declare] = ACTIONS(4419), - [anon_sym_typeset] = ACTIONS(4419), - [anon_sym_export] = ACTIONS(4419), - [anon_sym_readonly] = ACTIONS(4419), - [anon_sym_local] = ACTIONS(4419), - [anon_sym_unset] = ACTIONS(4421), - [anon_sym_unsetenv] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4427), - }, - [2250] = { - [sym__terminated_statement] = STATE(2476), - [sym_for_statement] = STATE(2474), - [sym_while_statement] = STATE(2474), - [sym_if_statement] = STATE(2474), - [sym_case_statement] = STATE(2474), - [sym_function_definition] = STATE(2474), - [sym_subshell] = STATE(2474), - [sym_pipeline] = STATE(2474), - [sym_list] = STATE(2474), - [sym_negated_command] = STATE(2474), - [sym_test_command] = STATE(2474), - [sym_declaration_command] = STATE(2474), - [sym_unset_command] = STATE(2474), - [sym_command] = STATE(2474), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2475), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2476), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5705), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [2251] = { - [aux_sym_case_item_repeat1] = STATE(1909), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(5707), - [sym_comment] = ACTIONS(53), - }, - [2252] = { - [sym__terminated_statement] = STATE(2481), - [sym_for_statement] = STATE(2479), - [sym_while_statement] = STATE(2479), - [sym_if_statement] = STATE(2479), - [sym_case_statement] = STATE(2479), - [sym_function_definition] = STATE(2479), - [sym_subshell] = STATE(2479), - [sym_pipeline] = STATE(2479), - [sym_list] = STATE(2479), - [sym_negated_command] = STATE(2479), - [sym_test_command] = STATE(2479), - [sym_declaration_command] = STATE(2479), - [sym_unset_command] = STATE(2479), - [sym_command] = STATE(2479), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2480), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2481), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5709), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [2253] = { - [aux_sym_case_item_repeat1] = STATE(1909), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(5711), - [sym_comment] = ACTIONS(53), - }, - [2254] = { - [anon_sym_esac] = ACTIONS(5713), - [anon_sym_PIPE] = ACTIONS(5713), - [anon_sym_RPAREN] = ACTIONS(5713), - [anon_sym_SEMI_SEMI] = ACTIONS(5713), - [anon_sym_PIPE_AMP] = ACTIONS(5713), - [anon_sym_AMP_AMP] = ACTIONS(5713), - [anon_sym_PIPE_PIPE] = ACTIONS(5713), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5713), - [anon_sym_LF] = ACTIONS(5715), - [anon_sym_AMP] = ACTIONS(5713), - }, - [2255] = { - [anon_sym_esac] = ACTIONS(5717), - [anon_sym_PIPE] = ACTIONS(5717), - [anon_sym_RPAREN] = ACTIONS(5717), - [anon_sym_SEMI_SEMI] = ACTIONS(5717), - [anon_sym_PIPE_AMP] = ACTIONS(5717), - [anon_sym_AMP_AMP] = ACTIONS(5717), - [anon_sym_PIPE_PIPE] = ACTIONS(5717), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5717), - [anon_sym_LF] = ACTIONS(5719), - [anon_sym_AMP] = ACTIONS(5717), - }, - [2256] = { - [sym__concat] = ACTIONS(5419), - [anon_sym_in] = ACTIONS(5421), - [anon_sym_SEMI_SEMI] = ACTIONS(5421), - [sym__special_characters] = ACTIONS(5421), - [anon_sym_DQUOTE] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), - [anon_sym_BQUOTE] = ACTIONS(5421), - [anon_sym_LT_LPAREN] = ACTIONS(5421), - [anon_sym_GT_LPAREN] = ACTIONS(5421), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5421), - [anon_sym_SEMI] = ACTIONS(5421), - [anon_sym_LF] = ACTIONS(5419), - [anon_sym_AMP] = ACTIONS(5421), - }, - [2257] = { - [sym__concat] = ACTIONS(5423), - [anon_sym_in] = ACTIONS(5425), - [anon_sym_SEMI_SEMI] = ACTIONS(5425), - [sym__special_characters] = ACTIONS(5425), - [anon_sym_DQUOTE] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), - [anon_sym_BQUOTE] = ACTIONS(5425), - [anon_sym_LT_LPAREN] = ACTIONS(5425), - [anon_sym_GT_LPAREN] = ACTIONS(5425), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5425), - [anon_sym_SEMI] = ACTIONS(5425), - [anon_sym_LF] = ACTIONS(5423), - [anon_sym_AMP] = ACTIONS(5425), - }, - [2258] = { - [sym__concat] = ACTIONS(5427), - [anon_sym_in] = ACTIONS(5429), - [anon_sym_SEMI_SEMI] = ACTIONS(5429), - [sym__special_characters] = ACTIONS(5429), - [anon_sym_DQUOTE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), - [anon_sym_BQUOTE] = ACTIONS(5429), - [anon_sym_LT_LPAREN] = ACTIONS(5429), - [anon_sym_GT_LPAREN] = ACTIONS(5429), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5429), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5427), - [anon_sym_AMP] = ACTIONS(5429), - }, - [2259] = { - [aux_sym_concatenation_repeat1] = STATE(2259), - [sym__concat] = ACTIONS(2622), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [2260] = { - [aux_sym_concatenation_repeat1] = STATE(2260), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(5276), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_LT_LT_LT] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [2261] = { - [sym__concat] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_RBRACK] = ACTIONS(5419), - [anon_sym_EQ_TILDE] = ACTIONS(5419), - [anon_sym_EQ_EQ] = ACTIONS(5419), - [anon_sym_EQ] = ACTIONS(5421), - [anon_sym_LT] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5419), - [anon_sym_BANG_EQ] = ACTIONS(5419), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5419), - }, - [2262] = { - [sym__concat] = ACTIONS(5423), - [anon_sym_AMP_AMP] = ACTIONS(5423), - [anon_sym_PIPE_PIPE] = ACTIONS(5423), - [anon_sym_RBRACK] = ACTIONS(5423), - [anon_sym_EQ_TILDE] = ACTIONS(5423), - [anon_sym_EQ_EQ] = ACTIONS(5423), - [anon_sym_EQ] = ACTIONS(5425), - [anon_sym_LT] = ACTIONS(5423), - [anon_sym_GT] = ACTIONS(5423), - [anon_sym_BANG_EQ] = ACTIONS(5423), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5423), - }, - [2263] = { - [sym__concat] = ACTIONS(5427), - [anon_sym_AMP_AMP] = ACTIONS(5427), - [anon_sym_PIPE_PIPE] = ACTIONS(5427), - [anon_sym_RBRACK] = ACTIONS(5427), - [anon_sym_EQ_TILDE] = ACTIONS(5427), - [anon_sym_EQ_EQ] = ACTIONS(5427), - [anon_sym_EQ] = ACTIONS(5429), - [anon_sym_LT] = ACTIONS(5427), - [anon_sym_GT] = ACTIONS(5427), - [anon_sym_BANG_EQ] = ACTIONS(5427), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5427), - }, - [2264] = { - [sym_file_descriptor] = ACTIONS(2756), - [sym__concat] = ACTIONS(2756), - [anon_sym_esac] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_SEMI_SEMI] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_AMP_GT] = ACTIONS(2758), - [anon_sym_AMP_GT_GT] = ACTIONS(2758), - [anon_sym_LT_AMP] = ACTIONS(2758), - [anon_sym_GT_AMP] = ACTIONS(2758), - [anon_sym_LT_LT] = ACTIONS(2758), - [anon_sym_LT_LT_DASH] = ACTIONS(2758), - [anon_sym_LT_LT_LT] = ACTIONS(2758), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2758), - }, - [2265] = { - [sym_file_descriptor] = ACTIONS(2770), - [sym__concat] = ACTIONS(2770), - [anon_sym_esac] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_SEMI_SEMI] = ACTIONS(2772), - [anon_sym_PIPE_AMP] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_GT] = ACTIONS(2772), - [anon_sym_AMP_GT_GT] = ACTIONS(2772), - [anon_sym_LT_AMP] = ACTIONS(2772), - [anon_sym_GT_AMP] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_LT_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT_LT] = ACTIONS(2772), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), - }, - [2266] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5721), - [sym_comment] = ACTIONS(53), - }, - [2267] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5723), - [sym_comment] = ACTIONS(53), - }, - [2268] = { - [anon_sym_RBRACE] = ACTIONS(5723), - [sym_comment] = ACTIONS(53), - }, - [2269] = { - [sym_concatenation] = STATE(2486), - [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), - [aux_sym_expansion_repeat1] = STATE(2486), - [anon_sym_RBRACE] = ACTIONS(5725), - [anon_sym_EQ] = ACTIONS(5727), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5727), - [anon_sym_COLON_QMARK] = ACTIONS(5727), - [anon_sym_COLON_DASH] = ACTIONS(5727), - [anon_sym_PERCENT] = ACTIONS(5727), - [anon_sym_DASH] = ACTIONS(5727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2270] = { - [sym_file_descriptor] = ACTIONS(2852), - [sym__concat] = ACTIONS(2852), - [anon_sym_esac] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2854), - [anon_sym_SEMI_SEMI] = ACTIONS(2854), - [anon_sym_PIPE_AMP] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_GT] = ACTIONS(2854), - [anon_sym_AMP_GT_GT] = ACTIONS(2854), - [anon_sym_LT_AMP] = ACTIONS(2854), - [anon_sym_GT_AMP] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_LT_LT_DASH] = ACTIONS(2854), - [anon_sym_LT_LT_LT] = ACTIONS(2854), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - }, - [2271] = { - [sym_concatenation] = STATE(2489), - [sym_string] = STATE(2488), - [sym_simple_expansion] = STATE(2488), - [sym_string_expansion] = STATE(2488), - [sym_expansion] = STATE(2488), - [sym_command_substitution] = STATE(2488), - [sym_process_substitution] = STATE(2488), - [anon_sym_RBRACE] = ACTIONS(5723), - [sym__special_characters] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(5733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5733), - }, - [2272] = { - [sym_file_descriptor] = ACTIONS(2895), - [sym__concat] = ACTIONS(2895), - [anon_sym_esac] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_SEMI_SEMI] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2897), - [anon_sym_GT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_AMP_GT] = ACTIONS(2897), - [anon_sym_AMP_GT_GT] = ACTIONS(2897), - [anon_sym_LT_AMP] = ACTIONS(2897), - [anon_sym_GT_AMP] = ACTIONS(2897), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_LT_LT_DASH] = ACTIONS(2897), - [anon_sym_LT_LT_LT] = ACTIONS(2897), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2897), - }, - [2273] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5735), - }, - [2274] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5737), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2275] = { - [sym_file_descriptor] = ACTIONS(2903), - [sym__concat] = ACTIONS(2903), - [anon_sym_esac] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2905), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [anon_sym_PIPE_AMP] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_PIPE_PIPE] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_AMP_GT] = ACTIONS(2905), - [anon_sym_AMP_GT_GT] = ACTIONS(2905), - [anon_sym_LT_AMP] = ACTIONS(2905), - [anon_sym_GT_AMP] = ACTIONS(2905), - [anon_sym_LT_LT] = ACTIONS(2905), - [anon_sym_LT_LT_DASH] = ACTIONS(2905), - [anon_sym_LT_LT_LT] = ACTIONS(2905), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2905), - }, - [2276] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5739), - }, - [2277] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5741), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2278] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5743), - }, - [2279] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5723), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2280] = { - [sym_concatenation] = STATE(2496), - [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), - [aux_sym_expansion_repeat1] = STATE(2496), - [anon_sym_RBRACE] = ACTIONS(5745), - [anon_sym_EQ] = ACTIONS(5747), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5747), - [anon_sym_COLON_QMARK] = ACTIONS(5747), - [anon_sym_COLON_DASH] = ACTIONS(5747), - [anon_sym_PERCENT] = ACTIONS(5747), - [anon_sym_DASH] = ACTIONS(5747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2281] = { - [sym_file_descriptor] = ACTIONS(2919), - [sym__concat] = ACTIONS(2919), - [anon_sym_esac] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_SEMI_SEMI] = ACTIONS(2921), - [anon_sym_PIPE_AMP] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_PIPE_PIPE] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2921), - [anon_sym_AMP_GT] = ACTIONS(2921), - [anon_sym_AMP_GT_GT] = ACTIONS(2921), - [anon_sym_LT_AMP] = ACTIONS(2921), - [anon_sym_GT_AMP] = ACTIONS(2921), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_LT_LT_DASH] = ACTIONS(2921), - [anon_sym_LT_LT_LT] = ACTIONS(2921), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2921), - }, - [2282] = { - [sym_concatenation] = STATE(2498), - [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), - [aux_sym_expansion_repeat1] = STATE(2498), - [anon_sym_RBRACE] = ACTIONS(5751), - [anon_sym_EQ] = ACTIONS(5753), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5753), - [anon_sym_COLON_QMARK] = ACTIONS(5753), - [anon_sym_COLON_DASH] = ACTIONS(5753), - [anon_sym_PERCENT] = ACTIONS(5753), - [anon_sym_DASH] = ACTIONS(5753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2283] = { - [sym__concat] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5419), - [anon_sym_EQ_TILDE] = ACTIONS(5419), - [anon_sym_EQ_EQ] = ACTIONS(5419), - [anon_sym_EQ] = ACTIONS(5421), - [anon_sym_LT] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5419), - [anon_sym_BANG_EQ] = ACTIONS(5419), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5419), - }, - [2284] = { - [sym__concat] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5423), - [anon_sym_AMP_AMP] = ACTIONS(5423), - [anon_sym_PIPE_PIPE] = ACTIONS(5423), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5423), - [anon_sym_EQ_TILDE] = ACTIONS(5423), - [anon_sym_EQ_EQ] = ACTIONS(5423), - [anon_sym_EQ] = ACTIONS(5425), - [anon_sym_LT] = ACTIONS(5423), - [anon_sym_GT] = ACTIONS(5423), - [anon_sym_BANG_EQ] = ACTIONS(5423), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5423), - }, - [2285] = { - [sym__concat] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5427), - [anon_sym_AMP_AMP] = ACTIONS(5427), - [anon_sym_PIPE_PIPE] = ACTIONS(5427), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5427), - [anon_sym_EQ_TILDE] = ACTIONS(5427), - [anon_sym_EQ_EQ] = ACTIONS(5427), - [anon_sym_EQ] = ACTIONS(5429), - [anon_sym_LT] = ACTIONS(5427), - [anon_sym_GT] = ACTIONS(5427), - [anon_sym_BANG_EQ] = ACTIONS(5427), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5427), - }, - [2286] = { - [sym__concat] = ACTIONS(5419), - [sym_variable_name] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5421), - [anon_sym_SEMI_SEMI] = ACTIONS(5421), - [anon_sym_PIPE_AMP] = ACTIONS(5421), - [anon_sym_AMP_AMP] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5421), - [sym__special_characters] = ACTIONS(5421), - [anon_sym_DQUOTE] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), - [anon_sym_BQUOTE] = ACTIONS(5421), - [anon_sym_LT_LPAREN] = ACTIONS(5421), - [anon_sym_GT_LPAREN] = ACTIONS(5421), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5421), - [sym_word] = ACTIONS(5421), - [anon_sym_SEMI] = ACTIONS(5421), - [anon_sym_LF] = ACTIONS(5419), - [anon_sym_AMP] = ACTIONS(5421), - }, - [2287] = { - [sym__concat] = ACTIONS(5423), - [sym_variable_name] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5425), - [anon_sym_SEMI_SEMI] = ACTIONS(5425), - [anon_sym_PIPE_AMP] = ACTIONS(5425), - [anon_sym_AMP_AMP] = ACTIONS(5425), - [anon_sym_PIPE_PIPE] = ACTIONS(5425), - [sym__special_characters] = ACTIONS(5425), - [anon_sym_DQUOTE] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), - [anon_sym_BQUOTE] = ACTIONS(5425), - [anon_sym_LT_LPAREN] = ACTIONS(5425), - [anon_sym_GT_LPAREN] = ACTIONS(5425), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5425), - [sym_word] = ACTIONS(5425), - [anon_sym_SEMI] = ACTIONS(5425), - [anon_sym_LF] = ACTIONS(5423), - [anon_sym_AMP] = ACTIONS(5425), - }, - [2288] = { - [sym__concat] = ACTIONS(5427), - [sym_variable_name] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_SEMI_SEMI] = ACTIONS(5429), - [anon_sym_PIPE_AMP] = ACTIONS(5429), - [anon_sym_AMP_AMP] = ACTIONS(5429), - [anon_sym_PIPE_PIPE] = ACTIONS(5429), - [sym__special_characters] = ACTIONS(5429), - [anon_sym_DQUOTE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), - [anon_sym_BQUOTE] = ACTIONS(5429), - [anon_sym_LT_LPAREN] = ACTIONS(5429), - [anon_sym_GT_LPAREN] = ACTIONS(5429), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5429), - [sym_word] = ACTIONS(5429), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5427), - [anon_sym_AMP] = ACTIONS(5429), - }, - [2289] = { - [sym__concat] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5421), - [anon_sym_SEMI_SEMI] = ACTIONS(5421), - [anon_sym_PIPE_AMP] = ACTIONS(5421), - [anon_sym_AMP_AMP] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5421), - [sym__special_characters] = ACTIONS(5421), - [anon_sym_DQUOTE] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), - [anon_sym_BQUOTE] = ACTIONS(5421), - [anon_sym_LT_LPAREN] = ACTIONS(5421), - [anon_sym_GT_LPAREN] = ACTIONS(5421), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5421), - [sym_word] = ACTIONS(5421), - [anon_sym_SEMI] = ACTIONS(5421), - [anon_sym_LF] = ACTIONS(5419), - [anon_sym_AMP] = ACTIONS(5421), - }, - [2290] = { - [sym__concat] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5425), - [anon_sym_SEMI_SEMI] = ACTIONS(5425), - [anon_sym_PIPE_AMP] = ACTIONS(5425), - [anon_sym_AMP_AMP] = ACTIONS(5425), - [anon_sym_PIPE_PIPE] = ACTIONS(5425), - [sym__special_characters] = ACTIONS(5425), - [anon_sym_DQUOTE] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), - [anon_sym_BQUOTE] = ACTIONS(5425), - [anon_sym_LT_LPAREN] = ACTIONS(5425), - [anon_sym_GT_LPAREN] = ACTIONS(5425), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5425), - [sym_word] = ACTIONS(5425), - [anon_sym_SEMI] = ACTIONS(5425), - [anon_sym_LF] = ACTIONS(5423), - [anon_sym_AMP] = ACTIONS(5425), - }, - [2291] = { - [sym__concat] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_SEMI_SEMI] = ACTIONS(5429), - [anon_sym_PIPE_AMP] = ACTIONS(5429), - [anon_sym_AMP_AMP] = ACTIONS(5429), - [anon_sym_PIPE_PIPE] = ACTIONS(5429), - [sym__special_characters] = ACTIONS(5429), - [anon_sym_DQUOTE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), - [anon_sym_BQUOTE] = ACTIONS(5429), - [anon_sym_LT_LPAREN] = ACTIONS(5429), - [anon_sym_GT_LPAREN] = ACTIONS(5429), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5429), - [sym_word] = ACTIONS(5429), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5427), - [anon_sym_AMP] = ACTIONS(5429), - }, - [2292] = { - [sym_file_descriptor] = ACTIONS(5419), - [sym__concat] = ACTIONS(5419), - [sym_variable_name] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5419), - [anon_sym_PIPE_AMP] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_GT_GT] = ACTIONS(5419), - [anon_sym_AMP_GT] = ACTIONS(5421), - [anon_sym_AMP_GT_GT] = ACTIONS(5419), - [anon_sym_LT_AMP] = ACTIONS(5419), - [anon_sym_GT_AMP] = ACTIONS(5419), - [sym__special_characters] = ACTIONS(5419), - [anon_sym_DQUOTE] = ACTIONS(5419), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5419), - [anon_sym_BQUOTE] = ACTIONS(5419), - [anon_sym_LT_LPAREN] = ACTIONS(5419), - [anon_sym_GT_LPAREN] = ACTIONS(5419), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5419), - }, - [2293] = { - [sym_file_descriptor] = ACTIONS(5423), - [sym__concat] = ACTIONS(5423), - [sym_variable_name] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5423), - [anon_sym_PIPE_AMP] = ACTIONS(5423), - [anon_sym_AMP_AMP] = ACTIONS(5423), - [anon_sym_PIPE_PIPE] = ACTIONS(5423), - [anon_sym_LT] = ACTIONS(5425), - [anon_sym_GT] = ACTIONS(5425), - [anon_sym_GT_GT] = ACTIONS(5423), - [anon_sym_AMP_GT] = ACTIONS(5425), - [anon_sym_AMP_GT_GT] = ACTIONS(5423), - [anon_sym_LT_AMP] = ACTIONS(5423), - [anon_sym_GT_AMP] = ACTIONS(5423), - [sym__special_characters] = ACTIONS(5423), - [anon_sym_DQUOTE] = ACTIONS(5423), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5423), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5423), - [anon_sym_BQUOTE] = ACTIONS(5423), - [anon_sym_LT_LPAREN] = ACTIONS(5423), - [anon_sym_GT_LPAREN] = ACTIONS(5423), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5423), - }, - [2294] = { - [sym_file_descriptor] = ACTIONS(5427), - [sym__concat] = ACTIONS(5427), - [sym_variable_name] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5427), - [anon_sym_PIPE_AMP] = ACTIONS(5427), - [anon_sym_AMP_AMP] = ACTIONS(5427), - [anon_sym_PIPE_PIPE] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5429), - [anon_sym_GT] = ACTIONS(5429), - [anon_sym_GT_GT] = ACTIONS(5427), - [anon_sym_AMP_GT] = ACTIONS(5429), - [anon_sym_AMP_GT_GT] = ACTIONS(5427), - [anon_sym_LT_AMP] = ACTIONS(5427), - [anon_sym_GT_AMP] = ACTIONS(5427), - [sym__special_characters] = ACTIONS(5427), - [anon_sym_DQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5427), - [anon_sym_BQUOTE] = ACTIONS(5427), - [anon_sym_LT_LPAREN] = ACTIONS(5427), - [anon_sym_GT_LPAREN] = ACTIONS(5427), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5427), - }, - [2295] = { - [sym__concat] = ACTIONS(5419), - [anon_sym_DQUOTE] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym__string_content] = ACTIONS(5419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), - [anon_sym_BQUOTE] = ACTIONS(5421), - [sym_comment] = ACTIONS(177), - }, - [2296] = { - [sym__concat] = ACTIONS(5423), - [anon_sym_DQUOTE] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym__string_content] = ACTIONS(5423), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), - [anon_sym_BQUOTE] = ACTIONS(5425), - [sym_comment] = ACTIONS(177), - }, - [2297] = { - [sym__concat] = ACTIONS(5427), - [anon_sym_DQUOTE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym__string_content] = ACTIONS(5427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), - [anon_sym_BQUOTE] = ACTIONS(5429), - [sym_comment] = ACTIONS(177), - }, - [2298] = { - [sym__concat] = ACTIONS(3905), - [anon_sym_RBRACE] = ACTIONS(3905), - [sym_comment] = ACTIONS(53), - }, - [2299] = { - [sym__concat] = ACTIONS(3913), - [anon_sym_RBRACE] = ACTIONS(3913), - [sym_comment] = ACTIONS(53), - }, - [2300] = { - [sym__concat] = ACTIONS(4000), - [anon_sym_RBRACE] = ACTIONS(4000), - [sym_comment] = ACTIONS(53), - }, - [2301] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5757), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2302] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5759), - [sym_comment] = ACTIONS(53), - }, - [2303] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(5761), - [sym_comment] = ACTIONS(53), - }, - [2304] = { - [anon_sym_RBRACE] = ACTIONS(5761), - [sym_comment] = ACTIONS(53), - }, - [2305] = { - [sym_concatenation] = STATE(2503), - [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), - [aux_sym_expansion_repeat1] = STATE(2503), - [anon_sym_RBRACE] = ACTIONS(5763), - [anon_sym_EQ] = ACTIONS(5765), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5767), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5765), - [anon_sym_COLON_QMARK] = ACTIONS(5765), - [anon_sym_COLON_DASH] = ACTIONS(5765), - [anon_sym_PERCENT] = ACTIONS(5765), - [anon_sym_DASH] = ACTIONS(5765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2306] = { - [sym__concat] = ACTIONS(4016), - [anon_sym_RBRACE] = ACTIONS(4016), - [sym_comment] = ACTIONS(53), - }, - [2307] = { - [sym_concatenation] = STATE(2505), - [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), - [aux_sym_expansion_repeat1] = STATE(2505), - [anon_sym_RBRACE] = ACTIONS(5769), - [anon_sym_EQ] = ACTIONS(5771), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5771), - [anon_sym_COLON_QMARK] = ACTIONS(5771), - [anon_sym_COLON_DASH] = ACTIONS(5771), - [anon_sym_PERCENT] = ACTIONS(5771), - [anon_sym_DASH] = ACTIONS(5771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2308] = { - [sym__concat] = ACTIONS(4026), - [anon_sym_RBRACE] = ACTIONS(4026), - [sym_comment] = ACTIONS(53), - }, - [2309] = { - [sym_concatenation] = STATE(2507), - [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), - [aux_sym_expansion_repeat1] = STATE(2507), - [anon_sym_RBRACE] = ACTIONS(5775), - [anon_sym_EQ] = ACTIONS(5777), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5779), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(5777), - [anon_sym_COLON_QMARK] = ACTIONS(5777), - [anon_sym_COLON_DASH] = ACTIONS(5777), - [anon_sym_PERCENT] = ACTIONS(5777), - [anon_sym_DASH] = ACTIONS(5777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2310] = { - [sym__concat] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [sym_comment] = ACTIONS(53), - }, - [2311] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5781), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2312] = { - [sym__concat] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4042), - [sym_comment] = ACTIONS(53), - }, - [2313] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5783), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2314] = { - [sym__concat] = ACTIONS(4831), - [anon_sym_RBRACE] = ACTIONS(4831), - [anon_sym_EQ] = ACTIONS(4833), - [sym__special_characters] = ACTIONS(4833), - [anon_sym_DQUOTE] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4831), - [anon_sym_POUND] = ACTIONS(4831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_COLON_QMARK] = ACTIONS(4833), - [anon_sym_COLON_DASH] = ACTIONS(4833), - [anon_sym_PERCENT] = ACTIONS(4833), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4831), - [anon_sym_BQUOTE] = ACTIONS(4831), - [anon_sym_LT_LPAREN] = ACTIONS(4831), - [anon_sym_GT_LPAREN] = ACTIONS(4831), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4833), - }, - [2315] = { - [sym__concat] = ACTIONS(4835), - [anon_sym_RBRACE] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4837), - [sym__special_characters] = ACTIONS(4837), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4837), - [anon_sym_COLON_QMARK] = ACTIONS(4837), - [anon_sym_COLON_DASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4835), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LT_LPAREN] = ACTIONS(4835), - [anon_sym_GT_LPAREN] = ACTIONS(4835), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4837), - }, - [2316] = { - [sym__concat] = ACTIONS(4839), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4841), - [sym__special_characters] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4839), - [anon_sym_POUND] = ACTIONS(4839), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), - [anon_sym_COLON] = ACTIONS(4841), - [anon_sym_COLON_QMARK] = ACTIONS(4841), - [anon_sym_COLON_DASH] = ACTIONS(4841), - [anon_sym_PERCENT] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), - [anon_sym_BQUOTE] = ACTIONS(4839), - [anon_sym_LT_LPAREN] = ACTIONS(4839), - [anon_sym_GT_LPAREN] = ACTIONS(4839), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4841), - }, - [2317] = { - [sym__concat] = ACTIONS(4843), - [anon_sym_RBRACE] = ACTIONS(4843), - [anon_sym_EQ] = ACTIONS(4845), - [sym__special_characters] = ACTIONS(4845), - [anon_sym_DQUOTE] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4843), - [anon_sym_POUND] = ACTIONS(4843), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), - [anon_sym_COLON] = ACTIONS(4845), - [anon_sym_COLON_QMARK] = ACTIONS(4845), - [anon_sym_COLON_DASH] = ACTIONS(4845), - [anon_sym_PERCENT] = ACTIONS(4845), - [anon_sym_DASH] = ACTIONS(4845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4843), - [anon_sym_BQUOTE] = ACTIONS(4843), - [anon_sym_LT_LPAREN] = ACTIONS(4843), - [anon_sym_GT_LPAREN] = ACTIONS(4843), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4845), - }, - [2318] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5785), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2319] = { - [sym__concat] = ACTIONS(4849), - [anon_sym_RBRACE] = ACTIONS(4849), - [anon_sym_EQ] = ACTIONS(4851), - [sym__special_characters] = ACTIONS(4851), - [anon_sym_DQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4849), - [anon_sym_POUND] = ACTIONS(4849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), - [anon_sym_COLON] = ACTIONS(4851), - [anon_sym_COLON_QMARK] = ACTIONS(4851), - [anon_sym_COLON_DASH] = ACTIONS(4851), - [anon_sym_PERCENT] = ACTIONS(4851), - [anon_sym_DASH] = ACTIONS(4851), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4849), - [anon_sym_BQUOTE] = ACTIONS(4849), - [anon_sym_LT_LPAREN] = ACTIONS(4849), - [anon_sym_GT_LPAREN] = ACTIONS(4849), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4851), - }, - [2320] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5787), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2321] = { - [sym__concat] = ACTIONS(4855), - [anon_sym_RBRACE] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4857), - [sym__special_characters] = ACTIONS(4857), - [anon_sym_DQUOTE] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4855), - [anon_sym_POUND] = ACTIONS(4855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), - [anon_sym_COLON] = ACTIONS(4857), - [anon_sym_COLON_QMARK] = ACTIONS(4857), - [anon_sym_COLON_DASH] = ACTIONS(4857), - [anon_sym_PERCENT] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4855), - [anon_sym_BQUOTE] = ACTIONS(4855), - [anon_sym_LT_LPAREN] = ACTIONS(4855), - [anon_sym_GT_LPAREN] = ACTIONS(4855), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4857), - }, - [2322] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5789), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2323] = { - [sym__concat] = ACTIONS(4861), - [anon_sym_RBRACE] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4863), - [sym__special_characters] = ACTIONS(4863), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_POUND] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_COLON] = ACTIONS(4863), - [anon_sym_COLON_QMARK] = ACTIONS(4863), - [anon_sym_COLON_DASH] = ACTIONS(4863), - [anon_sym_PERCENT] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4863), - }, - [2324] = { - [sym__concat] = ACTIONS(4865), - [anon_sym_RBRACE] = ACTIONS(4865), - [anon_sym_EQ] = ACTIONS(4867), - [sym__special_characters] = ACTIONS(4867), - [anon_sym_DQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4865), - [anon_sym_POUND] = ACTIONS(4865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), - [anon_sym_COLON] = ACTIONS(4867), - [anon_sym_COLON_QMARK] = ACTIONS(4867), - [anon_sym_COLON_DASH] = ACTIONS(4867), - [anon_sym_PERCENT] = ACTIONS(4867), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4865), - [anon_sym_BQUOTE] = ACTIONS(4865), - [anon_sym_LT_LPAREN] = ACTIONS(4865), - [anon_sym_GT_LPAREN] = ACTIONS(4865), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4867), - }, - [2325] = { - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_PIPE_AMP] = ACTIONS(5157), - [anon_sym_AMP_AMP] = ACTIONS(5157), - [anon_sym_PIPE_PIPE] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5157), - [sym_comment] = ACTIONS(53), - }, - [2326] = { - [anon_sym_PIPE] = ACTIONS(5248), - [anon_sym_RPAREN] = ACTIONS(5250), - [anon_sym_PIPE_AMP] = ACTIONS(5250), - [anon_sym_AMP_AMP] = ACTIONS(5250), - [anon_sym_PIPE_PIPE] = ACTIONS(5250), - [anon_sym_BQUOTE] = ACTIONS(5250), - [sym_comment] = ACTIONS(53), - }, - [2327] = { - [anon_sym_esac] = ACTIONS(5791), - [sym_comment] = ACTIONS(53), - }, - [2328] = { - [anon_sym_PIPE] = ACTIONS(5258), - [anon_sym_RPAREN] = ACTIONS(5260), - [anon_sym_PIPE_AMP] = ACTIONS(5260), - [anon_sym_AMP_AMP] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5260), - [anon_sym_BQUOTE] = ACTIONS(5260), - [sym_comment] = ACTIONS(53), - }, - [2329] = { - [anon_sym_esac] = ACTIONS(5793), - [sym_comment] = ACTIONS(53), - }, - [2330] = { - [aux_sym_concatenation_repeat1] = STATE(2330), - [sym__concat] = ACTIONS(4157), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - }, - [2331] = { - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1672), - [anon_sym_LT_AMP] = ACTIONS(1672), - [anon_sym_GT_AMP] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1672), - [anon_sym_LT_LT_LT] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - }, - [2332] = { - [aux_sym_concatenation_repeat1] = STATE(2332), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(5795), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1672), - [anon_sym_LT_AMP] = ACTIONS(1672), - [anon_sym_GT_AMP] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1672), - [anon_sym_LT_LT_LT] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - }, - [2333] = { - [sym_file_descriptor] = ACTIONS(1679), - [sym__concat] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_PIPE_AMP] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_PIPE_PIPE] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1679), - [anon_sym_AMP_GT] = ACTIONS(1681), - [anon_sym_AMP_GT_GT] = ACTIONS(1679), - [anon_sym_LT_AMP] = ACTIONS(1679), - [anon_sym_GT_AMP] = ACTIONS(1679), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1679), - [anon_sym_LT_LT_LT] = ACTIONS(1679), - [anon_sym_BQUOTE] = ACTIONS(1679), - [sym_comment] = ACTIONS(53), - }, - [2334] = { - [anon_sym_DQUOTE] = ACTIONS(5798), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [2335] = { - [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(5800), - [sym__special_characters] = ACTIONS(5802), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(5804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5804), - }, - [2336] = { - [sym_file_descriptor] = ACTIONS(1764), - [sym__concat] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1764), - [anon_sym_PIPE_AMP] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_GT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1764), - [anon_sym_AMP_GT] = ACTIONS(1766), - [anon_sym_AMP_GT_GT] = ACTIONS(1764), - [anon_sym_LT_AMP] = ACTIONS(1764), - [anon_sym_GT_AMP] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_LT_LT_DASH] = ACTIONS(1764), - [anon_sym_LT_LT_LT] = ACTIONS(1764), - [anon_sym_BQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(53), - }, - [2337] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5806), - }, - [2338] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5808), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2339] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(5810), - [sym_comment] = ACTIONS(53), - }, - [2340] = { - [sym_concatenation] = STATE(2525), - [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), - [aux_sym_expansion_repeat1] = STATE(2525), - [anon_sym_RBRACE] = ACTIONS(5812), - [anon_sym_EQ] = ACTIONS(5814), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5818), - [anon_sym_COLON] = ACTIONS(5814), - [anon_sym_COLON_QMARK] = ACTIONS(5814), - [anon_sym_COLON_DASH] = ACTIONS(5814), - [anon_sym_PERCENT] = ACTIONS(5814), - [anon_sym_DASH] = ACTIONS(5814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2341] = { - [sym_concatenation] = STATE(2528), - [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), - [aux_sym_expansion_repeat1] = STATE(2528), - [anon_sym_RBRACE] = ACTIONS(5820), - [anon_sym_EQ] = ACTIONS(5822), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_COLON] = ACTIONS(5822), - [anon_sym_COLON_QMARK] = ACTIONS(5822), - [anon_sym_COLON_DASH] = ACTIONS(5822), - [anon_sym_PERCENT] = ACTIONS(5822), - [anon_sym_DASH] = ACTIONS(5822), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2342] = { - [sym_concatenation] = STATE(2530), - [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), - [aux_sym_expansion_repeat1] = STATE(2530), - [anon_sym_RBRACE] = ACTIONS(5800), - [anon_sym_EQ] = ACTIONS(5828), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5832), - [anon_sym_COLON] = ACTIONS(5828), - [anon_sym_COLON_QMARK] = ACTIONS(5828), - [anon_sym_COLON_DASH] = ACTIONS(5828), - [anon_sym_PERCENT] = ACTIONS(5828), - [anon_sym_DASH] = ACTIONS(5828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2343] = { - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1832), - [anon_sym_LT_AMP] = ACTIONS(1832), - [anon_sym_GT_AMP] = ACTIONS(1832), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1832), - [anon_sym_LT_LT_LT] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - }, - [2344] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5834), - }, - [2345] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5836), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2346] = { - [sym_file_descriptor] = ACTIONS(1840), - [sym__concat] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_PIPE_AMP] = ACTIONS(1840), - [anon_sym_AMP_AMP] = ACTIONS(1840), - [anon_sym_PIPE_PIPE] = ACTIONS(1840), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_GT] = ACTIONS(1842), - [anon_sym_GT_GT] = ACTIONS(1840), - [anon_sym_AMP_GT] = ACTIONS(1842), - [anon_sym_AMP_GT_GT] = ACTIONS(1840), - [anon_sym_LT_AMP] = ACTIONS(1840), - [anon_sym_GT_AMP] = ACTIONS(1840), - [anon_sym_LT_LT] = ACTIONS(1842), - [anon_sym_LT_LT_DASH] = ACTIONS(1840), - [anon_sym_LT_LT_LT] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), - }, - [2347] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5838), - }, - [2348] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5800), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2349] = { - [sym_file_descriptor] = ACTIONS(1980), - [sym__concat] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = 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(53), - }, - [2350] = { - [sym_file_descriptor] = ACTIONS(2046), - [sym__concat] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2046), - [anon_sym_PIPE_AMP] = ACTIONS(2046), - [anon_sym_AMP_AMP] = ACTIONS(2046), - [anon_sym_PIPE_PIPE] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2046), - [anon_sym_AMP_GT] = ACTIONS(2048), - [anon_sym_AMP_GT_GT] = ACTIONS(2046), - [anon_sym_LT_AMP] = ACTIONS(2046), - [anon_sym_GT_AMP] = ACTIONS(2046), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_LT_LT_DASH] = ACTIONS(2046), - [anon_sym_LT_LT_LT] = ACTIONS(2046), - [anon_sym_BQUOTE] = ACTIONS(2046), - [sym_comment] = ACTIONS(53), - }, - [2351] = { - [sym__concat] = ACTIONS(4831), - [sym_variable_name] = ACTIONS(4831), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_PIPE_AMP] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4831), - [anon_sym_PIPE_PIPE] = ACTIONS(4831), - [sym__special_characters] = ACTIONS(4831), - [anon_sym_DQUOTE] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4831), - [anon_sym_BQUOTE] = ACTIONS(4831), - [anon_sym_LT_LPAREN] = ACTIONS(4831), - [anon_sym_GT_LPAREN] = ACTIONS(4831), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), - [sym_word] = ACTIONS(4833), - }, - [2352] = { - [sym__concat] = ACTIONS(4835), - [sym_variable_name] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_PIPE_AMP] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [sym__special_characters] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4835), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LT_LPAREN] = ACTIONS(4835), - [anon_sym_GT_LPAREN] = ACTIONS(4835), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4837), - [sym_word] = ACTIONS(4837), - }, - [2353] = { - [sym__concat] = ACTIONS(4839), - [sym_variable_name] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_PIPE_AMP] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [sym__special_characters] = ACTIONS(4839), - [anon_sym_DQUOTE] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4839), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), - [anon_sym_BQUOTE] = ACTIONS(4839), - [anon_sym_LT_LPAREN] = ACTIONS(4839), - [anon_sym_GT_LPAREN] = ACTIONS(4839), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4841), - [sym_word] = ACTIONS(4841), - }, - [2354] = { - [sym__concat] = ACTIONS(4843), - [sym_variable_name] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_PIPE_AMP] = ACTIONS(4843), - [anon_sym_AMP_AMP] = ACTIONS(4843), - [anon_sym_PIPE_PIPE] = ACTIONS(4843), - [sym__special_characters] = ACTIONS(4843), - [anon_sym_DQUOTE] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4843), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4843), - [anon_sym_BQUOTE] = ACTIONS(4843), - [anon_sym_LT_LPAREN] = ACTIONS(4843), - [anon_sym_GT_LPAREN] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), - [sym_word] = ACTIONS(4845), - }, - [2355] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5840), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2356] = { - [sym__concat] = ACTIONS(4849), - [sym_variable_name] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4849), - [anon_sym_PIPE_AMP] = ACTIONS(4849), - [anon_sym_AMP_AMP] = ACTIONS(4849), - [anon_sym_PIPE_PIPE] = ACTIONS(4849), - [sym__special_characters] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4849), - [anon_sym_BQUOTE] = ACTIONS(4849), - [anon_sym_LT_LPAREN] = ACTIONS(4849), - [anon_sym_GT_LPAREN] = ACTIONS(4849), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4851), - [sym_word] = ACTIONS(4851), - }, - [2357] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5842), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2358] = { - [sym__concat] = ACTIONS(4855), - [sym_variable_name] = ACTIONS(4855), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_PIPE_AMP] = ACTIONS(4855), - [anon_sym_AMP_AMP] = ACTIONS(4855), - [anon_sym_PIPE_PIPE] = ACTIONS(4855), - [sym__special_characters] = ACTIONS(4855), - [anon_sym_DQUOTE] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4855), - [anon_sym_BQUOTE] = ACTIONS(4855), - [anon_sym_LT_LPAREN] = ACTIONS(4855), - [anon_sym_GT_LPAREN] = ACTIONS(4855), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4857), - [sym_word] = ACTIONS(4857), - }, - [2359] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5844), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2360] = { - [sym__concat] = ACTIONS(4861), - [sym_variable_name] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4863), - [sym_word] = ACTIONS(4863), - }, - [2361] = { - [sym__concat] = ACTIONS(4865), - [sym_variable_name] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_RPAREN] = ACTIONS(4865), - [anon_sym_PIPE_AMP] = ACTIONS(4865), - [anon_sym_AMP_AMP] = ACTIONS(4865), - [anon_sym_PIPE_PIPE] = ACTIONS(4865), - [sym__special_characters] = ACTIONS(4865), - [anon_sym_DQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4865), - [anon_sym_BQUOTE] = ACTIONS(4865), - [anon_sym_LT_LPAREN] = ACTIONS(4865), - [anon_sym_GT_LPAREN] = ACTIONS(4865), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4867), - [sym_word] = ACTIONS(4867), - }, - [2362] = { - [sym__concat] = ACTIONS(4831), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_PIPE_AMP] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4831), - [anon_sym_PIPE_PIPE] = ACTIONS(4831), - [sym__special_characters] = ACTIONS(4831), - [anon_sym_DQUOTE] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4831), - [anon_sym_BQUOTE] = ACTIONS(4831), - [anon_sym_LT_LPAREN] = ACTIONS(4831), - [anon_sym_GT_LPAREN] = ACTIONS(4831), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), - [sym_word] = ACTIONS(4833), - }, - [2363] = { - [sym__concat] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_PIPE_AMP] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [sym__special_characters] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4835), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LT_LPAREN] = ACTIONS(4835), - [anon_sym_GT_LPAREN] = ACTIONS(4835), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4837), - [sym_word] = ACTIONS(4837), - }, - [2364] = { - [sym__concat] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_PIPE_AMP] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [sym__special_characters] = ACTIONS(4839), - [anon_sym_DQUOTE] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4839), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), - [anon_sym_BQUOTE] = ACTIONS(4839), - [anon_sym_LT_LPAREN] = ACTIONS(4839), - [anon_sym_GT_LPAREN] = ACTIONS(4839), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4841), - [sym_word] = ACTIONS(4841), - }, - [2365] = { - [sym__concat] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_PIPE_AMP] = ACTIONS(4843), - [anon_sym_AMP_AMP] = ACTIONS(4843), - [anon_sym_PIPE_PIPE] = ACTIONS(4843), - [sym__special_characters] = ACTIONS(4843), - [anon_sym_DQUOTE] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4843), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4843), - [anon_sym_BQUOTE] = ACTIONS(4843), - [anon_sym_LT_LPAREN] = ACTIONS(4843), - [anon_sym_GT_LPAREN] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), - [sym_word] = ACTIONS(4845), - }, - [2366] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2367] = { - [sym__concat] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4849), - [anon_sym_PIPE_AMP] = ACTIONS(4849), - [anon_sym_AMP_AMP] = ACTIONS(4849), - [anon_sym_PIPE_PIPE] = ACTIONS(4849), - [sym__special_characters] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4849), - [anon_sym_BQUOTE] = ACTIONS(4849), - [anon_sym_LT_LPAREN] = ACTIONS(4849), - [anon_sym_GT_LPAREN] = ACTIONS(4849), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4851), - [sym_word] = ACTIONS(4851), - }, - [2368] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5848), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2369] = { - [sym__concat] = ACTIONS(4855), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_PIPE_AMP] = ACTIONS(4855), - [anon_sym_AMP_AMP] = ACTIONS(4855), - [anon_sym_PIPE_PIPE] = ACTIONS(4855), - [sym__special_characters] = ACTIONS(4855), - [anon_sym_DQUOTE] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4855), - [anon_sym_BQUOTE] = ACTIONS(4855), - [anon_sym_LT_LPAREN] = ACTIONS(4855), - [anon_sym_GT_LPAREN] = ACTIONS(4855), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4857), - [sym_word] = ACTIONS(4857), - }, - [2370] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5850), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2371] = { - [sym__concat] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4863), - [sym_word] = ACTIONS(4863), - }, - [2372] = { - [sym__concat] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_RPAREN] = ACTIONS(4865), - [anon_sym_PIPE_AMP] = ACTIONS(4865), - [anon_sym_AMP_AMP] = ACTIONS(4865), - [anon_sym_PIPE_PIPE] = ACTIONS(4865), - [sym__special_characters] = ACTIONS(4865), - [anon_sym_DQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4865), - [anon_sym_BQUOTE] = ACTIONS(4865), - [anon_sym_LT_LPAREN] = ACTIONS(4865), - [anon_sym_GT_LPAREN] = ACTIONS(4865), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4867), - [sym_word] = ACTIONS(4867), - }, - [2373] = { - [sym__simple_heredoc_body] = ACTIONS(5419), - [sym__heredoc_body_beginning] = ACTIONS(5419), - [sym_file_descriptor] = ACTIONS(5419), - [sym__concat] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5419), - [anon_sym_PIPE_AMP] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_EQ_TILDE] = ACTIONS(5421), - [anon_sym_EQ_EQ] = ACTIONS(5421), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_GT_GT] = ACTIONS(5419), - [anon_sym_AMP_GT] = ACTIONS(5421), - [anon_sym_AMP_GT_GT] = ACTIONS(5419), - [anon_sym_LT_AMP] = ACTIONS(5419), - [anon_sym_GT_AMP] = ACTIONS(5419), - [anon_sym_LT_LT] = ACTIONS(5421), - [anon_sym_LT_LT_DASH] = ACTIONS(5419), - [anon_sym_LT_LT_LT] = ACTIONS(5419), - [sym__special_characters] = ACTIONS(5419), - [anon_sym_DQUOTE] = ACTIONS(5419), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5419), - [anon_sym_BQUOTE] = ACTIONS(5419), - [anon_sym_LT_LPAREN] = ACTIONS(5419), - [anon_sym_GT_LPAREN] = ACTIONS(5419), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5421), - }, - [2374] = { - [sym__simple_heredoc_body] = ACTIONS(5423), - [sym__heredoc_body_beginning] = ACTIONS(5423), - [sym_file_descriptor] = ACTIONS(5423), - [sym__concat] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5423), - [anon_sym_PIPE_AMP] = ACTIONS(5423), - [anon_sym_AMP_AMP] = ACTIONS(5423), - [anon_sym_PIPE_PIPE] = ACTIONS(5423), - [anon_sym_EQ_TILDE] = ACTIONS(5425), - [anon_sym_EQ_EQ] = ACTIONS(5425), - [anon_sym_LT] = ACTIONS(5425), - [anon_sym_GT] = ACTIONS(5425), - [anon_sym_GT_GT] = ACTIONS(5423), - [anon_sym_AMP_GT] = ACTIONS(5425), - [anon_sym_AMP_GT_GT] = ACTIONS(5423), - [anon_sym_LT_AMP] = ACTIONS(5423), - [anon_sym_GT_AMP] = ACTIONS(5423), - [anon_sym_LT_LT] = ACTIONS(5425), - [anon_sym_LT_LT_DASH] = ACTIONS(5423), - [anon_sym_LT_LT_LT] = ACTIONS(5423), - [sym__special_characters] = ACTIONS(5423), - [anon_sym_DQUOTE] = ACTIONS(5423), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5423), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5423), - [anon_sym_BQUOTE] = ACTIONS(5423), - [anon_sym_LT_LPAREN] = ACTIONS(5423), - [anon_sym_GT_LPAREN] = ACTIONS(5423), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5425), - }, - [2375] = { - [sym__simple_heredoc_body] = ACTIONS(5427), - [sym__heredoc_body_beginning] = ACTIONS(5427), - [sym_file_descriptor] = ACTIONS(5427), - [sym__concat] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5427), - [anon_sym_PIPE_AMP] = ACTIONS(5427), - [anon_sym_AMP_AMP] = ACTIONS(5427), - [anon_sym_PIPE_PIPE] = ACTIONS(5427), - [anon_sym_EQ_TILDE] = ACTIONS(5429), - [anon_sym_EQ_EQ] = ACTIONS(5429), - [anon_sym_LT] = ACTIONS(5429), - [anon_sym_GT] = ACTIONS(5429), - [anon_sym_GT_GT] = ACTIONS(5427), - [anon_sym_AMP_GT] = ACTIONS(5429), - [anon_sym_AMP_GT_GT] = ACTIONS(5427), - [anon_sym_LT_AMP] = ACTIONS(5427), - [anon_sym_GT_AMP] = ACTIONS(5427), - [anon_sym_LT_LT] = ACTIONS(5429), - [anon_sym_LT_LT_DASH] = ACTIONS(5427), - [anon_sym_LT_LT_LT] = ACTIONS(5427), - [sym__special_characters] = ACTIONS(5427), - [anon_sym_DQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5427), - [anon_sym_BQUOTE] = ACTIONS(5427), - [anon_sym_LT_LPAREN] = ACTIONS(5427), - [anon_sym_GT_LPAREN] = ACTIONS(5427), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5429), - }, - [2376] = { - [aux_sym_concatenation_repeat1] = STATE(2376), - [sym__concat] = ACTIONS(4157), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - }, - [2377] = { - [aux_sym_concatenation_repeat1] = STATE(2377), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(5795), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1672), - [anon_sym_LT_AMP] = ACTIONS(1672), - [anon_sym_GT_AMP] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1672), - [anon_sym_LT_LT_LT] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_comment] = ACTIONS(53), - }, - [2378] = { - [sym__heredoc_body_middle] = ACTIONS(4831), - [sym__heredoc_body_end] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), - [sym_comment] = ACTIONS(53), - }, - [2379] = { - [sym__heredoc_body_middle] = ACTIONS(4835), - [sym__heredoc_body_end] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4837), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), - [sym_comment] = ACTIONS(53), - }, - [2380] = { - [sym__heredoc_body_middle] = ACTIONS(4839), - [sym__heredoc_body_end] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), - [sym_comment] = ACTIONS(53), - }, - [2381] = { - [sym__heredoc_body_middle] = ACTIONS(4843), - [sym__heredoc_body_end] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - }, - [2382] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5852), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2383] = { - [sym__heredoc_body_middle] = ACTIONS(4849), - [sym__heredoc_body_end] = ACTIONS(4849), - [anon_sym_DOLLAR] = ACTIONS(4851), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), - [sym_comment] = ACTIONS(53), - }, - [2384] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5854), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2385] = { - [sym__heredoc_body_middle] = ACTIONS(4855), - [sym__heredoc_body_end] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), - [sym_comment] = ACTIONS(53), - }, - [2386] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5856), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2387] = { - [sym__heredoc_body_middle] = ACTIONS(4861), - [sym__heredoc_body_end] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4863), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [sym_comment] = ACTIONS(53), - }, - [2388] = { - [sym__heredoc_body_middle] = ACTIONS(4865), - [sym__heredoc_body_end] = ACTIONS(4865), - [anon_sym_DOLLAR] = ACTIONS(4867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), - [sym_comment] = ACTIONS(53), - }, - [2389] = { - [sym__concat] = ACTIONS(4831), - [anon_sym_RPAREN] = ACTIONS(4831), - [sym__special_characters] = ACTIONS(4831), - [anon_sym_DQUOTE] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4831), - [anon_sym_BQUOTE] = ACTIONS(4831), - [anon_sym_LT_LPAREN] = ACTIONS(4831), - [anon_sym_GT_LPAREN] = ACTIONS(4831), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4831), - }, - [2390] = { - [sym__concat] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__special_characters] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4835), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LT_LPAREN] = ACTIONS(4835), - [anon_sym_GT_LPAREN] = ACTIONS(4835), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4835), - }, - [2391] = { - [sym__concat] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4839), - [sym__special_characters] = ACTIONS(4839), - [anon_sym_DQUOTE] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4839), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), - [anon_sym_BQUOTE] = ACTIONS(4839), - [anon_sym_LT_LPAREN] = ACTIONS(4839), - [anon_sym_GT_LPAREN] = ACTIONS(4839), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4839), - }, - [2392] = { - [sym__concat] = ACTIONS(4843), - [anon_sym_RPAREN] = ACTIONS(4843), - [sym__special_characters] = ACTIONS(4843), - [anon_sym_DQUOTE] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4843), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4843), - [anon_sym_BQUOTE] = ACTIONS(4843), - [anon_sym_LT_LPAREN] = ACTIONS(4843), - [anon_sym_GT_LPAREN] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4843), - }, - [2393] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5858), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2394] = { - [sym__concat] = ACTIONS(4849), - [anon_sym_RPAREN] = ACTIONS(4849), - [sym__special_characters] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4849), - [anon_sym_BQUOTE] = ACTIONS(4849), - [anon_sym_LT_LPAREN] = ACTIONS(4849), - [anon_sym_GT_LPAREN] = ACTIONS(4849), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4849), - }, - [2395] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5860), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2396] = { - [sym__concat] = ACTIONS(4855), - [anon_sym_RPAREN] = ACTIONS(4855), - [sym__special_characters] = ACTIONS(4855), - [anon_sym_DQUOTE] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4855), - [anon_sym_BQUOTE] = ACTIONS(4855), - [anon_sym_LT_LPAREN] = ACTIONS(4855), - [anon_sym_GT_LPAREN] = ACTIONS(4855), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4855), - }, - [2397] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2398] = { - [sym__concat] = ACTIONS(4861), - [anon_sym_RPAREN] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4861), - }, - [2399] = { - [sym__concat] = ACTIONS(4865), - [anon_sym_RPAREN] = ACTIONS(4865), - [sym__special_characters] = ACTIONS(4865), - [anon_sym_DQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4865), - [anon_sym_BQUOTE] = ACTIONS(4865), - [anon_sym_LT_LPAREN] = ACTIONS(4865), - [anon_sym_GT_LPAREN] = ACTIONS(4865), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4865), - }, - [2400] = { - [sym_file_descriptor] = ACTIONS(5419), - [sym__concat] = ACTIONS(5419), - [sym_variable_name] = ACTIONS(5419), - [anon_sym_esac] = ACTIONS(5421), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5421), - [anon_sym_SEMI_SEMI] = ACTIONS(5421), - [anon_sym_PIPE_AMP] = ACTIONS(5421), - [anon_sym_AMP_AMP] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5421), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_GT_GT] = ACTIONS(5421), - [anon_sym_AMP_GT] = ACTIONS(5421), - [anon_sym_AMP_GT_GT] = ACTIONS(5421), - [anon_sym_LT_AMP] = ACTIONS(5421), - [anon_sym_GT_AMP] = ACTIONS(5421), - [sym__special_characters] = ACTIONS(5421), - [anon_sym_DQUOTE] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), - [anon_sym_BQUOTE] = ACTIONS(5421), - [anon_sym_LT_LPAREN] = ACTIONS(5421), - [anon_sym_GT_LPAREN] = ACTIONS(5421), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5421), - [anon_sym_SEMI] = ACTIONS(5421), - [anon_sym_LF] = ACTIONS(5419), - [anon_sym_AMP] = ACTIONS(5421), - }, - [2401] = { - [sym_file_descriptor] = ACTIONS(5423), - [sym__concat] = ACTIONS(5423), - [sym_variable_name] = ACTIONS(5423), - [anon_sym_esac] = ACTIONS(5425), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5425), - [anon_sym_SEMI_SEMI] = ACTIONS(5425), - [anon_sym_PIPE_AMP] = ACTIONS(5425), - [anon_sym_AMP_AMP] = ACTIONS(5425), - [anon_sym_PIPE_PIPE] = ACTIONS(5425), - [anon_sym_LT] = ACTIONS(5425), - [anon_sym_GT] = ACTIONS(5425), - [anon_sym_GT_GT] = ACTIONS(5425), - [anon_sym_AMP_GT] = ACTIONS(5425), - [anon_sym_AMP_GT_GT] = ACTIONS(5425), - [anon_sym_LT_AMP] = ACTIONS(5425), - [anon_sym_GT_AMP] = ACTIONS(5425), - [sym__special_characters] = ACTIONS(5425), - [anon_sym_DQUOTE] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), - [anon_sym_BQUOTE] = ACTIONS(5425), - [anon_sym_LT_LPAREN] = ACTIONS(5425), - [anon_sym_GT_LPAREN] = ACTIONS(5425), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5425), - [anon_sym_SEMI] = ACTIONS(5425), - [anon_sym_LF] = ACTIONS(5423), - [anon_sym_AMP] = ACTIONS(5425), - }, - [2402] = { - [sym_file_descriptor] = ACTIONS(5427), - [sym__concat] = ACTIONS(5427), - [sym_variable_name] = ACTIONS(5427), - [anon_sym_esac] = ACTIONS(5429), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_SEMI_SEMI] = ACTIONS(5429), - [anon_sym_PIPE_AMP] = ACTIONS(5429), - [anon_sym_AMP_AMP] = ACTIONS(5429), - [anon_sym_PIPE_PIPE] = ACTIONS(5429), - [anon_sym_LT] = ACTIONS(5429), - [anon_sym_GT] = ACTIONS(5429), - [anon_sym_GT_GT] = ACTIONS(5429), - [anon_sym_AMP_GT] = ACTIONS(5429), - [anon_sym_AMP_GT_GT] = ACTIONS(5429), - [anon_sym_LT_AMP] = ACTIONS(5429), - [anon_sym_GT_AMP] = ACTIONS(5429), - [sym__special_characters] = ACTIONS(5429), - [anon_sym_DQUOTE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), - [anon_sym_BQUOTE] = ACTIONS(5429), - [anon_sym_LT_LPAREN] = ACTIONS(5429), - [anon_sym_GT_LPAREN] = ACTIONS(5429), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5429), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5427), - [anon_sym_AMP] = ACTIONS(5429), - }, - [2403] = { - [aux_sym_concatenation_repeat1] = STATE(2546), - [sym_file_descriptor] = ACTIONS(1145), - [sym__concat] = ACTIONS(1147), - [sym_variable_name] = ACTIONS(1145), - [anon_sym_esac] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_SEMI_SEMI] = ACTIONS(1149), - [anon_sym_PIPE_AMP] = ACTIONS(1149), - [anon_sym_AMP_AMP] = ACTIONS(1149), - [anon_sym_PIPE_PIPE] = ACTIONS(1149), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_GT] = ACTIONS(1149), - [anon_sym_GT_GT] = ACTIONS(1149), - [anon_sym_AMP_GT] = ACTIONS(1149), - [anon_sym_AMP_GT_GT] = ACTIONS(1149), - [anon_sym_LT_AMP] = ACTIONS(1149), - [anon_sym_GT_AMP] = ACTIONS(1149), - [sym__special_characters] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [anon_sym_DOLLAR] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1149), - [anon_sym_BQUOTE] = ACTIONS(1149), - [anon_sym_LT_LPAREN] = ACTIONS(1149), - [anon_sym_GT_LPAREN] = ACTIONS(1149), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym_LF] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1149), - }, - [2404] = { - [aux_sym_concatenation_repeat1] = STATE(2546), - [sym_file_descriptor] = ACTIONS(1123), - [sym__concat] = ACTIONS(1147), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_esac] = ACTIONS(1125), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_SEMI_SEMI] = ACTIONS(1125), - [anon_sym_PIPE_AMP] = ACTIONS(1125), - [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1125), - [anon_sym_AMP_GT] = ACTIONS(1125), - [anon_sym_AMP_GT_GT] = ACTIONS(1125), - [anon_sym_LT_AMP] = ACTIONS(1125), - [anon_sym_GT_AMP] = ACTIONS(1125), - [sym__special_characters] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), - [anon_sym_BQUOTE] = ACTIONS(1125), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LF] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - }, - [2405] = { - [sym_file_redirect] = STATE(2547), - [sym_heredoc_redirect] = STATE(2547), - [sym_heredoc_body] = STATE(603), - [sym_herestring_redirect] = STATE(2547), - [aux_sym_while_statement_repeat1] = STATE(2547), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5219), - [anon_sym_esac] = ACTIONS(1181), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_SEMI_SEMI] = ACTIONS(1181), - [anon_sym_PIPE_AMP] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [anon_sym_LT] = ACTIONS(5223), - [anon_sym_GT] = ACTIONS(5223), - [anon_sym_GT_GT] = ACTIONS(5223), - [anon_sym_AMP_GT] = ACTIONS(5223), - [anon_sym_AMP_GT_GT] = ACTIONS(5223), - [anon_sym_LT_AMP] = ACTIONS(5223), - [anon_sym_GT_AMP] = ACTIONS(5223), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5225), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_LF] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1181), - }, - [2406] = { - [anon_sym_RPAREN] = ACTIONS(5864), - [sym_comment] = ACTIONS(53), - }, - [2407] = { - [sym_file_redirect] = STATE(643), - [sym_file_descriptor] = ACTIONS(5866), - [anon_sym_esac] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1253), - [anon_sym_PIPE_AMP] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_GT_GT] = ACTIONS(5868), - [anon_sym_AMP_GT] = ACTIONS(5868), - [anon_sym_AMP_GT_GT] = ACTIONS(5868), - [anon_sym_LT_AMP] = ACTIONS(5868), - [anon_sym_GT_AMP] = ACTIONS(5868), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1253), - }, - [2408] = { - [sym_file_redirect] = STATE(2554), - [sym_heredoc_redirect] = STATE(2554), - [sym_herestring_redirect] = STATE(2554), - [aux_sym_while_statement_repeat1] = STATE(2554), - [sym_file_descriptor] = ACTIONS(5870), - [anon_sym_esac] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_SEMI_SEMI] = ACTIONS(1363), - [anon_sym_PIPE_AMP] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1363), - [anon_sym_PIPE_PIPE] = ACTIONS(1363), - [anon_sym_LT] = ACTIONS(5872), - [anon_sym_GT] = ACTIONS(5872), - [anon_sym_GT_GT] = ACTIONS(5872), - [anon_sym_AMP_GT] = ACTIONS(5872), - [anon_sym_AMP_GT_GT] = ACTIONS(5872), - [anon_sym_LT_AMP] = ACTIONS(5872), - [anon_sym_GT_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(1367), - [anon_sym_LT_LT_DASH] = ACTIONS(1367), - [anon_sym_LT_LT_LT] = ACTIONS(5874), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1363), - }, - [2409] = { - [sym_concatenation] = STATE(2555), - [sym_string] = STATE(2558), - [sym_array] = STATE(2555), - [sym_simple_expansion] = STATE(2558), - [sym_string_expansion] = STATE(2558), - [sym_expansion] = STATE(2558), - [sym_command_substitution] = STATE(2558), - [sym_process_substitution] = STATE(2558), - [sym__empty_value] = ACTIONS(5876), - [anon_sym_LPAREN] = ACTIONS(5878), - [sym__special_characters] = ACTIONS(5880), - [anon_sym_DQUOTE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(5179), - [sym_raw_string] = ACTIONS(5882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5886), - [anon_sym_BQUOTE] = ACTIONS(5888), - [anon_sym_LT_LPAREN] = ACTIONS(5890), - [anon_sym_GT_LPAREN] = ACTIONS(5890), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5882), - }, - [2410] = { - [sym_string] = STATE(2559), - [sym_simple_expansion] = STATE(2559), - [sym_string_expansion] = STATE(2559), - [sym_expansion] = STATE(2559), - [sym_command_substitution] = STATE(2559), - [sym_process_substitution] = STATE(2559), - [sym__special_characters] = ACTIONS(5892), - [anon_sym_DQUOTE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(5179), - [sym_raw_string] = ACTIONS(5892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5886), - [anon_sym_BQUOTE] = ACTIONS(5888), - [anon_sym_LT_LPAREN] = ACTIONS(5890), - [anon_sym_GT_LPAREN] = ACTIONS(5890), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5892), - }, - [2411] = { - [aux_sym_concatenation_repeat1] = STATE(2560), - [sym__concat] = ACTIONS(5615), - [sym_variable_name] = ACTIONS(705), - [anon_sym_esac] = ACTIONS(707), - [anon_sym_PIPE] = 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), - [sym__special_characters] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(707), - [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [2412] = { - [sym__concat] = ACTIONS(709), - [sym_variable_name] = ACTIONS(709), - [anon_sym_esac] = ACTIONS(711), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_PIPE_AMP] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [sym__special_characters] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(711), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), - [anon_sym_BQUOTE] = ACTIONS(711), - [anon_sym_LT_LPAREN] = ACTIONS(711), - [anon_sym_GT_LPAREN] = ACTIONS(711), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), - [sym_word] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_LF] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(711), - }, - [2413] = { - [anon_sym_DQUOTE] = ACTIONS(5894), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [2414] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(5894), - [anon_sym_DOLLAR] = ACTIONS(5896), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [2415] = { - [sym__concat] = ACTIONS(741), - [sym_variable_name] = ACTIONS(741), - [anon_sym_esac] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_PIPE_AMP] = ACTIONS(743), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [sym__special_characters] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LT_LPAREN] = ACTIONS(743), - [anon_sym_GT_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), - [sym_word] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LF] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), - }, - [2416] = { - [sym__concat] = ACTIONS(745), - [sym_variable_name] = ACTIONS(745), - [anon_sym_esac] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(747), - [anon_sym_DOLLAR] = ACTIONS(747), - [sym_raw_string] = ACTIONS(747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), - [anon_sym_BQUOTE] = ACTIONS(747), - [anon_sym_LT_LPAREN] = ACTIONS(747), - [anon_sym_GT_LPAREN] = ACTIONS(747), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [sym_word] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - }, - [2417] = { - [sym__concat] = ACTIONS(749), - [sym_variable_name] = ACTIONS(749), - [anon_sym_esac] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_PIPE_AMP] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [sym__special_characters] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [anon_sym_LT_LPAREN] = ACTIONS(751), - [anon_sym_GT_LPAREN] = ACTIONS(751), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), - [sym_word] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [2418] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(5898), - [sym_comment] = ACTIONS(53), - }, - [2419] = { - [sym_concatenation] = STATE(2566), - [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), - [aux_sym_expansion_repeat1] = STATE(2566), - [anon_sym_RBRACE] = ACTIONS(5900), - [anon_sym_EQ] = ACTIONS(5902), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5906), - [anon_sym_COLON] = ACTIONS(5902), - [anon_sym_COLON_QMARK] = ACTIONS(5902), - [anon_sym_COLON_DASH] = ACTIONS(5902), - [anon_sym_PERCENT] = ACTIONS(5902), - [anon_sym_DASH] = ACTIONS(5902), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2420] = { - [sym_subscript] = STATE(2570), - [sym_variable_name] = ACTIONS(5908), - [anon_sym_DOLLAR] = ACTIONS(5910), - [anon_sym_DASH] = ACTIONS(5910), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5912), - [anon_sym_STAR] = ACTIONS(5910), - [anon_sym_AT] = ACTIONS(5910), - [anon_sym_QMARK] = ACTIONS(5910), - [anon_sym_0] = ACTIONS(5914), - [anon_sym__] = ACTIONS(5914), - }, - [2421] = { - [sym_concatenation] = STATE(2573), - [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), - [aux_sym_expansion_repeat1] = STATE(2573), - [anon_sym_RBRACE] = ACTIONS(5916), - [anon_sym_EQ] = ACTIONS(5918), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5922), - [anon_sym_COLON] = ACTIONS(5918), - [anon_sym_COLON_QMARK] = ACTIONS(5918), - [anon_sym_COLON_DASH] = ACTIONS(5918), - [anon_sym_PERCENT] = ACTIONS(5918), - [anon_sym_DASH] = ACTIONS(5918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2422] = { - [sym_concatenation] = STATE(2576), - [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), - [aux_sym_expansion_repeat1] = STATE(2576), - [anon_sym_RBRACE] = ACTIONS(5924), - [anon_sym_EQ] = ACTIONS(5926), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5930), - [anon_sym_COLON] = ACTIONS(5926), - [anon_sym_COLON_QMARK] = ACTIONS(5926), - [anon_sym_COLON_DASH] = ACTIONS(5926), - [anon_sym_PERCENT] = ACTIONS(5926), - [anon_sym_DASH] = ACTIONS(5926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2423] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(5932), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [2424] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(5932), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2425] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(5932), - [sym_comment] = ACTIONS(53), - }, - [2426] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(5932), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2427] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(5934), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [2428] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(5934), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2429] = { - [sym_variable_assignment] = STATE(2429), - [sym_subscript] = STATE(2214), - [sym_concatenation] = STATE(2429), - [sym_string] = STATE(2208), - [sym_simple_expansion] = STATE(2208), - [sym_string_expansion] = STATE(2208), - [sym_expansion] = STATE(2208), - [sym_command_substitution] = STATE(2208), - [sym_process_substitution] = STATE(2208), - [aux_sym_declaration_command_repeat1] = STATE(2429), - [sym_variable_name] = ACTIONS(5936), - [anon_sym_esac] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_SEMI_SEMI] = ACTIONS(1514), - [anon_sym_PIPE_AMP] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1514), - [sym__special_characters] = ACTIONS(5939), - [anon_sym_DQUOTE] = ACTIONS(5942), - [anon_sym_DOLLAR] = ACTIONS(5945), - [sym_raw_string] = ACTIONS(5948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5954), - [anon_sym_BQUOTE] = ACTIONS(5957), - [anon_sym_LT_LPAREN] = ACTIONS(5960), - [anon_sym_GT_LPAREN] = ACTIONS(5960), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5963), - [sym_word] = ACTIONS(5948), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_LF] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1514), - }, - [2430] = { - [sym_string] = STATE(2579), - [sym_simple_expansion] = STATE(2579), - [sym_string_expansion] = STATE(2579), - [sym_expansion] = STATE(2579), - [sym_command_substitution] = STATE(2579), - [sym_process_substitution] = STATE(2579), - [sym__special_characters] = ACTIONS(5966), - [anon_sym_DQUOTE] = ACTIONS(5647), - [anon_sym_DOLLAR] = ACTIONS(5197), - [sym_raw_string] = ACTIONS(5966), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5970), - [anon_sym_BQUOTE] = ACTIONS(5972), - [anon_sym_LT_LPAREN] = ACTIONS(5974), - [anon_sym_GT_LPAREN] = ACTIONS(5974), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5966), - }, - [2431] = { - [aux_sym_concatenation_repeat1] = STATE(2580), - [sym__concat] = ACTIONS(5641), - [anon_sym_esac] = ACTIONS(707), - [anon_sym_PIPE] = 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), - [sym__special_characters] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(707), - [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, [2432] = { - [sym__concat] = ACTIONS(709), - [anon_sym_esac] = ACTIONS(711), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_PIPE_AMP] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [sym__special_characters] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(711), - [anon_sym_DOLLAR] = ACTIONS(711), - [sym_raw_string] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), - [anon_sym_BQUOTE] = ACTIONS(711), - [anon_sym_LT_LPAREN] = ACTIONS(711), - [anon_sym_GT_LPAREN] = ACTIONS(711), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), - [sym_word] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_LF] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(711), + [sym_variable_name] = ACTIONS(633), + [anon_sym_esac] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_SEMI_SEMI] = ACTIONS(635), + [anon_sym_PIPE_AMP] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [sym__special_characters] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(635), + [sym_raw_string] = ACTIONS(635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), + [anon_sym_BQUOTE] = ACTIONS(635), + [anon_sym_LT_LPAREN] = ACTIONS(635), + [anon_sym_GT_LPAREN] = ACTIONS(635), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), + [sym_word] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_LF] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(635), }, [2433] = { - [anon_sym_DQUOTE] = ACTIONS(5976), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), + [anon_sym_EQ] = ACTIONS(6123), + [anon_sym_PLUS_EQ] = ACTIONS(6123), + [sym_comment] = ACTIONS(53), }, [2434] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(5976), - [anon_sym_DOLLAR] = ACTIONS(5978), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [sym_variable_assignment] = STATE(2432), + [sym_subscript] = STATE(2433), + [sym_concatenation] = STATE(2432), + [sym_string] = STATE(2426), + [sym_simple_expansion] = STATE(2426), + [sym_string_expansion] = STATE(2426), + [sym_expansion] = STATE(2426), + [sym_command_substitution] = STATE(2426), + [sym_process_substitution] = STATE(2426), + [aux_sym_declaration_command_repeat1] = STATE(2673), + [sym_variable_name] = ACTIONS(5633), + [anon_sym_esac] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_SEMI_SEMI] = ACTIONS(651), + [anon_sym_PIPE_AMP] = ACTIONS(651), + [anon_sym_AMP_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(651), + [sym__special_characters] = ACTIONS(5635), + [anon_sym_DQUOTE] = ACTIONS(5637), + [anon_sym_DOLLAR] = ACTIONS(5639), + [sym_raw_string] = ACTIONS(5641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5643), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5645), + [anon_sym_BQUOTE] = ACTIONS(5647), + [anon_sym_LT_LPAREN] = ACTIONS(5649), + [anon_sym_GT_LPAREN] = ACTIONS(5649), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5651), + [sym_word] = ACTIONS(5641), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_LF] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), }, [2435] = { - [sym__concat] = ACTIONS(741), - [anon_sym_esac] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_PIPE_AMP] = ACTIONS(743), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [sym__special_characters] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LT_LPAREN] = ACTIONS(743), - [anon_sym_GT_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), - [sym_word] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LF] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), + [aux_sym_concatenation_repeat1] = STATE(2675), + [sym__concat] = ACTIONS(6151), + [anon_sym_esac] = ACTIONS(657), + [anon_sym_PIPE] = ACTIONS(657), + [anon_sym_SEMI_SEMI] = ACTIONS(657), + [anon_sym_PIPE_AMP] = ACTIONS(657), + [anon_sym_AMP_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [sym__special_characters] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(657), + [sym_raw_string] = ACTIONS(657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(657), + [anon_sym_BQUOTE] = ACTIONS(657), + [anon_sym_LT_LPAREN] = ACTIONS(657), + [anon_sym_GT_LPAREN] = ACTIONS(657), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(657), + [sym_word] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(657), + [anon_sym_LF] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(657), }, [2436] = { - [sym__concat] = ACTIONS(745), - [anon_sym_esac] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(747), - [anon_sym_DOLLAR] = ACTIONS(747), - [sym_raw_string] = ACTIONS(747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), - [anon_sym_BQUOTE] = ACTIONS(747), - [anon_sym_LT_LPAREN] = ACTIONS(747), - [anon_sym_GT_LPAREN] = ACTIONS(747), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [sym_word] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(2678), + [anon_sym_DQUOTE] = ACTIONS(6153), + [anon_sym_DOLLAR] = ACTIONS(6155), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [2437] = { - [sym__concat] = ACTIONS(749), - [anon_sym_esac] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_PIPE_AMP] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [sym__special_characters] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [anon_sym_LT_LPAREN] = ACTIONS(751), - [anon_sym_GT_LPAREN] = ACTIONS(751), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), - [sym_word] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), + [sym_string] = STATE(2680), + [anon_sym_DQUOTE] = ACTIONS(6157), + [anon_sym_DOLLAR] = ACTIONS(6159), + [sym_raw_string] = ACTIONS(6161), + [anon_sym_POUND] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(6159), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6163), + [anon_sym_STAR] = ACTIONS(6159), + [anon_sym_AT] = ACTIONS(6159), + [anon_sym_QMARK] = ACTIONS(6159), + [anon_sym_0] = ACTIONS(6165), + [anon_sym__] = ACTIONS(6165), }, [2438] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(5980), - [sym_comment] = ACTIONS(53), - }, - [2439] = { - [sym_concatenation] = STATE(2586), - [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), - [aux_sym_expansion_repeat1] = STATE(2586), - [anon_sym_RBRACE] = ACTIONS(5982), - [anon_sym_EQ] = ACTIONS(5984), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(5986), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(5988), - [anon_sym_COLON] = ACTIONS(5984), - [anon_sym_COLON_QMARK] = ACTIONS(5984), - [anon_sym_COLON_DASH] = ACTIONS(5984), - [anon_sym_PERCENT] = ACTIONS(5984), - [anon_sym_DASH] = ACTIONS(5984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2440] = { - [sym_subscript] = STATE(2590), - [sym_variable_name] = ACTIONS(5990), - [anon_sym_DOLLAR] = ACTIONS(5992), - [anon_sym_DASH] = ACTIONS(5992), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5994), - [anon_sym_STAR] = ACTIONS(5992), - [anon_sym_AT] = ACTIONS(5992), - [anon_sym_QMARK] = ACTIONS(5992), - [anon_sym_0] = ACTIONS(5996), - [anon_sym__] = ACTIONS(5996), - }, - [2441] = { - [sym_concatenation] = STATE(2593), - [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), - [aux_sym_expansion_repeat1] = STATE(2593), - [anon_sym_RBRACE] = ACTIONS(5998), - [anon_sym_EQ] = ACTIONS(6000), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6004), - [anon_sym_COLON] = ACTIONS(6000), - [anon_sym_COLON_QMARK] = ACTIONS(6000), - [anon_sym_COLON_DASH] = ACTIONS(6000), - [anon_sym_PERCENT] = ACTIONS(6000), - [anon_sym_DASH] = ACTIONS(6000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2442] = { - [sym_concatenation] = STATE(2596), - [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), - [aux_sym_expansion_repeat1] = STATE(2596), - [anon_sym_RBRACE] = ACTIONS(6006), - [anon_sym_EQ] = ACTIONS(6008), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6012), - [anon_sym_COLON] = ACTIONS(6008), - [anon_sym_COLON_QMARK] = ACTIONS(6008), - [anon_sym_COLON_DASH] = ACTIONS(6008), - [anon_sym_PERCENT] = ACTIONS(6008), - [anon_sym_DASH] = ACTIONS(6008), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2443] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(6014), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [2444] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(6014), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2445] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(6014), - [sym_comment] = ACTIONS(53), - }, - [2446] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(6014), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2447] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(6016), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), - }, - [2448] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(6016), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2449] = { - [sym_concatenation] = STATE(2449), - [sym_string] = STATE(2219), - [sym_simple_expansion] = STATE(2219), - [sym_string_expansion] = STATE(2219), - [sym_expansion] = STATE(2219), - [sym_command_substitution] = STATE(2219), - [sym_process_substitution] = STATE(2219), - [aux_sym_unset_command_repeat1] = STATE(2449), - [anon_sym_esac] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_SEMI_SEMI] = ACTIONS(1597), - [anon_sym_PIPE_AMP] = ACTIONS(1597), - [anon_sym_AMP_AMP] = ACTIONS(1597), - [anon_sym_PIPE_PIPE] = ACTIONS(1597), - [sym__special_characters] = ACTIONS(6018), - [anon_sym_DQUOTE] = ACTIONS(6021), - [anon_sym_DOLLAR] = ACTIONS(6024), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6036), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6042), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_LF] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1597), - }, - [2450] = { - [aux_sym_concatenation_repeat1] = STATE(2450), - [sym__simple_heredoc_body] = ACTIONS(1672), - [sym__heredoc_body_beginning] = ACTIONS(1672), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(1676), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_EQ_TILDE] = ACTIONS(1674), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_LT_LT_LT] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [2451] = { - [sym_compound_statement] = STATE(2599), - [anon_sym_LBRACE] = ACTIONS(457), - [sym_comment] = ACTIONS(53), - }, - [2452] = { - [anon_sym_esac] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(2054), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(2054), - [anon_sym_PIPE_PIPE] = ACTIONS(2054), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_LF] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2054), - }, - [2453] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(2054), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(2054), - [anon_sym_PIPE_PIPE] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_LF] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2054), - }, - [2454] = { - [sym_concatenation] = STATE(1002), - [sym_string] = STATE(2601), - [sym_simple_expansion] = STATE(2601), - [sym_string_expansion] = STATE(2601), - [sym_expansion] = STATE(2601), - [sym_command_substitution] = STATE(2601), - [sym_process_substitution] = STATE(2601), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6047), - }, - [2455] = { - [aux_sym_concatenation_repeat1] = STATE(2226), - [sym__simple_heredoc_body] = ACTIONS(2086), - [sym__heredoc_body_beginning] = ACTIONS(2086), - [sym_file_descriptor] = ACTIONS(2086), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_SEMI_SEMI] = ACTIONS(2088), - [anon_sym_PIPE_AMP] = ACTIONS(2088), - [anon_sym_AMP_AMP] = ACTIONS(2088), - [anon_sym_PIPE_PIPE] = ACTIONS(2088), - [anon_sym_EQ_TILDE] = ACTIONS(2088), - [anon_sym_EQ_EQ] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_GT] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(2088), - [anon_sym_AMP_GT] = ACTIONS(2088), - [anon_sym_AMP_GT_GT] = ACTIONS(2088), - [anon_sym_LT_AMP] = ACTIONS(2088), - [anon_sym_GT_AMP] = ACTIONS(2088), - [anon_sym_LT_LT] = ACTIONS(2088), - [anon_sym_LT_LT_DASH] = ACTIONS(2088), - [anon_sym_LT_LT_LT] = ACTIONS(2088), - [sym__special_characters] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2088), - [sym_raw_string] = ACTIONS(2088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2088), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2088), - [anon_sym_BQUOTE] = ACTIONS(2088), - [anon_sym_LT_LPAREN] = ACTIONS(2088), - [anon_sym_GT_LPAREN] = ACTIONS(2088), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LF] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2088), - }, - [2456] = { - [aux_sym_concatenation_repeat1] = STATE(2226), - [sym__simple_heredoc_body] = ACTIONS(2090), - [sym__heredoc_body_beginning] = ACTIONS(2090), - [sym_file_descriptor] = ACTIONS(2090), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_SEMI_SEMI] = ACTIONS(2092), - [anon_sym_PIPE_AMP] = ACTIONS(2092), - [anon_sym_AMP_AMP] = ACTIONS(2092), - [anon_sym_PIPE_PIPE] = ACTIONS(2092), - [anon_sym_EQ_TILDE] = ACTIONS(2092), - [anon_sym_EQ_EQ] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2092), - [anon_sym_AMP_GT] = ACTIONS(2092), - [anon_sym_AMP_GT_GT] = ACTIONS(2092), - [anon_sym_LT_AMP] = ACTIONS(2092), - [anon_sym_GT_AMP] = ACTIONS(2092), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2092), - [anon_sym_LT_LT_LT] = ACTIONS(2092), - [sym__special_characters] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [anon_sym_DOLLAR] = ACTIONS(2092), - [sym_raw_string] = ACTIONS(2092), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2092), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2092), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LT_LPAREN] = ACTIONS(2092), - [anon_sym_GT_LPAREN] = ACTIONS(2092), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_LF] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2092), - }, - [2457] = { - [aux_sym_concatenation_repeat1] = STATE(2602), - [sym__simple_heredoc_body] = ACTIONS(671), - [sym__heredoc_body_beginning] = ACTIONS(671), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(223), + [aux_sym_concatenation_repeat1] = STATE(2675), + [sym__concat] = ACTIONS(6151), [anon_sym_esac] = ACTIONS(675), [anon_sym_PIPE] = ACTIONS(675), [anon_sym_SEMI_SEMI] = ACTIONS(675), [anon_sym_PIPE_AMP] = ACTIONS(675), [anon_sym_AMP_AMP] = ACTIONS(675), [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_LT_LT_LT] = ACTIONS(675), - [sym_comment] = ACTIONS(177), + [sym__special_characters] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(675), + [anon_sym_DOLLAR] = ACTIONS(675), + [sym_raw_string] = ACTIONS(675), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_BQUOTE] = ACTIONS(675), + [anon_sym_LT_LPAREN] = ACTIONS(675), + [anon_sym_GT_LPAREN] = ACTIONS(675), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), + [sym_word] = ACTIONS(675), [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(671), + [anon_sym_LF] = ACTIONS(677), [anon_sym_AMP] = ACTIONS(675), }, + [2439] = { + [sym_subscript] = STATE(2686), + [sym_variable_name] = ACTIONS(6167), + [anon_sym_DOLLAR] = ACTIONS(6169), + [anon_sym_POUND] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(6169), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6173), + [anon_sym_STAR] = ACTIONS(6169), + [anon_sym_AT] = ACTIONS(6169), + [anon_sym_QMARK] = ACTIONS(6169), + [anon_sym_0] = ACTIONS(6175), + [anon_sym__] = ACTIONS(6175), + }, + [2440] = { + [sym_for_statement] = STATE(2687), + [sym_c_style_for_statement] = STATE(2687), + [sym_while_statement] = STATE(2687), + [sym_if_statement] = STATE(2687), + [sym_case_statement] = STATE(2687), + [sym_function_definition] = STATE(2687), + [sym_subshell] = STATE(2687), + [sym_pipeline] = STATE(2687), + [sym_list] = STATE(2687), + [sym_negated_command] = STATE(2687), + [sym_test_command] = STATE(2687), + [sym_declaration_command] = STATE(2687), + [sym_unset_command] = STATE(2687), + [sym_command] = STATE(2687), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(2688), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [2441] = { + [sym_for_statement] = STATE(2689), + [sym_c_style_for_statement] = STATE(2689), + [sym_while_statement] = STATE(2689), + [sym_if_statement] = STATE(2689), + [sym_case_statement] = STATE(2689), + [sym_function_definition] = STATE(2689), + [sym_subshell] = STATE(2689), + [sym_pipeline] = STATE(2689), + [sym_list] = STATE(2689), + [sym_negated_command] = STATE(2689), + [sym_test_command] = STATE(2689), + [sym_declaration_command] = STATE(2689), + [sym_unset_command] = STATE(2689), + [sym_command] = STATE(2689), + [sym_command_name] = STATE(182), + [sym_variable_assignment] = STATE(2690), + [sym_subscript] = STATE(184), + [sym_file_redirect] = STATE(185), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(179), + [sym_simple_expansion] = STATE(179), + [sym_string_expansion] = STATE(179), + [sym_expansion] = STATE(179), + [sym_command_substitution] = STATE(179), + [sym_process_substitution] = STATE(179), + [aux_sym_command_repeat1] = STATE(185), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(305), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(325), + }, + [2442] = { + [sym_for_statement] = STATE(2691), + [sym_c_style_for_statement] = STATE(2691), + [sym_while_statement] = STATE(2691), + [sym_if_statement] = STATE(2691), + [sym_case_statement] = STATE(2691), + [sym_function_definition] = STATE(2691), + [sym_subshell] = STATE(2691), + [sym_pipeline] = STATE(2691), + [sym_list] = STATE(2691), + [sym_negated_command] = STATE(2691), + [sym_test_command] = STATE(2691), + [sym_declaration_command] = STATE(2691), + [sym_unset_command] = STATE(2691), + [sym_command] = STATE(2691), + [sym_command_name] = STATE(165), + [sym_variable_assignment] = STATE(2692), + [sym_subscript] = STATE(167), + [sym_file_redirect] = STATE(169), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(158), + [sym_simple_expansion] = STATE(158), + [sym_string_expansion] = STATE(158), + [sym_expansion] = STATE(158), + [sym_command_substitution] = STATE(158), + [sym_process_substitution] = STATE(158), + [aux_sym_command_repeat1] = STATE(169), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_function] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [anon_sym_declare] = ACTIONS(283), + [anon_sym_typeset] = ACTIONS(283), + [anon_sym_export] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_unset] = ACTIONS(285), + [anon_sym_unsetenv] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [sym_raw_string] = ACTIONS(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), + [anon_sym_BQUOTE] = ACTIONS(299), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(303), + }, + [2443] = { + [anon_sym_esac] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [sym__special_characters] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), + [sym_word] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(689), + }, + [2444] = { + [sym_concatenation] = STATE(2693), + [sym_string] = STATE(2438), + [sym_simple_expansion] = STATE(2438), + [sym_string_expansion] = STATE(2438), + [sym_expansion] = STATE(2438), + [sym_command_substitution] = STATE(2438), + [sym_process_substitution] = STATE(2438), + [aux_sym_unset_command_repeat1] = STATE(2693), + [anon_sym_esac] = ACTIONS(693), + [anon_sym_PIPE] = ACTIONS(693), + [anon_sym_SEMI_SEMI] = ACTIONS(693), + [anon_sym_PIPE_AMP] = ACTIONS(693), + [anon_sym_AMP_AMP] = ACTIONS(693), + [anon_sym_PIPE_PIPE] = ACTIONS(693), + [sym__special_characters] = ACTIONS(5653), + [anon_sym_DQUOTE] = ACTIONS(5655), + [anon_sym_DOLLAR] = ACTIONS(5657), + [sym_raw_string] = ACTIONS(5659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5663), + [anon_sym_BQUOTE] = ACTIONS(5665), + [anon_sym_LT_LPAREN] = ACTIONS(5667), + [anon_sym_GT_LPAREN] = ACTIONS(5667), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5669), + [sym_word] = ACTIONS(5659), + [anon_sym_SEMI] = ACTIONS(693), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(693), + }, + [2445] = { + [aux_sym_concatenation_repeat1] = STATE(2694), + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_EQ_TILDE] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_LT_LT_LT] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [2446] = { + [anon_sym_RPAREN] = ACTIONS(6177), + [sym_comment] = ACTIONS(53), + }, + [2447] = { + [sym_for_statement] = STATE(554), + [sym_c_style_for_statement] = STATE(554), + [sym_while_statement] = STATE(554), + [sym_if_statement] = STATE(554), + [sym_case_statement] = STATE(554), + [sym_function_definition] = STATE(554), + [sym_subshell] = STATE(554), + [sym_pipeline] = STATE(554), + [sym_list] = STATE(554), + [sym_negated_command] = STATE(554), + [sym_test_command] = STATE(554), + [sym_declaration_command] = STATE(554), + [sym_unset_command] = STATE(554), + [sym_command] = STATE(554), + [sym_command_name] = STATE(2083), + [sym_variable_assignment] = STATE(555), + [sym_subscript] = STATE(2085), + [sym_file_redirect] = STATE(2087), + [sym_concatenation] = STATE(30), + [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), + [aux_sym_command_repeat1] = STATE(2087), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4774), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), + [anon_sym_declare] = ACTIONS(4790), + [anon_sym_typeset] = ACTIONS(4790), + [anon_sym_export] = ACTIONS(4790), + [anon_sym_readonly] = ACTIONS(4790), + [anon_sym_local] = ACTIONS(4790), + [anon_sym_unset] = ACTIONS(4792), + [anon_sym_unsetenv] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4798), + }, + [2448] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_esac] = ACTIONS(6179), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(6181), + [anon_sym_DQUOTE] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6181), + [sym_raw_string] = ACTIONS(6183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6183), + [anon_sym_BQUOTE] = ACTIONS(6183), + [anon_sym_LT_LPAREN] = ACTIONS(6183), + [anon_sym_GT_LPAREN] = ACTIONS(6183), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6181), + }, + [2449] = { + [sym_for_statement] = STATE(2696), + [sym_c_style_for_statement] = STATE(2696), + [sym_while_statement] = STATE(2696), + [sym_if_statement] = STATE(2696), + [sym_case_statement] = STATE(2696), + [sym_function_definition] = STATE(2696), + [sym_subshell] = STATE(2696), + [sym_pipeline] = STATE(2696), + [sym_list] = STATE(2696), + [sym_negated_command] = STATE(2696), + [sym_test_command] = STATE(2696), + [sym_declaration_command] = STATE(2696), + [sym_unset_command] = STATE(2696), + [sym_command] = STATE(2696), + [sym_command_name] = STATE(2083), + [sym_variable_assignment] = STATE(2697), + [sym_subscript] = STATE(2085), + [sym_file_redirect] = STATE(2087), + [sym_concatenation] = STATE(30), + [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), + [aux_sym_command_repeat1] = STATE(2087), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4774), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), + [anon_sym_declare] = ACTIONS(4790), + [anon_sym_typeset] = ACTIONS(4790), + [anon_sym_export] = ACTIONS(4790), + [anon_sym_readonly] = ACTIONS(4790), + [anon_sym_local] = ACTIONS(4790), + [anon_sym_unset] = ACTIONS(4792), + [anon_sym_unsetenv] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4798), + }, + [2450] = { + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_GT_GT] = ACTIONS(6187), + [anon_sym_AMP_GT] = ACTIONS(6185), + [anon_sym_AMP_GT_GT] = ACTIONS(6187), + [anon_sym_LT_AMP] = ACTIONS(6187), + [anon_sym_GT_AMP] = ACTIONS(6187), + [sym_comment] = ACTIONS(53), + }, + [2451] = { + [sym_concatenation] = STATE(565), + [sym_string] = STATE(2700), + [sym_simple_expansion] = STATE(2700), + [sym_string_expansion] = STATE(2700), + [sym_expansion] = STATE(2700), + [sym_command_substitution] = STATE(2700), + [sym_process_substitution] = STATE(2700), + [sym__special_characters] = ACTIONS(6189), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(6191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(6191), + [sym_regex] = ACTIONS(1019), + }, + [2452] = { + [sym_concatenation] = STATE(568), + [sym_string] = STATE(2702), + [sym_simple_expansion] = STATE(2702), + [sym_string_expansion] = STATE(2702), + [sym_expansion] = STATE(2702), + [sym_command_substitution] = STATE(2702), + [sym_process_substitution] = STATE(2702), + [sym__special_characters] = ACTIONS(6193), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(6195), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6195), + }, + [2453] = { + [sym_concatenation] = STATE(572), + [sym_string] = STATE(2704), + [sym_simple_expansion] = STATE(2704), + [sym_string_expansion] = STATE(2704), + [sym_expansion] = STATE(2704), + [sym_command_substitution] = STATE(2704), + [sym_process_substitution] = STATE(2704), + [sym__special_characters] = ACTIONS(6197), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(6199), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6199), + }, + [2454] = { + [aux_sym_concatenation_repeat1] = STATE(2445), + [sym__simple_heredoc_body] = ACTIONS(1031), + [sym__heredoc_body_beginning] = ACTIONS(1031), + [sym_file_descriptor] = ACTIONS(1031), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [sym__special_characters] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1033), + }, + [2455] = { + [aux_sym_concatenation_repeat1] = STATE(2445), + [sym__simple_heredoc_body] = ACTIONS(1035), + [sym__heredoc_body_beginning] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [sym__special_characters] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1037), + }, + [2456] = { + [sym_file_redirect] = STATE(2705), + [sym_heredoc_redirect] = STATE(2705), + [sym_heredoc_body] = STATE(573), + [sym_herestring_redirect] = STATE(2705), + [aux_sym_while_statement_repeat1] = STATE(2705), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5679), + [anon_sym_esac] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5683), + [anon_sym_GT_GT] = ACTIONS(5683), + [anon_sym_AMP_GT] = ACTIONS(5683), + [anon_sym_AMP_GT_GT] = ACTIONS(5683), + [anon_sym_LT_AMP] = ACTIONS(5683), + [anon_sym_GT_AMP] = ACTIONS(5683), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(5685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1039), + }, + [2457] = { + [sym_file_redirect] = STATE(2706), + [sym_heredoc_redirect] = STATE(2706), + [sym_heredoc_body] = STATE(573), + [sym_herestring_redirect] = STATE(2706), + [sym_concatenation] = STATE(202), + [sym_string] = STATE(2455), + [sym_simple_expansion] = STATE(2455), + [sym_string_expansion] = STATE(2455), + [sym_expansion] = STATE(2455), + [sym_command_substitution] = STATE(2455), + [sym_process_substitution] = STATE(2455), + [aux_sym_while_statement_repeat1] = STATE(2706), + [aux_sym_command_repeat2] = STATE(2707), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5679), + [anon_sym_esac] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_EQ_TILDE] = ACTIONS(5681), + [anon_sym_EQ_EQ] = ACTIONS(5681), + [anon_sym_LT] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5683), + [anon_sym_GT_GT] = ACTIONS(5683), + [anon_sym_AMP_GT] = ACTIONS(5683), + [anon_sym_AMP_GT_GT] = ACTIONS(5683), + [anon_sym_LT_AMP] = ACTIONS(5683), + [anon_sym_GT_AMP] = ACTIONS(5683), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(5685), + [sym__special_characters] = ACTIONS(5687), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5689), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1039), + }, [2458] = { - [aux_sym_concatenation_repeat1] = STATE(2602), - [sym__simple_heredoc_body] = ACTIONS(689), - [sym__heredoc_body_beginning] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_SEMI_SEMI] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(691), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(691), - [anon_sym_LT_AMP] = ACTIONS(691), - [anon_sym_GT_AMP] = ACTIONS(691), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(691), - [anon_sym_LT_LT_LT] = ACTIONS(691), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LF] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), + [anon_sym_esac] = ACTIONS(6179), + [sym__special_characters] = ACTIONS(6183), + [anon_sym_DQUOTE] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6181), + [sym_raw_string] = ACTIONS(6183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6183), + [anon_sym_BQUOTE] = ACTIONS(6183), + [anon_sym_LT_LPAREN] = ACTIONS(6183), + [anon_sym_GT_LPAREN] = ACTIONS(6183), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6181), }, [2459] = { - [aux_sym_concatenation_repeat1] = STATE(2602), - [sym__simple_heredoc_body] = ACTIONS(2098), - [sym__heredoc_body_beginning] = ACTIONS(2098), - [sym_file_descriptor] = ACTIONS(2098), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SEMI_SEMI] = ACTIONS(2100), - [anon_sym_PIPE_AMP] = ACTIONS(2100), - [anon_sym_AMP_AMP] = ACTIONS(2100), - [anon_sym_PIPE_PIPE] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2100), - [anon_sym_AMP_GT] = ACTIONS(2100), - [anon_sym_AMP_GT_GT] = ACTIONS(2100), - [anon_sym_LT_AMP] = ACTIONS(2100), - [anon_sym_GT_AMP] = ACTIONS(2100), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_LT_LT_DASH] = ACTIONS(2100), - [anon_sym_LT_LT_LT] = ACTIONS(2100), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_LF] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_esac] = ACTIONS(6179), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(6201), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2460] = { - [aux_sym_concatenation_repeat1] = STATE(2602), - [sym__simple_heredoc_body] = ACTIONS(2102), - [sym__heredoc_body_beginning] = ACTIONS(2102), - [sym_file_descriptor] = ACTIONS(2102), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_SEMI_SEMI] = ACTIONS(2104), - [anon_sym_PIPE_AMP] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2104), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2104), - [anon_sym_LT_AMP] = ACTIONS(2104), - [anon_sym_GT_AMP] = ACTIONS(2104), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2104), - [anon_sym_LT_LT_LT] = ACTIONS(2104), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_LF] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2104), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_esac] = ACTIONS(6179), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(6201), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2461] = { - [sym_file_redirect] = STATE(2461), - [sym_heredoc_redirect] = STATE(2461), - [sym_herestring_redirect] = STATE(2461), - [aux_sym_while_statement_repeat1] = STATE(2461), - [sym__simple_heredoc_body] = ACTIONS(2110), - [sym__heredoc_body_beginning] = ACTIONS(2110), - [sym_file_descriptor] = ACTIONS(6049), - [anon_sym_esac] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_SEMI_SEMI] = ACTIONS(2115), - [anon_sym_PIPE_AMP] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(6052), - [anon_sym_GT] = ACTIONS(6052), - [anon_sym_GT_GT] = ACTIONS(6052), - [anon_sym_AMP_GT] = ACTIONS(6052), - [anon_sym_AMP_GT_GT] = ACTIONS(6052), - [anon_sym_LT_AMP] = ACTIONS(6052), - [anon_sym_GT_AMP] = ACTIONS(6052), - [anon_sym_LT_LT] = ACTIONS(2120), - [anon_sym_LT_LT_DASH] = ACTIONS(2120), - [anon_sym_LT_LT_LT] = ACTIONS(6055), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_LF] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2115), - }, - [2462] = { - [sym_file_redirect] = STATE(2461), - [sym_heredoc_redirect] = STATE(2461), - [sym_heredoc_body] = STATE(1004), - [sym_herestring_redirect] = STATE(2461), - [aux_sym_while_statement_repeat1] = STATE(2461), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5219), - [anon_sym_esac] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_SEMI_SEMI] = ACTIONS(2106), - [anon_sym_PIPE_AMP] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_PIPE_PIPE] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(5223), - [anon_sym_GT] = ACTIONS(5223), - [anon_sym_GT_GT] = ACTIONS(5223), - [anon_sym_AMP_GT] = ACTIONS(5223), - [anon_sym_AMP_GT_GT] = ACTIONS(5223), - [anon_sym_LT_AMP] = ACTIONS(5223), - [anon_sym_GT_AMP] = ACTIONS(5223), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5225), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2106), - }, - [2463] = { - [sym_concatenation] = STATE(2463), - [sym_string] = STATE(2236), - [sym_simple_expansion] = STATE(2236), - [sym_string_expansion] = STATE(2236), - [sym_expansion] = STATE(2236), - [sym_command_substitution] = STATE(2236), - [sym_process_substitution] = STATE(2236), - [aux_sym_command_repeat2] = STATE(2463), - [sym__simple_heredoc_body] = ACTIONS(2090), - [sym__heredoc_body_beginning] = ACTIONS(2090), - [sym_file_descriptor] = ACTIONS(2090), - [anon_sym_esac] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_SEMI_SEMI] = ACTIONS(2092), - [anon_sym_PIPE_AMP] = ACTIONS(2092), - [anon_sym_AMP_AMP] = ACTIONS(2092), - [anon_sym_PIPE_PIPE] = ACTIONS(2092), - [anon_sym_EQ_TILDE] = ACTIONS(6058), - [anon_sym_EQ_EQ] = ACTIONS(6058), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2092), - [anon_sym_AMP_GT] = ACTIONS(2092), - [anon_sym_AMP_GT_GT] = ACTIONS(2092), - [anon_sym_LT_AMP] = ACTIONS(2092), - [anon_sym_GT_AMP] = ACTIONS(2092), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2092), - [anon_sym_LT_LT_LT] = ACTIONS(2092), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2135), - [sym_raw_string] = ACTIONS(6064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2141), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2144), - [anon_sym_BQUOTE] = ACTIONS(2147), - [anon_sym_LT_LPAREN] = ACTIONS(2150), - [anon_sym_GT_LPAREN] = ACTIONS(2150), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(6064), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_LF] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2092), - }, - [2464] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_esac] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(6069), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6069), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6069), - }, - [2465] = { - [sym_file_redirect] = STATE(2603), - [sym_heredoc_redirect] = STATE(2603), - [sym_heredoc_body] = STATE(1004), - [sym_herestring_redirect] = STATE(2603), - [sym_concatenation] = STATE(2463), - [sym_string] = STATE(2236), - [sym_simple_expansion] = STATE(2236), - [sym_string_expansion] = STATE(2236), - [sym_expansion] = STATE(2236), - [sym_command_substitution] = STATE(2236), - [sym_process_substitution] = STATE(2236), - [aux_sym_while_statement_repeat1] = STATE(2603), - [aux_sym_command_repeat2] = STATE(2463), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5219), - [anon_sym_esac] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_SEMI_SEMI] = ACTIONS(2106), - [anon_sym_PIPE_AMP] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_PIPE_PIPE] = ACTIONS(2106), - [anon_sym_EQ_TILDE] = ACTIONS(5221), - [anon_sym_EQ_EQ] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5223), - [anon_sym_GT] = ACTIONS(5223), - [anon_sym_GT_GT] = ACTIONS(5223), - [anon_sym_AMP_GT] = ACTIONS(5223), - [anon_sym_AMP_GT_GT] = ACTIONS(5223), - [anon_sym_LT_AMP] = ACTIONS(5223), - [anon_sym_GT_AMP] = ACTIONS(5223), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5225), - [sym__special_characters] = ACTIONS(5227), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5229), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5229), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2106), - }, - [2466] = { - [anon_sym_esac] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6071), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6069), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6069), - }, - [2467] = { - [anon_sym_esac] = ACTIONS(6067), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2468] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(6067), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2469] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_esac] = ACTIONS(6075), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6079), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6079), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6079), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6079), - [anon_sym_BQUOTE] = ACTIONS(6079), - [anon_sym_LT_LPAREN] = ACTIONS(6079), - [anon_sym_GT_LPAREN] = ACTIONS(6079), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6077), - }, - [2470] = { - [anon_sym_esac] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6079), - [anon_sym_DQUOTE] = ACTIONS(6079), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6079), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6079), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6079), - [anon_sym_BQUOTE] = ACTIONS(6079), - [anon_sym_LT_LPAREN] = ACTIONS(6079), - [anon_sym_GT_LPAREN] = ACTIONS(6079), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6077), - }, - [2471] = { - [anon_sym_esac] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(6081), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2472] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_SEMI_SEMI] = ACTIONS(6081), - [anon_sym_PIPE_AMP] = ACTIONS(5213), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2473] = { - [sym__special_characters] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5169), - [sym_raw_string] = ACTIONS(5167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5167), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LT_LPAREN] = ACTIONS(5167), - [anon_sym_GT_LPAREN] = ACTIONS(5167), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5167), - }, - [2474] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6083), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2475] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6083), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2476] = { - [sym__terminated_statement] = STATE(2610), - [sym_for_statement] = STATE(2608), - [sym_while_statement] = STATE(2608), - [sym_if_statement] = STATE(2608), - [sym_case_statement] = STATE(2608), - [sym_function_definition] = STATE(2608), - [sym_subshell] = STATE(2608), - [sym_pipeline] = STATE(2608), - [sym_list] = STATE(2608), - [sym_negated_command] = STATE(2608), - [sym_test_command] = STATE(2608), - [sym_declaration_command] = STATE(2608), - [sym_unset_command] = STATE(2608), - [sym_command] = STATE(2608), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2609), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2610), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6085), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [2477] = { - [sym__terminated_statement] = STATE(2611), - [sym_for_statement] = STATE(2608), - [sym_while_statement] = STATE(2608), - [sym_if_statement] = STATE(2608), - [sym_case_statement] = STATE(2608), - [sym_function_definition] = STATE(2608), - [sym_subshell] = STATE(2608), - [sym_pipeline] = STATE(2608), - [sym_list] = STATE(2608), - [sym_negated_command] = STATE(2608), - [sym_test_command] = STATE(2608), - [sym_declaration_command] = STATE(2608), - [sym_unset_command] = STATE(2608), - [sym_command] = STATE(2608), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2609), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2611), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6085), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [2478] = { - [sym__special_characters] = ACTIONS(5240), - [anon_sym_DQUOTE] = ACTIONS(5240), - [anon_sym_DOLLAR] = ACTIONS(5242), - [sym_raw_string] = ACTIONS(5240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5240), - [anon_sym_BQUOTE] = ACTIONS(5240), - [anon_sym_LT_LPAREN] = ACTIONS(5240), - [anon_sym_GT_LPAREN] = ACTIONS(5240), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5240), - }, - [2479] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6087), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2480] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6087), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2481] = { - [sym__terminated_statement] = STATE(2610), - [sym_for_statement] = STATE(2614), - [sym_while_statement] = STATE(2614), - [sym_if_statement] = STATE(2614), - [sym_case_statement] = STATE(2614), - [sym_function_definition] = STATE(2614), - [sym_subshell] = STATE(2614), - [sym_pipeline] = STATE(2614), - [sym_list] = STATE(2614), - [sym_negated_command] = STATE(2614), - [sym_test_command] = STATE(2614), - [sym_declaration_command] = STATE(2614), - [sym_unset_command] = STATE(2614), - [sym_command] = STATE(2614), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2615), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2610), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6089), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [2482] = { - [sym__terminated_statement] = STATE(2616), - [sym_for_statement] = STATE(2614), - [sym_while_statement] = STATE(2614), - [sym_if_statement] = STATE(2614), - [sym_case_statement] = STATE(2614), - [sym_function_definition] = STATE(2614), - [sym_subshell] = STATE(2614), - [sym_pipeline] = STATE(2614), - [sym_list] = STATE(2614), - [sym_negated_command] = STATE(2614), - [sym_test_command] = STATE(2614), - [sym_declaration_command] = STATE(2614), - [sym_unset_command] = STATE(2614), - [sym_command] = STATE(2614), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2615), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2616), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6089), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [2483] = { - [sym_file_descriptor] = ACTIONS(3905), - [sym__concat] = ACTIONS(3905), - [anon_sym_esac] = ACTIONS(3907), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3907), - [anon_sym_SEMI_SEMI] = ACTIONS(3907), - [anon_sym_PIPE_AMP] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_AMP_GT] = ACTIONS(3907), - [anon_sym_AMP_GT_GT] = ACTIONS(3907), - [anon_sym_LT_AMP] = ACTIONS(3907), - [anon_sym_GT_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3907), - [anon_sym_LT_LT_DASH] = ACTIONS(3907), - [anon_sym_LT_LT_LT] = ACTIONS(3907), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3907), - [anon_sym_LF] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3907), - }, - [2484] = { - [sym_file_descriptor] = ACTIONS(3913), - [sym__concat] = ACTIONS(3913), - [anon_sym_esac] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_AMP_GT] = ACTIONS(3915), - [anon_sym_AMP_GT_GT] = ACTIONS(3915), - [anon_sym_LT_AMP] = ACTIONS(3915), - [anon_sym_GT_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_LT_LT_DASH] = ACTIONS(3915), - [anon_sym_LT_LT_LT] = ACTIONS(3915), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3915), - }, - [2485] = { - [sym_file_descriptor] = ACTIONS(4000), - [sym__concat] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4002), - [anon_sym_SEMI_SEMI] = ACTIONS(4002), - [anon_sym_PIPE_AMP] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_LT] = ACTIONS(4002), - [anon_sym_GT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4002), - [anon_sym_AMP_GT] = ACTIONS(4002), - [anon_sym_AMP_GT_GT] = ACTIONS(4002), - [anon_sym_LT_AMP] = ACTIONS(4002), - [anon_sym_GT_AMP] = ACTIONS(4002), - [anon_sym_LT_LT] = ACTIONS(4002), - [anon_sym_LT_LT_DASH] = ACTIONS(4002), - [anon_sym_LT_LT_LT] = ACTIONS(4002), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_LF] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4002), - }, - [2486] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6091), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2487] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6093), - [sym_comment] = ACTIONS(53), - }, - [2488] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6095), - [sym_comment] = ACTIONS(53), - }, - [2489] = { - [anon_sym_RBRACE] = ACTIONS(6095), - [sym_comment] = ACTIONS(53), - }, - [2490] = { - [sym_concatenation] = STATE(2621), - [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), - [aux_sym_expansion_repeat1] = STATE(2621), - [anon_sym_RBRACE] = ACTIONS(6097), - [anon_sym_EQ] = ACTIONS(6099), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6099), - [anon_sym_COLON_QMARK] = ACTIONS(6099), - [anon_sym_COLON_DASH] = ACTIONS(6099), - [anon_sym_PERCENT] = ACTIONS(6099), - [anon_sym_DASH] = ACTIONS(6099), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2491] = { - [sym_file_descriptor] = ACTIONS(4016), - [sym__concat] = ACTIONS(4016), - [anon_sym_esac] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_SEMI_SEMI] = ACTIONS(4018), - [anon_sym_PIPE_AMP] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4018), - [anon_sym_AMP_GT] = ACTIONS(4018), - [anon_sym_AMP_GT_GT] = ACTIONS(4018), - [anon_sym_LT_AMP] = ACTIONS(4018), - [anon_sym_GT_AMP] = ACTIONS(4018), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_LT_LT_DASH] = ACTIONS(4018), - [anon_sym_LT_LT_LT] = ACTIONS(4018), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4018), - }, - [2492] = { - [sym_concatenation] = STATE(2623), - [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), - [aux_sym_expansion_repeat1] = STATE(2623), - [anon_sym_RBRACE] = ACTIONS(6103), - [anon_sym_EQ] = ACTIONS(6105), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6107), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6105), - [anon_sym_COLON_QMARK] = ACTIONS(6105), - [anon_sym_COLON_DASH] = ACTIONS(6105), - [anon_sym_PERCENT] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2493] = { - [sym_file_descriptor] = ACTIONS(4026), - [sym__concat] = ACTIONS(4026), - [anon_sym_esac] = ACTIONS(4028), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_RPAREN] = ACTIONS(4028), - [anon_sym_SEMI_SEMI] = ACTIONS(4028), - [anon_sym_PIPE_AMP] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_PIPE_PIPE] = ACTIONS(4028), - [anon_sym_LT] = ACTIONS(4028), - [anon_sym_GT] = ACTIONS(4028), - [anon_sym_GT_GT] = ACTIONS(4028), - [anon_sym_AMP_GT] = ACTIONS(4028), - [anon_sym_AMP_GT_GT] = ACTIONS(4028), - [anon_sym_LT_AMP] = ACTIONS(4028), - [anon_sym_GT_AMP] = ACTIONS(4028), - [anon_sym_LT_LT] = ACTIONS(4028), - [anon_sym_LT_LT_DASH] = ACTIONS(4028), - [anon_sym_LT_LT_LT] = ACTIONS(4028), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym_LF] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4028), - }, - [2494] = { - [sym_concatenation] = STATE(2625), - [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), - [aux_sym_expansion_repeat1] = STATE(2625), - [anon_sym_RBRACE] = ACTIONS(6109), - [anon_sym_EQ] = ACTIONS(6111), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6113), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6111), - [anon_sym_COLON_QMARK] = ACTIONS(6111), - [anon_sym_COLON_DASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2495] = { - [sym_file_descriptor] = ACTIONS(4036), - [sym__concat] = ACTIONS(4036), - [anon_sym_esac] = ACTIONS(4038), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_RPAREN] = ACTIONS(4038), - [anon_sym_SEMI_SEMI] = ACTIONS(4038), - [anon_sym_PIPE_AMP] = ACTIONS(4038), - [anon_sym_AMP_AMP] = ACTIONS(4038), - [anon_sym_PIPE_PIPE] = ACTIONS(4038), - [anon_sym_LT] = ACTIONS(4038), - [anon_sym_GT] = ACTIONS(4038), - [anon_sym_GT_GT] = ACTIONS(4038), - [anon_sym_AMP_GT] = ACTIONS(4038), - [anon_sym_AMP_GT_GT] = ACTIONS(4038), - [anon_sym_LT_AMP] = ACTIONS(4038), - [anon_sym_GT_AMP] = ACTIONS(4038), - [anon_sym_LT_LT] = ACTIONS(4038), - [anon_sym_LT_LT_DASH] = ACTIONS(4038), - [anon_sym_LT_LT_LT] = ACTIONS(4038), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4038), - }, - [2496] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6115), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2497] = { - [sym_file_descriptor] = ACTIONS(4042), - [sym__concat] = ACTIONS(4042), - [anon_sym_esac] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [anon_sym_LT] = ACTIONS(4044), - [anon_sym_GT] = ACTIONS(4044), - [anon_sym_GT_GT] = ACTIONS(4044), - [anon_sym_AMP_GT] = ACTIONS(4044), - [anon_sym_AMP_GT_GT] = ACTIONS(4044), - [anon_sym_LT_AMP] = ACTIONS(4044), - [anon_sym_GT_AMP] = ACTIONS(4044), - [anon_sym_LT_LT] = ACTIONS(4044), - [anon_sym_LT_LT_DASH] = ACTIONS(4044), - [anon_sym_LT_LT_LT] = ACTIONS(4044), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4044), - }, - [2498] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6117), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2499] = { - [sym__concat] = ACTIONS(4831), - [anon_sym_RBRACE] = ACTIONS(4831), - [sym_comment] = ACTIONS(53), - }, - [2500] = { - [sym__concat] = ACTIONS(4835), - [anon_sym_RBRACE] = ACTIONS(4835), - [sym_comment] = ACTIONS(53), - }, - [2501] = { - [sym__concat] = ACTIONS(4839), - [anon_sym_RBRACE] = ACTIONS(4839), - [sym_comment] = ACTIONS(53), - }, - [2502] = { - [sym__concat] = ACTIONS(4843), - [anon_sym_RBRACE] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - }, - [2503] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6119), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2504] = { - [sym__concat] = ACTIONS(4849), - [anon_sym_RBRACE] = ACTIONS(4849), - [sym_comment] = ACTIONS(53), - }, - [2505] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6121), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2506] = { - [sym__concat] = ACTIONS(4855), - [anon_sym_RBRACE] = ACTIONS(4855), - [sym_comment] = ACTIONS(53), - }, - [2507] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2508] = { - [sym__concat] = ACTIONS(4861), - [anon_sym_RBRACE] = ACTIONS(4861), - [sym_comment] = ACTIONS(53), - }, - [2509] = { - [sym__concat] = ACTIONS(4865), - [anon_sym_RBRACE] = ACTIONS(4865), - [sym_comment] = ACTIONS(53), - }, - [2510] = { - [sym__concat] = ACTIONS(5419), - [anon_sym_RBRACE] = ACTIONS(5419), - [anon_sym_EQ] = ACTIONS(5421), - [sym__special_characters] = ACTIONS(5421), - [anon_sym_DQUOTE] = ACTIONS(5419), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5419), - [anon_sym_POUND] = ACTIONS(5419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), - [anon_sym_COLON] = ACTIONS(5421), - [anon_sym_COLON_QMARK] = ACTIONS(5421), - [anon_sym_COLON_DASH] = ACTIONS(5421), - [anon_sym_PERCENT] = ACTIONS(5421), - [anon_sym_DASH] = ACTIONS(5421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5419), - [anon_sym_BQUOTE] = ACTIONS(5419), - [anon_sym_LT_LPAREN] = ACTIONS(5419), - [anon_sym_GT_LPAREN] = ACTIONS(5419), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5421), - }, - [2511] = { - [sym__concat] = ACTIONS(5423), - [anon_sym_RBRACE] = ACTIONS(5423), - [anon_sym_EQ] = ACTIONS(5425), - [sym__special_characters] = ACTIONS(5425), - [anon_sym_DQUOTE] = ACTIONS(5423), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5423), - [anon_sym_POUND] = ACTIONS(5423), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), - [anon_sym_COLON] = ACTIONS(5425), - [anon_sym_COLON_QMARK] = ACTIONS(5425), - [anon_sym_COLON_DASH] = ACTIONS(5425), - [anon_sym_PERCENT] = ACTIONS(5425), - [anon_sym_DASH] = ACTIONS(5425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5423), - [anon_sym_BQUOTE] = ACTIONS(5423), - [anon_sym_LT_LPAREN] = ACTIONS(5423), - [anon_sym_GT_LPAREN] = ACTIONS(5423), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5425), - }, - [2512] = { - [sym__concat] = ACTIONS(5427), - [anon_sym_RBRACE] = ACTIONS(5427), - [anon_sym_EQ] = ACTIONS(5429), - [sym__special_characters] = ACTIONS(5429), - [anon_sym_DQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5427), - [anon_sym_POUND] = ACTIONS(5427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), - [anon_sym_COLON] = ACTIONS(5429), - [anon_sym_COLON_QMARK] = ACTIONS(5429), - [anon_sym_COLON_DASH] = ACTIONS(5429), - [anon_sym_PERCENT] = ACTIONS(5429), - [anon_sym_DASH] = ACTIONS(5429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5427), - [anon_sym_BQUOTE] = ACTIONS(5427), - [anon_sym_LT_LPAREN] = ACTIONS(5427), - [anon_sym_GT_LPAREN] = ACTIONS(5427), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5429), - }, - [2513] = { - [anon_sym_PIPE] = ACTIONS(5713), - [anon_sym_RPAREN] = ACTIONS(5715), - [anon_sym_PIPE_AMP] = ACTIONS(5715), - [anon_sym_AMP_AMP] = ACTIONS(5715), - [anon_sym_PIPE_PIPE] = ACTIONS(5715), - [anon_sym_BQUOTE] = ACTIONS(5715), - [sym_comment] = ACTIONS(53), - }, - [2514] = { - [anon_sym_PIPE] = ACTIONS(5717), - [anon_sym_RPAREN] = ACTIONS(5719), - [anon_sym_PIPE_AMP] = ACTIONS(5719), - [anon_sym_AMP_AMP] = ACTIONS(5719), - [anon_sym_PIPE_PIPE] = ACTIONS(5719), - [anon_sym_BQUOTE] = ACTIONS(5719), - [sym_comment] = ACTIONS(53), - }, - [2515] = { - [sym_file_descriptor] = ACTIONS(2756), - [sym__concat] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_PIPE_AMP] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_AMP_GT] = ACTIONS(2758), - [anon_sym_AMP_GT_GT] = ACTIONS(2756), - [anon_sym_LT_AMP] = ACTIONS(2756), - [anon_sym_GT_AMP] = ACTIONS(2756), - [anon_sym_LT_LT] = ACTIONS(2758), - [anon_sym_LT_LT_DASH] = ACTIONS(2756), - [anon_sym_LT_LT_LT] = ACTIONS(2756), - [anon_sym_BQUOTE] = ACTIONS(2756), - [sym_comment] = ACTIONS(53), - }, - [2516] = { - [sym_file_descriptor] = ACTIONS(2770), - [sym__concat] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2770), - [anon_sym_PIPE_AMP] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2770), - [anon_sym_AMP_GT] = ACTIONS(2772), - [anon_sym_AMP_GT_GT] = ACTIONS(2770), - [anon_sym_LT_AMP] = ACTIONS(2770), - [anon_sym_GT_AMP] = ACTIONS(2770), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_LT_LT_DASH] = ACTIONS(2770), - [anon_sym_LT_LT_LT] = ACTIONS(2770), - [anon_sym_BQUOTE] = ACTIONS(2770), - [sym_comment] = ACTIONS(53), - }, - [2517] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6125), - [sym_comment] = ACTIONS(53), - }, - [2518] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6127), - [sym_comment] = ACTIONS(53), - }, - [2519] = { - [anon_sym_RBRACE] = ACTIONS(6127), - [sym_comment] = ACTIONS(53), - }, - [2520] = { - [sym_concatenation] = STATE(2634), - [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), - [aux_sym_expansion_repeat1] = STATE(2634), - [anon_sym_RBRACE] = ACTIONS(6129), - [anon_sym_EQ] = ACTIONS(6131), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6133), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6131), - [anon_sym_COLON_QMARK] = ACTIONS(6131), - [anon_sym_COLON_DASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2521] = { - [sym_file_descriptor] = ACTIONS(2852), - [sym__concat] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2852), - [anon_sym_PIPE_AMP] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_AMP_GT] = ACTIONS(2854), - [anon_sym_AMP_GT_GT] = ACTIONS(2852), - [anon_sym_LT_AMP] = ACTIONS(2852), - [anon_sym_GT_AMP] = ACTIONS(2852), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_LT_LT_DASH] = ACTIONS(2852), - [anon_sym_LT_LT_LT] = ACTIONS(2852), - [anon_sym_BQUOTE] = ACTIONS(2852), - [sym_comment] = ACTIONS(53), - }, - [2522] = { - [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(6127), - [sym__special_characters] = ACTIONS(6135), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(6137), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6137), - }, - [2523] = { - [sym_file_descriptor] = ACTIONS(2895), - [sym__concat] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2895), - [anon_sym_PIPE_AMP] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2897), - [anon_sym_GT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_AMP_GT] = ACTIONS(2897), - [anon_sym_AMP_GT_GT] = ACTIONS(2895), - [anon_sym_LT_AMP] = ACTIONS(2895), - [anon_sym_GT_AMP] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_LT_LT_DASH] = ACTIONS(2895), - [anon_sym_LT_LT_LT] = ACTIONS(2895), - [anon_sym_BQUOTE] = ACTIONS(2895), - [sym_comment] = ACTIONS(53), - }, - [2524] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6139), - }, - [2525] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6141), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2526] = { - [sym_file_descriptor] = ACTIONS(2903), - [sym__concat] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2903), - [anon_sym_PIPE_AMP] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_GT_GT] = ACTIONS(2903), - [anon_sym_AMP_GT] = ACTIONS(2905), - [anon_sym_AMP_GT_GT] = ACTIONS(2903), - [anon_sym_LT_AMP] = ACTIONS(2903), - [anon_sym_GT_AMP] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2905), - [anon_sym_LT_LT_DASH] = ACTIONS(2903), - [anon_sym_LT_LT_LT] = ACTIONS(2903), - [anon_sym_BQUOTE] = ACTIONS(2903), - [sym_comment] = ACTIONS(53), - }, - [2527] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6143), - }, - [2528] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6145), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2529] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6147), - }, - [2530] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6127), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2531] = { - [sym_concatenation] = STATE(2644), - [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), - [aux_sym_expansion_repeat1] = STATE(2644), - [anon_sym_RBRACE] = ACTIONS(6149), - [anon_sym_EQ] = ACTIONS(6151), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6151), - [anon_sym_COLON_QMARK] = ACTIONS(6151), - [anon_sym_COLON_DASH] = ACTIONS(6151), - [anon_sym_PERCENT] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6151), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2532] = { - [sym_file_descriptor] = ACTIONS(2919), - [sym__concat] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2919), - [anon_sym_PIPE_AMP] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_AMP_GT] = ACTIONS(2921), - [anon_sym_AMP_GT_GT] = ACTIONS(2919), - [anon_sym_LT_AMP] = ACTIONS(2919), - [anon_sym_GT_AMP] = ACTIONS(2919), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_LT_LT_DASH] = ACTIONS(2919), - [anon_sym_LT_LT_LT] = ACTIONS(2919), - [anon_sym_BQUOTE] = ACTIONS(2919), - [sym_comment] = ACTIONS(53), - }, - [2533] = { - [sym_concatenation] = STATE(2646), - [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), - [aux_sym_expansion_repeat1] = STATE(2646), - [anon_sym_RBRACE] = ACTIONS(6155), - [anon_sym_EQ] = ACTIONS(6157), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_COLON_QMARK] = ACTIONS(6157), - [anon_sym_COLON_DASH] = ACTIONS(6157), - [anon_sym_PERCENT] = ACTIONS(6157), - [anon_sym_DASH] = ACTIONS(6157), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2534] = { - [sym__concat] = ACTIONS(5419), - [sym_variable_name] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5419), - [anon_sym_PIPE_AMP] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [sym__special_characters] = ACTIONS(5419), - [anon_sym_DQUOTE] = ACTIONS(5419), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5419), - [anon_sym_BQUOTE] = ACTIONS(5419), - [anon_sym_LT_LPAREN] = ACTIONS(5419), - [anon_sym_GT_LPAREN] = ACTIONS(5419), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5421), - [sym_word] = ACTIONS(5421), - }, - [2535] = { - [sym__concat] = ACTIONS(5423), - [sym_variable_name] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5423), - [anon_sym_PIPE_AMP] = ACTIONS(5423), - [anon_sym_AMP_AMP] = ACTIONS(5423), - [anon_sym_PIPE_PIPE] = ACTIONS(5423), - [sym__special_characters] = ACTIONS(5423), - [anon_sym_DQUOTE] = ACTIONS(5423), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5423), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5423), - [anon_sym_BQUOTE] = ACTIONS(5423), - [anon_sym_LT_LPAREN] = ACTIONS(5423), - [anon_sym_GT_LPAREN] = ACTIONS(5423), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5425), - [sym_word] = ACTIONS(5425), - }, - [2536] = { - [sym__concat] = ACTIONS(5427), - [sym_variable_name] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5427), - [anon_sym_PIPE_AMP] = ACTIONS(5427), - [anon_sym_AMP_AMP] = ACTIONS(5427), - [anon_sym_PIPE_PIPE] = ACTIONS(5427), - [sym__special_characters] = ACTIONS(5427), - [anon_sym_DQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5427), - [anon_sym_BQUOTE] = ACTIONS(5427), - [anon_sym_LT_LPAREN] = ACTIONS(5427), - [anon_sym_GT_LPAREN] = ACTIONS(5427), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5429), - [sym_word] = ACTIONS(5429), - }, - [2537] = { - [sym__concat] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5419), - [anon_sym_PIPE_AMP] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [sym__special_characters] = ACTIONS(5419), - [anon_sym_DQUOTE] = ACTIONS(5419), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5419), - [anon_sym_BQUOTE] = ACTIONS(5419), - [anon_sym_LT_LPAREN] = ACTIONS(5419), - [anon_sym_GT_LPAREN] = ACTIONS(5419), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5421), - [sym_word] = ACTIONS(5421), - }, - [2538] = { - [sym__concat] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5423), - [anon_sym_PIPE_AMP] = ACTIONS(5423), - [anon_sym_AMP_AMP] = ACTIONS(5423), - [anon_sym_PIPE_PIPE] = ACTIONS(5423), - [sym__special_characters] = ACTIONS(5423), - [anon_sym_DQUOTE] = ACTIONS(5423), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5423), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5423), - [anon_sym_BQUOTE] = ACTIONS(5423), - [anon_sym_LT_LPAREN] = ACTIONS(5423), - [anon_sym_GT_LPAREN] = ACTIONS(5423), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5425), - [sym_word] = ACTIONS(5425), - }, - [2539] = { - [sym__concat] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5427), - [anon_sym_PIPE_AMP] = ACTIONS(5427), - [anon_sym_AMP_AMP] = ACTIONS(5427), - [anon_sym_PIPE_PIPE] = ACTIONS(5427), - [sym__special_characters] = ACTIONS(5427), - [anon_sym_DQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5427), - [anon_sym_BQUOTE] = ACTIONS(5427), - [anon_sym_LT_LPAREN] = ACTIONS(5427), - [anon_sym_GT_LPAREN] = ACTIONS(5427), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5429), - [sym_word] = ACTIONS(5429), - }, - [2540] = { - [sym__heredoc_body_middle] = ACTIONS(5419), - [sym__heredoc_body_end] = ACTIONS(5419), - [anon_sym_DOLLAR] = ACTIONS(5421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), - [sym_comment] = ACTIONS(53), - }, - [2541] = { - [sym__heredoc_body_middle] = ACTIONS(5423), - [sym__heredoc_body_end] = ACTIONS(5423), - [anon_sym_DOLLAR] = ACTIONS(5425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), - [sym_comment] = ACTIONS(53), - }, - [2542] = { - [sym__heredoc_body_middle] = ACTIONS(5427), - [sym__heredoc_body_end] = ACTIONS(5427), - [anon_sym_DOLLAR] = ACTIONS(5429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), - [sym_comment] = ACTIONS(53), - }, - [2543] = { - [sym__concat] = ACTIONS(5419), - [anon_sym_RPAREN] = ACTIONS(5419), - [sym__special_characters] = ACTIONS(5419), - [anon_sym_DQUOTE] = ACTIONS(5419), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5419), - [anon_sym_BQUOTE] = ACTIONS(5419), - [anon_sym_LT_LPAREN] = ACTIONS(5419), - [anon_sym_GT_LPAREN] = ACTIONS(5419), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5419), - }, - [2544] = { - [sym__concat] = ACTIONS(5423), - [anon_sym_RPAREN] = ACTIONS(5423), - [sym__special_characters] = ACTIONS(5423), - [anon_sym_DQUOTE] = ACTIONS(5423), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5423), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5423), - [anon_sym_BQUOTE] = ACTIONS(5423), - [anon_sym_LT_LPAREN] = ACTIONS(5423), - [anon_sym_GT_LPAREN] = ACTIONS(5423), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5423), - }, - [2545] = { - [sym__concat] = ACTIONS(5427), - [anon_sym_RPAREN] = ACTIONS(5427), - [sym__special_characters] = ACTIONS(5427), - [anon_sym_DQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5427), - [anon_sym_BQUOTE] = ACTIONS(5427), - [anon_sym_LT_LPAREN] = ACTIONS(5427), - [anon_sym_GT_LPAREN] = ACTIONS(5427), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5427), - }, - [2546] = { - [aux_sym_concatenation_repeat1] = STATE(2647), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(1147), - [sym_variable_name] = ACTIONS(705), - [anon_sym_esac] = ACTIONS(707), - [anon_sym_PIPE] = 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(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(707), - [anon_sym_LT_AMP] = ACTIONS(707), - [anon_sym_GT_AMP] = ACTIONS(707), - [sym__special_characters] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(707), - [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(177), - [sym_word] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [2547] = { - [sym_file_redirect] = STATE(2461), - [sym_heredoc_redirect] = STATE(2461), - [sym_heredoc_body] = STATE(1059), - [sym_herestring_redirect] = STATE(2461), - [aux_sym_while_statement_repeat1] = STATE(2461), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5219), - [anon_sym_esac] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_SEMI_SEMI] = ACTIONS(2279), - [anon_sym_PIPE_AMP] = ACTIONS(2279), - [anon_sym_AMP_AMP] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(5223), - [anon_sym_GT] = ACTIONS(5223), - [anon_sym_GT_GT] = ACTIONS(5223), - [anon_sym_AMP_GT] = ACTIONS(5223), - [anon_sym_AMP_GT_GT] = ACTIONS(5223), - [anon_sym_LT_AMP] = ACTIONS(5223), - [anon_sym_GT_AMP] = ACTIONS(5223), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5225), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_LF] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2279), - }, - [2548] = { - [sym_compound_statement] = STATE(2648), - [anon_sym_LBRACE] = ACTIONS(457), - [sym_comment] = ACTIONS(53), - }, - [2549] = { - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_GT_GT] = ACTIONS(6163), - [anon_sym_AMP_GT] = ACTIONS(6161), - [anon_sym_AMP_GT_GT] = ACTIONS(6163), - [anon_sym_LT_AMP] = ACTIONS(6163), - [anon_sym_GT_AMP] = ACTIONS(6163), - [sym_comment] = ACTIONS(53), - }, - [2550] = { - [sym_concatenation] = STATE(1104), - [sym_string] = STATE(2653), - [sym_simple_expansion] = STATE(2653), - [sym_string_expansion] = STATE(2653), - [sym_expansion] = STATE(2653), - [sym_command_substitution] = STATE(2653), - [sym_process_substitution] = STATE(2653), - [sym__special_characters] = ACTIONS(6165), - [anon_sym_DQUOTE] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6169), - [sym_raw_string] = ACTIONS(6171), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6175), - [anon_sym_BQUOTE] = ACTIONS(6177), - [anon_sym_LT_LPAREN] = ACTIONS(6179), - [anon_sym_GT_LPAREN] = ACTIONS(6179), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6171), - }, - [2551] = { - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_GT_GT] = ACTIONS(6183), - [anon_sym_AMP_GT] = ACTIONS(6181), - [anon_sym_AMP_GT_GT] = ACTIONS(6183), - [anon_sym_LT_AMP] = ACTIONS(6183), - [anon_sym_GT_AMP] = ACTIONS(6183), - [sym_comment] = ACTIONS(53), - }, - [2552] = { - [sym_concatenation] = STATE(1155), - [sym_string] = STATE(2660), - [sym_simple_expansion] = STATE(2660), - [sym_string_expansion] = STATE(2660), - [sym_expansion] = STATE(2660), - [sym_command_substitution] = STATE(2660), - [sym_process_substitution] = STATE(2660), - [sym__special_characters] = ACTIONS(6185), - [anon_sym_DQUOTE] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2508), - [sym_raw_string] = ACTIONS(6187), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), - [anon_sym_BQUOTE] = ACTIONS(2516), - [anon_sym_LT_LPAREN] = ACTIONS(2518), - [anon_sym_GT_LPAREN] = ACTIONS(2518), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6187), - }, - [2553] = { - [sym_concatenation] = STATE(1159), - [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), - [sym__special_characters] = ACTIONS(6189), - [anon_sym_DQUOTE] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2508), - [sym_raw_string] = ACTIONS(6191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), - [anon_sym_BQUOTE] = ACTIONS(2516), - [anon_sym_LT_LPAREN] = ACTIONS(2518), - [anon_sym_GT_LPAREN] = ACTIONS(2518), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6191), - }, - [2554] = { - [sym_file_redirect] = STATE(2663), - [sym_heredoc_redirect] = STATE(2663), - [sym_herestring_redirect] = STATE(2663), - [aux_sym_while_statement_repeat1] = STATE(2663), - [sym_file_descriptor] = ACTIONS(5870), - [anon_sym_esac] = ACTIONS(2526), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_SEMI_SEMI] = ACTIONS(2526), - [anon_sym_PIPE_AMP] = ACTIONS(2526), - [anon_sym_AMP_AMP] = ACTIONS(2526), - [anon_sym_PIPE_PIPE] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(5872), - [anon_sym_GT] = ACTIONS(5872), - [anon_sym_GT_GT] = ACTIONS(5872), - [anon_sym_AMP_GT] = ACTIONS(5872), - [anon_sym_AMP_GT_GT] = ACTIONS(5872), - [anon_sym_LT_AMP] = ACTIONS(5872), - [anon_sym_GT_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(1367), - [anon_sym_LT_LT_DASH] = ACTIONS(1367), - [anon_sym_LT_LT_LT] = ACTIONS(5874), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2526), - [anon_sym_LF] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - }, - [2555] = { - [sym_variable_name] = ACTIONS(1123), - [anon_sym_esac] = ACTIONS(1125), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_SEMI_SEMI] = ACTIONS(1125), - [anon_sym_PIPE_AMP] = ACTIONS(1125), - [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1125), - [sym__special_characters] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), - [anon_sym_BQUOTE] = ACTIONS(1125), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), - [sym_word] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LF] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - }, - [2556] = { - [sym_concatenation] = STATE(2665), - [sym_string] = STATE(571), - [sym_simple_expansion] = STATE(571), - [sym_string_expansion] = STATE(571), - [sym_expansion] = STATE(571), - [sym_command_substitution] = STATE(571), - [sym_process_substitution] = STATE(571), - [aux_sym_for_statement_repeat1] = STATE(2665), - [anon_sym_RPAREN] = ACTIONS(6193), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1135), - }, - [2557] = { - [aux_sym_concatenation_repeat1] = STATE(2411), - [sym__concat] = ACTIONS(5615), - [sym_variable_name] = ACTIONS(1145), - [anon_sym_esac] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_SEMI_SEMI] = ACTIONS(1149), - [anon_sym_PIPE_AMP] = ACTIONS(1149), - [anon_sym_AMP_AMP] = ACTIONS(1149), - [anon_sym_PIPE_PIPE] = ACTIONS(1149), - [sym__special_characters] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [anon_sym_DOLLAR] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1149), - [anon_sym_BQUOTE] = ACTIONS(1149), - [anon_sym_LT_LPAREN] = ACTIONS(1149), - [anon_sym_GT_LPAREN] = ACTIONS(1149), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1149), - [sym_word] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym_LF] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1149), - }, - [2558] = { - [aux_sym_concatenation_repeat1] = STATE(2411), - [sym__concat] = ACTIONS(5615), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_esac] = ACTIONS(1125), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_SEMI_SEMI] = ACTIONS(1125), - [anon_sym_PIPE_AMP] = ACTIONS(1125), - [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1125), - [sym__special_characters] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1125), - [sym_raw_string] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), - [anon_sym_BQUOTE] = ACTIONS(1125), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), - [sym_word] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LF] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - }, - [2559] = { - [sym__concat] = ACTIONS(1672), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [2560] = { - [aux_sym_concatenation_repeat1] = STATE(2560), - [sym__concat] = ACTIONS(6195), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [2561] = { - [sym__concat] = ACTIONS(1679), - [sym_variable_name] = ACTIONS(1679), - [anon_sym_esac] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__special_characters] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), - [sym_word] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - }, - [2562] = { - [anon_sym_DQUOTE] = ACTIONS(6198), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [2563] = { - [sym_concatenation] = STATE(2670), - [sym_string] = STATE(2669), - [sym_simple_expansion] = STATE(2669), - [sym_string_expansion] = STATE(2669), - [sym_expansion] = STATE(2669), - [sym_command_substitution] = STATE(2669), - [sym_process_substitution] = STATE(2669), - [anon_sym_RBRACE] = ACTIONS(6200), - [sym__special_characters] = ACTIONS(6202), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(6204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6204), - }, - [2564] = { - [sym__concat] = ACTIONS(1764), - [sym_variable_name] = ACTIONS(1764), - [anon_sym_esac] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_SEMI_SEMI] = ACTIONS(1766), - [anon_sym_PIPE_AMP] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [sym__special_characters] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), - [sym_word] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1766), - }, - [2565] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6206), - }, - [2566] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6208), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2567] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(6210), - [sym_comment] = ACTIONS(53), - }, - [2568] = { - [sym_concatenation] = STATE(2676), - [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), - [aux_sym_expansion_repeat1] = STATE(2676), - [anon_sym_RBRACE] = ACTIONS(6212), - [anon_sym_EQ] = ACTIONS(6214), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6218), - [anon_sym_COLON] = ACTIONS(6214), - [anon_sym_COLON_QMARK] = ACTIONS(6214), - [anon_sym_COLON_DASH] = ACTIONS(6214), - [anon_sym_PERCENT] = ACTIONS(6214), - [anon_sym_DASH] = ACTIONS(6214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2569] = { - [sym_concatenation] = STATE(2679), - [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), - [aux_sym_expansion_repeat1] = STATE(2679), - [anon_sym_RBRACE] = ACTIONS(6220), - [anon_sym_EQ] = ACTIONS(6222), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6226), - [anon_sym_COLON] = ACTIONS(6222), - [anon_sym_COLON_QMARK] = ACTIONS(6222), - [anon_sym_COLON_DASH] = ACTIONS(6222), - [anon_sym_PERCENT] = ACTIONS(6222), - [anon_sym_DASH] = ACTIONS(6222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2570] = { - [sym_concatenation] = STATE(2681), - [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), - [aux_sym_expansion_repeat1] = STATE(2681), - [anon_sym_RBRACE] = ACTIONS(6200), - [anon_sym_EQ] = ACTIONS(6228), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6232), - [anon_sym_COLON] = ACTIONS(6228), - [anon_sym_COLON_QMARK] = ACTIONS(6228), - [anon_sym_COLON_DASH] = ACTIONS(6228), - [anon_sym_PERCENT] = ACTIONS(6228), - [anon_sym_DASH] = ACTIONS(6228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2571] = { - [sym__concat] = ACTIONS(1832), - [sym_variable_name] = ACTIONS(1832), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__special_characters] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), - [sym_word] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [2572] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6234), - }, - [2573] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6236), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2574] = { - [sym__concat] = ACTIONS(1840), - [sym_variable_name] = ACTIONS(1840), - [anon_sym_esac] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_SEMI_SEMI] = ACTIONS(1842), - [anon_sym_PIPE_AMP] = ACTIONS(1842), - [anon_sym_AMP_AMP] = ACTIONS(1842), - [anon_sym_PIPE_PIPE] = ACTIONS(1842), - [sym__special_characters] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1842), - [anon_sym_GT_LPAREN] = ACTIONS(1842), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), - [sym_word] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LF] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1842), - }, - [2575] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6238), - }, - [2576] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6200), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2577] = { - [sym__concat] = ACTIONS(1980), - [sym_variable_name] = ACTIONS(1980), - [anon_sym_esac] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1982), - [anon_sym_PIPE_AMP] = ACTIONS(1982), - [anon_sym_AMP_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [sym__special_characters] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), - [anon_sym_BQUOTE] = ACTIONS(1982), - [anon_sym_LT_LPAREN] = ACTIONS(1982), - [anon_sym_GT_LPAREN] = ACTIONS(1982), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), - [sym_word] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [2578] = { - [sym__concat] = ACTIONS(2046), - [sym_variable_name] = ACTIONS(2046), - [anon_sym_esac] = ACTIONS(2048), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_SEMI_SEMI] = ACTIONS(2048), - [anon_sym_PIPE_AMP] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [sym__special_characters] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2048), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2048), - [anon_sym_BQUOTE] = ACTIONS(2048), - [anon_sym_LT_LPAREN] = ACTIONS(2048), - [anon_sym_GT_LPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2048), - [sym_word] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LF] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2048), - }, - [2579] = { - [sym__concat] = ACTIONS(1672), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [2580] = { - [aux_sym_concatenation_repeat1] = STATE(2580), - [sym__concat] = ACTIONS(6240), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [2581] = { - [sym__concat] = ACTIONS(1679), - [anon_sym_esac] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__special_characters] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), - [sym_word] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - }, - [2582] = { - [anon_sym_DQUOTE] = ACTIONS(6243), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [2583] = { - [sym_concatenation] = STATE(2689), - [sym_string] = STATE(2688), - [sym_simple_expansion] = STATE(2688), - [sym_string_expansion] = STATE(2688), - [sym_expansion] = STATE(2688), - [sym_command_substitution] = STATE(2688), - [sym_process_substitution] = STATE(2688), - [anon_sym_RBRACE] = ACTIONS(6245), - [sym__special_characters] = ACTIONS(6247), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(6249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6249), - }, - [2584] = { - [sym__concat] = ACTIONS(1764), - [anon_sym_esac] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_SEMI_SEMI] = ACTIONS(1766), - [anon_sym_PIPE_AMP] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [sym__special_characters] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), - [sym_word] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1766), - }, - [2585] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6251), - }, - [2586] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6253), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2587] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(6255), - [sym_comment] = ACTIONS(53), - }, - [2588] = { - [sym_concatenation] = STATE(2695), - [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), - [aux_sym_expansion_repeat1] = STATE(2695), - [anon_sym_RBRACE] = ACTIONS(6257), - [anon_sym_EQ] = ACTIONS(6259), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6263), - [anon_sym_COLON] = ACTIONS(6259), - [anon_sym_COLON_QMARK] = ACTIONS(6259), - [anon_sym_COLON_DASH] = ACTIONS(6259), - [anon_sym_PERCENT] = ACTIONS(6259), - [anon_sym_DASH] = ACTIONS(6259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2589] = { - [sym_concatenation] = STATE(2698), - [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), - [aux_sym_expansion_repeat1] = STATE(2698), - [anon_sym_RBRACE] = ACTIONS(6265), - [anon_sym_EQ] = ACTIONS(6267), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6271), - [anon_sym_COLON] = ACTIONS(6267), - [anon_sym_COLON_QMARK] = ACTIONS(6267), - [anon_sym_COLON_DASH] = ACTIONS(6267), - [anon_sym_PERCENT] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(6267), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2590] = { - [sym_concatenation] = STATE(2700), - [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), - [aux_sym_expansion_repeat1] = STATE(2700), - [anon_sym_RBRACE] = ACTIONS(6245), - [anon_sym_EQ] = ACTIONS(6273), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6277), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_COLON_QMARK] = ACTIONS(6273), - [anon_sym_COLON_DASH] = ACTIONS(6273), - [anon_sym_PERCENT] = ACTIONS(6273), - [anon_sym_DASH] = ACTIONS(6273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2591] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__special_characters] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), - [sym_word] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [2592] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6279), - }, - [2593] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6281), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2594] = { - [sym__concat] = ACTIONS(1840), - [anon_sym_esac] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_SEMI_SEMI] = ACTIONS(1842), - [anon_sym_PIPE_AMP] = ACTIONS(1842), - [anon_sym_AMP_AMP] = ACTIONS(1842), - [anon_sym_PIPE_PIPE] = ACTIONS(1842), - [sym__special_characters] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [sym_raw_string] = ACTIONS(1842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1842), - [anon_sym_GT_LPAREN] = ACTIONS(1842), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), - [sym_word] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LF] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1842), - }, - [2595] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6283), - }, - [2596] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6245), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2597] = { - [sym__concat] = ACTIONS(1980), - [anon_sym_esac] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1982), - [anon_sym_PIPE_AMP] = ACTIONS(1982), - [anon_sym_AMP_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [sym__special_characters] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), - [anon_sym_BQUOTE] = ACTIONS(1982), - [anon_sym_LT_LPAREN] = ACTIONS(1982), - [anon_sym_GT_LPAREN] = ACTIONS(1982), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), - [sym_word] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [2598] = { - [sym__concat] = ACTIONS(2046), - [anon_sym_esac] = ACTIONS(2048), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_SEMI_SEMI] = ACTIONS(2048), - [anon_sym_PIPE_AMP] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [sym__special_characters] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2048), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2048), - [anon_sym_BQUOTE] = ACTIONS(2048), - [anon_sym_LT_LPAREN] = ACTIONS(2048), - [anon_sym_GT_LPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2048), - [sym_word] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LF] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2048), - }, - [2599] = { - [sym_file_redirect] = STATE(1435), - [sym_file_descriptor] = ACTIONS(5866), - [anon_sym_esac] = ACTIONS(2380), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_SEMI_SEMI] = ACTIONS(2380), - [anon_sym_PIPE_AMP] = ACTIONS(2380), - [anon_sym_AMP_AMP] = ACTIONS(2380), - [anon_sym_PIPE_PIPE] = ACTIONS(2380), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_GT_GT] = ACTIONS(5868), - [anon_sym_AMP_GT] = ACTIONS(5868), - [anon_sym_AMP_GT_GT] = ACTIONS(5868), - [anon_sym_LT_AMP] = ACTIONS(5868), - [anon_sym_GT_AMP] = ACTIONS(5868), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_LF] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2380), - }, - [2600] = { - [aux_sym_concatenation_repeat1] = STATE(2602), - [sym__simple_heredoc_body] = ACTIONS(1105), - [sym__heredoc_body_beginning] = ACTIONS(1105), - [sym_file_descriptor] = ACTIONS(1105), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_SEMI_SEMI] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_AMP_GT] = ACTIONS(1107), - [anon_sym_AMP_GT_GT] = ACTIONS(1107), - [anon_sym_LT_AMP] = ACTIONS(1107), - [anon_sym_GT_AMP] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_LT_LT_DASH] = ACTIONS(1107), - [anon_sym_LT_LT_LT] = ACTIONS(1107), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - }, - [2601] = { - [aux_sym_concatenation_repeat1] = STATE(2602), - [sym__simple_heredoc_body] = ACTIONS(1109), - [sym__heredoc_body_beginning] = ACTIONS(1109), - [sym_file_descriptor] = ACTIONS(1109), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(1111), - [anon_sym_PIPE] = 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(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_LF] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1111), - }, - [2602] = { - [aux_sym_concatenation_repeat1] = STATE(2704), - [sym__simple_heredoc_body] = ACTIONS(705), - [sym__heredoc_body_beginning] = ACTIONS(705), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(707), - [anon_sym_PIPE] = 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(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(707), - [anon_sym_LT_AMP] = ACTIONS(707), - [anon_sym_GT_AMP] = ACTIONS(707), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_LT_LT_DASH] = ACTIONS(707), - [anon_sym_LT_LT_LT] = ACTIONS(707), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [2603] = { - [sym_file_redirect] = STATE(2461), - [sym_heredoc_redirect] = STATE(2461), - [sym_heredoc_body] = STATE(1451), - [sym_herestring_redirect] = STATE(2461), - [aux_sym_while_statement_repeat1] = STATE(2461), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5219), - [anon_sym_esac] = ACTIONS(3353), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_SEMI_SEMI] = ACTIONS(3353), - [anon_sym_PIPE_AMP] = ACTIONS(3353), - [anon_sym_AMP_AMP] = ACTIONS(3353), - [anon_sym_PIPE_PIPE] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(5223), - [anon_sym_GT] = ACTIONS(5223), - [anon_sym_GT_GT] = ACTIONS(5223), - [anon_sym_AMP_GT] = ACTIONS(5223), - [anon_sym_AMP_GT_GT] = ACTIONS(5223), - [anon_sym_LT_AMP] = ACTIONS(5223), - [anon_sym_GT_AMP] = ACTIONS(5223), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5225), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_LF] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3353), - }, - [2604] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_esac] = ACTIONS(6285), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(6287), - [anon_sym_DQUOTE] = ACTIONS(6289), - [anon_sym_DOLLAR] = ACTIONS(6287), - [sym_raw_string] = ACTIONS(6289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6289), - [anon_sym_BQUOTE] = ACTIONS(6289), - [anon_sym_LT_LPAREN] = ACTIONS(6289), - [anon_sym_GT_LPAREN] = ACTIONS(6289), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6287), - }, - [2605] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_esac] = ACTIONS(6291), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(6293), - [anon_sym_DQUOTE] = ACTIONS(6295), - [anon_sym_DOLLAR] = ACTIONS(6293), - [sym_raw_string] = ACTIONS(6295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6295), - [anon_sym_BQUOTE] = ACTIONS(6295), - [anon_sym_LT_LPAREN] = ACTIONS(6295), - [anon_sym_GT_LPAREN] = ACTIONS(6295), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6293), - }, - [2606] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(5671), - [anon_sym_DQUOTE] = ACTIONS(5673), - [anon_sym_DOLLAR] = ACTIONS(5671), - [sym_raw_string] = ACTIONS(5673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5673), - [anon_sym_BQUOTE] = ACTIONS(5673), - [anon_sym_LT_LPAREN] = ACTIONS(5673), - [anon_sym_GT_LPAREN] = ACTIONS(5673), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5671), - }, - [2607] = { - [sym__special_characters] = ACTIONS(5673), - [anon_sym_DQUOTE] = ACTIONS(5673), - [anon_sym_DOLLAR] = ACTIONS(5671), - [sym_raw_string] = ACTIONS(5673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5673), - [anon_sym_BQUOTE] = ACTIONS(5673), - [anon_sym_LT_LPAREN] = ACTIONS(5673), - [anon_sym_GT_LPAREN] = ACTIONS(5673), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5673), - }, - [2608] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6297), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2609] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6297), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2610] = { - [sym__terminated_statement] = STATE(2610), + [sym__terminated_statement] = STATE(2461), [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), [sym_case_statement] = STATE(26), @@ -65782,216 +63180,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2610), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1015), - [sym_variable_name] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1021), - [anon_sym_function] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), - [anon_sym_declare] = ACTIONS(1050), - [anon_sym_typeset] = ACTIONS(1050), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_readonly] = ACTIONS(1050), - [anon_sym_local] = ACTIONS(1050), - [anon_sym_unset] = ACTIONS(1053), - [anon_sym_unsetenv] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1056), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1056), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1083), - [anon_sym_GT_LPAREN] = ACTIONS(1083), + [aux_sym_program_repeat1] = STATE(2461), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(1043), + [sym_variable_name] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_esac] = ACTIONS(3771), + [anon_sym_SEMI_SEMI] = ACTIONS(1049), + [anon_sym_function] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_typeset] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_readonly] = ACTIONS(1078), + [anon_sym_local] = ACTIONS(1078), + [anon_sym_unset] = ACTIONS(1081), + [anon_sym_unsetenv] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1084), + [anon_sym_GT_GT] = ACTIONS(1087), + [anon_sym_AMP_GT] = ACTIONS(1084), + [anon_sym_AMP_GT_GT] = ACTIONS(1087), + [anon_sym_LT_AMP] = ACTIONS(1087), + [anon_sym_GT_AMP] = ACTIONS(1087), + [sym__special_characters] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1096), + [sym_raw_string] = ACTIONS(1099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1111), + [anon_sym_GT_LPAREN] = ACTIONS(1111), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1086), + [sym_word] = ACTIONS(1114), }, - [2611] = { - [sym__terminated_statement] = STATE(2610), - [sym_for_statement] = STATE(2707), - [sym_while_statement] = STATE(2707), - [sym_if_statement] = STATE(2707), - [sym_case_statement] = STATE(2707), - [sym_function_definition] = STATE(2707), - [sym_subshell] = STATE(2707), - [sym_pipeline] = STATE(2707), - [sym_list] = STATE(2707), - [sym_negated_command] = STATE(2707), - [sym_test_command] = STATE(2707), - [sym_declaration_command] = STATE(2707), - [sym_unset_command] = STATE(2707), - [sym_command] = STATE(2707), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2708), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2610), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6299), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), + [2462] = { + [sym_file_redirect] = STATE(2706), + [sym_heredoc_redirect] = STATE(2706), + [sym_heredoc_body] = STATE(573), + [sym_herestring_redirect] = STATE(2706), + [sym_concatenation] = STATE(202), + [sym_string] = STATE(2455), + [sym_simple_expansion] = STATE(2455), + [sym_string_expansion] = STATE(2455), + [sym_expansion] = STATE(2455), + [sym_command_substitution] = STATE(2455), + [sym_process_substitution] = STATE(2455), + [aux_sym_while_statement_repeat1] = STATE(2706), + [aux_sym_command_repeat2] = STATE(2709), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5679), + [anon_sym_esac] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_EQ_TILDE] = ACTIONS(5681), + [anon_sym_EQ_EQ] = ACTIONS(5681), + [anon_sym_LT] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5683), + [anon_sym_GT_GT] = ACTIONS(5683), + [anon_sym_AMP_GT] = ACTIONS(5683), + [anon_sym_AMP_GT_GT] = ACTIONS(5683), + [anon_sym_LT_AMP] = ACTIONS(5683), + [anon_sym_GT_AMP] = ACTIONS(5683), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(5685), + [sym__special_characters] = ACTIONS(5687), + [anon_sym_DQUOTE] = ACTIONS(357), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_raw_string] = ACTIONS(5689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5689), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1039), }, - [2612] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(5697), - [anon_sym_DQUOTE] = ACTIONS(5699), - [anon_sym_DOLLAR] = ACTIONS(5697), - [sym_raw_string] = ACTIONS(5699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5699), - [anon_sym_BQUOTE] = ACTIONS(5699), - [anon_sym_LT_LPAREN] = ACTIONS(5699), - [anon_sym_GT_LPAREN] = ACTIONS(5699), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5697), - }, - [2613] = { - [sym__special_characters] = ACTIONS(5699), - [anon_sym_DQUOTE] = ACTIONS(5699), - [anon_sym_DOLLAR] = ACTIONS(5697), - [sym_raw_string] = ACTIONS(5699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5699), - [anon_sym_BQUOTE] = ACTIONS(5699), - [anon_sym_LT_LPAREN] = ACTIONS(5699), - [anon_sym_GT_LPAREN] = ACTIONS(5699), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5699), - }, - [2614] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6301), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2615] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6301), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2616] = { - [sym__terminated_statement] = STATE(2610), + [2463] = { + [sym__terminated_statement] = STATE(2461), [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), [sym_while_statement] = STATE(2711), [sym_if_statement] = STATE(2711), [sym_case_statement] = STATE(2711), @@ -66004,26 +63295,259 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2711), [sym_unset_command] = STATE(2711), [sym_command] = STATE(2711), - [sym_command_name] = STATE(27), + [sym_command_name] = STATE(2083), [sym_variable_assignment] = STATE(2712), + [sym_subscript] = STATE(2085), + [sym_file_redirect] = STATE(2087), + [sym_concatenation] = STATE(30), + [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), + [aux_sym_program_repeat1] = STATE(2461), + [aux_sym_command_repeat1] = STATE(2087), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4774), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(6179), + [anon_sym_SEMI_SEMI] = ACTIONS(6203), + [anon_sym_function] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), + [anon_sym_declare] = ACTIONS(4790), + [anon_sym_typeset] = ACTIONS(4790), + [anon_sym_export] = ACTIONS(4790), + [anon_sym_readonly] = ACTIONS(4790), + [anon_sym_local] = ACTIONS(4790), + [anon_sym_unset] = ACTIONS(4792), + [anon_sym_unsetenv] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4798), + }, + [2464] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_esac] = ACTIONS(6205), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(6207), + [anon_sym_DQUOTE] = ACTIONS(6209), + [anon_sym_DOLLAR] = ACTIONS(6207), + [sym_raw_string] = ACTIONS(6209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6209), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6209), + [anon_sym_BQUOTE] = ACTIONS(6209), + [anon_sym_LT_LPAREN] = ACTIONS(6209), + [anon_sym_GT_LPAREN] = ACTIONS(6209), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6207), + }, + [2465] = { + [anon_sym_esac] = ACTIONS(6205), + [sym__special_characters] = ACTIONS(6209), + [anon_sym_DQUOTE] = ACTIONS(6209), + [anon_sym_DOLLAR] = ACTIONS(6207), + [sym_raw_string] = ACTIONS(6209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6209), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6209), + [anon_sym_BQUOTE] = ACTIONS(6209), + [anon_sym_LT_LPAREN] = ACTIONS(6209), + [anon_sym_GT_LPAREN] = ACTIONS(6209), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6207), + }, + [2466] = { + [anon_sym_esac] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(6211), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), + }, + [2467] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_esac] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(6211), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), + }, + [2468] = { + [sym__terminated_statement] = STATE(2461), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(2083), + [sym_variable_assignment] = STATE(2716), + [sym_subscript] = STATE(2085), + [sym_file_redirect] = STATE(2087), + [sym_concatenation] = STATE(30), + [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), + [aux_sym_program_repeat1] = STATE(2461), + [aux_sym_command_repeat1] = STATE(2087), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4774), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(6205), + [anon_sym_SEMI_SEMI] = ACTIONS(6213), + [anon_sym_function] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), + [anon_sym_declare] = ACTIONS(4790), + [anon_sym_typeset] = ACTIONS(4790), + [anon_sym_export] = ACTIONS(4790), + [anon_sym_readonly] = ACTIONS(4790), + [anon_sym_local] = ACTIONS(4790), + [anon_sym_unset] = ACTIONS(4792), + [anon_sym_unsetenv] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4798), + }, + [2469] = { + [sym__terminated_statement] = STATE(2720), + [sym_for_statement] = STATE(2718), + [sym_c_style_for_statement] = STATE(2718), + [sym_while_statement] = STATE(2718), + [sym_if_statement] = STATE(2718), + [sym_case_statement] = STATE(2718), + [sym_function_definition] = STATE(2718), + [sym_subshell] = STATE(2718), + [sym_pipeline] = STATE(2718), + [sym_list] = STATE(2718), + [sym_negated_command] = STATE(2718), + [sym_test_command] = STATE(2718), + [sym_declaration_command] = STATE(2718), + [sym_unset_command] = STATE(2718), + [sym_command] = STATE(2718), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2719), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2610), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_program_repeat1] = STATE(2720), + [aux_sym_command_repeat1] = STATE(32), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6303), + [anon_sym_SEMI_SEMI] = ACTIONS(6215), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -66055,5652 +63579,12513 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, + [2470] = { + [aux_sym_case_item_repeat1] = STATE(2089), + [anon_sym_PIPE] = ACTIONS(3796), + [anon_sym_RPAREN] = ACTIONS(6217), + [sym_comment] = ACTIONS(53), + }, + [2471] = { + [sym__terminated_statement] = STATE(2725), + [sym_for_statement] = STATE(2723), + [sym_c_style_for_statement] = STATE(2723), + [sym_while_statement] = STATE(2723), + [sym_if_statement] = STATE(2723), + [sym_case_statement] = STATE(2723), + [sym_function_definition] = STATE(2723), + [sym_subshell] = STATE(2723), + [sym_pipeline] = STATE(2723), + [sym_list] = STATE(2723), + [sym_negated_command] = STATE(2723), + [sym_test_command] = STATE(2723), + [sym_declaration_command] = STATE(2723), + [sym_unset_command] = STATE(2723), + [sym_command] = STATE(2723), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2724), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2725), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(6219), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [2472] = { + [aux_sym_case_item_repeat1] = STATE(2089), + [anon_sym_PIPE] = ACTIONS(3796), + [anon_sym_RPAREN] = ACTIONS(6221), + [sym_comment] = ACTIONS(53), + }, + [2473] = { + [anon_sym_esac] = ACTIONS(6223), + [anon_sym_PIPE] = ACTIONS(6223), + [anon_sym_RPAREN] = ACTIONS(6223), + [anon_sym_SEMI_SEMI] = ACTIONS(6223), + [anon_sym_PIPE_AMP] = ACTIONS(6223), + [anon_sym_AMP_AMP] = ACTIONS(6223), + [anon_sym_PIPE_PIPE] = ACTIONS(6223), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(6223), + [anon_sym_LF] = ACTIONS(6225), + [anon_sym_AMP] = ACTIONS(6223), + }, + [2474] = { + [anon_sym_esac] = ACTIONS(6227), + [anon_sym_PIPE] = ACTIONS(6227), + [anon_sym_RPAREN] = ACTIONS(6227), + [anon_sym_SEMI_SEMI] = ACTIONS(6227), + [anon_sym_PIPE_AMP] = ACTIONS(6227), + [anon_sym_AMP_AMP] = ACTIONS(6227), + [anon_sym_PIPE_PIPE] = ACTIONS(6227), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(6227), + [anon_sym_LF] = ACTIONS(6229), + [anon_sym_AMP] = ACTIONS(6227), + }, + [2475] = { + [sym__concat] = ACTIONS(5879), + [anon_sym_in] = ACTIONS(5881), + [anon_sym_SEMI_SEMI] = ACTIONS(5881), + [sym__special_characters] = ACTIONS(5881), + [anon_sym_DQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), + [anon_sym_BQUOTE] = ACTIONS(5881), + [anon_sym_LT_LPAREN] = ACTIONS(5881), + [anon_sym_GT_LPAREN] = ACTIONS(5881), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5881), + [anon_sym_SEMI] = ACTIONS(5881), + [anon_sym_LF] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), + }, + [2476] = { + [sym__concat] = ACTIONS(5883), + [anon_sym_in] = ACTIONS(5885), + [anon_sym_SEMI_SEMI] = ACTIONS(5885), + [sym__special_characters] = ACTIONS(5885), + [anon_sym_DQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), + [anon_sym_BQUOTE] = ACTIONS(5885), + [anon_sym_LT_LPAREN] = ACTIONS(5885), + [anon_sym_GT_LPAREN] = ACTIONS(5885), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5885), + [anon_sym_SEMI] = ACTIONS(5885), + [anon_sym_LF] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + }, + [2477] = { + [sym__concat] = ACTIONS(5887), + [anon_sym_in] = ACTIONS(5889), + [anon_sym_SEMI_SEMI] = ACTIONS(5889), + [sym__special_characters] = ACTIONS(5889), + [anon_sym_DQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), + [anon_sym_BQUOTE] = ACTIONS(5889), + [anon_sym_LT_LPAREN] = ACTIONS(5889), + [anon_sym_GT_LPAREN] = ACTIONS(5889), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5889), + [anon_sym_SEMI] = ACTIONS(5889), + [anon_sym_LF] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), + }, + [2478] = { + [aux_sym_concatenation_repeat1] = STATE(2478), + [sym__concat] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [2479] = { + [aux_sym_concatenation_repeat1] = STATE(2479), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(5736), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1756), + [anon_sym_LT_LT_LT] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [2480] = { + [sym__concat] = ACTIONS(5879), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [anon_sym_RBRACK] = ACTIONS(5879), + [anon_sym_EQ_TILDE] = ACTIONS(5879), + [anon_sym_EQ_EQ] = ACTIONS(5879), + [anon_sym_EQ] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5879), + [anon_sym_GT] = ACTIONS(5879), + [anon_sym_BANG_EQ] = ACTIONS(5879), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5879), + }, + [2481] = { + [sym__concat] = ACTIONS(5883), + [anon_sym_AMP_AMP] = ACTIONS(5883), + [anon_sym_PIPE_PIPE] = ACTIONS(5883), + [anon_sym_RBRACK] = ACTIONS(5883), + [anon_sym_EQ_TILDE] = ACTIONS(5883), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_EQ] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5883), + [anon_sym_GT] = ACTIONS(5883), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5883), + }, + [2482] = { + [sym__concat] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [anon_sym_RBRACK] = ACTIONS(5887), + [anon_sym_EQ_TILDE] = ACTIONS(5887), + [anon_sym_EQ_EQ] = ACTIONS(5887), + [anon_sym_EQ] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5887), + [anon_sym_GT] = ACTIONS(5887), + [anon_sym_BANG_EQ] = ACTIONS(5887), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5887), + }, + [2483] = { + [sym_file_descriptor] = ACTIONS(2920), + [sym__concat] = ACTIONS(2920), + [anon_sym_esac] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2922), + [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [anon_sym_PIPE_AMP] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_GT_GT] = ACTIONS(2922), + [anon_sym_AMP_GT] = ACTIONS(2922), + [anon_sym_AMP_GT_GT] = ACTIONS(2922), + [anon_sym_LT_AMP] = ACTIONS(2922), + [anon_sym_GT_AMP] = ACTIONS(2922), + [anon_sym_LT_LT] = ACTIONS(2922), + [anon_sym_LT_LT_DASH] = ACTIONS(2922), + [anon_sym_LT_LT_LT] = ACTIONS(2922), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2922), + }, + [2484] = { + [sym_file_descriptor] = ACTIONS(2934), + [sym__concat] = ACTIONS(2934), + [anon_sym_esac] = ACTIONS(2936), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_RPAREN] = ACTIONS(2936), + [anon_sym_SEMI_SEMI] = ACTIONS(2936), + [anon_sym_PIPE_AMP] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_GT] = ACTIONS(2936), + [anon_sym_GT_GT] = ACTIONS(2936), + [anon_sym_AMP_GT] = ACTIONS(2936), + [anon_sym_AMP_GT_GT] = ACTIONS(2936), + [anon_sym_LT_AMP] = ACTIONS(2936), + [anon_sym_GT_AMP] = ACTIONS(2936), + [anon_sym_LT_LT] = ACTIONS(2936), + [anon_sym_LT_LT_DASH] = ACTIONS(2936), + [anon_sym_LT_LT_LT] = ACTIONS(2936), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_LF] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2936), + }, + [2485] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6231), + [sym_comment] = ACTIONS(53), + }, + [2486] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6233), + [sym_comment] = ACTIONS(53), + }, + [2487] = { + [anon_sym_RBRACE] = ACTIONS(6233), + [sym_comment] = ACTIONS(53), + }, + [2488] = { + [sym_concatenation] = STATE(2730), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2730), + [anon_sym_RBRACE] = ACTIONS(6235), + [anon_sym_EQ] = ACTIONS(6237), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6237), + [anon_sym_COLON_QMARK] = ACTIONS(6237), + [anon_sym_COLON_DASH] = ACTIONS(6237), + [anon_sym_PERCENT] = ACTIONS(6237), + [anon_sym_DASH] = ACTIONS(6237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2489] = { + [sym_file_descriptor] = ACTIONS(3016), + [sym__concat] = ACTIONS(3016), + [anon_sym_esac] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3018), + [anon_sym_SEMI_SEMI] = ACTIONS(3018), + [anon_sym_PIPE_AMP] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_GT_GT] = ACTIONS(3018), + [anon_sym_AMP_GT] = ACTIONS(3018), + [anon_sym_AMP_GT_GT] = ACTIONS(3018), + [anon_sym_LT_AMP] = ACTIONS(3018), + [anon_sym_GT_AMP] = ACTIONS(3018), + [anon_sym_LT_LT] = ACTIONS(3018), + [anon_sym_LT_LT_DASH] = ACTIONS(3018), + [anon_sym_LT_LT_LT] = ACTIONS(3018), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3018), + }, + [2490] = { + [sym_concatenation] = STATE(2733), + [sym_string] = STATE(2732), + [sym_simple_expansion] = STATE(2732), + [sym_string_expansion] = STATE(2732), + [sym_expansion] = STATE(2732), + [sym_command_substitution] = STATE(2732), + [sym_process_substitution] = STATE(2732), + [anon_sym_RBRACE] = ACTIONS(6233), + [sym__special_characters] = ACTIONS(6241), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(6243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6243), + }, + [2491] = { + [sym_file_descriptor] = ACTIONS(3059), + [sym__concat] = ACTIONS(3059), + [anon_sym_esac] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_SEMI_SEMI] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(3061), + [anon_sym_LT_AMP] = ACTIONS(3061), + [anon_sym_GT_AMP] = ACTIONS(3061), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_LT_LT_DASH] = ACTIONS(3061), + [anon_sym_LT_LT_LT] = ACTIONS(3061), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + }, + [2492] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6245), + }, + [2493] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6247), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2494] = { + [sym_file_descriptor] = ACTIONS(3067), + [sym__concat] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_SEMI_SEMI] = ACTIONS(3069), + [anon_sym_PIPE_AMP] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_GT] = ACTIONS(3069), + [anon_sym_AMP_GT] = ACTIONS(3069), + [anon_sym_AMP_GT_GT] = ACTIONS(3069), + [anon_sym_LT_AMP] = ACTIONS(3069), + [anon_sym_GT_AMP] = ACTIONS(3069), + [anon_sym_LT_LT] = ACTIONS(3069), + [anon_sym_LT_LT_DASH] = ACTIONS(3069), + [anon_sym_LT_LT_LT] = ACTIONS(3069), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3069), + }, + [2495] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6249), + }, + [2496] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6251), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2497] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6253), + }, + [2498] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2499] = { + [sym_concatenation] = STATE(2740), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2740), + [anon_sym_RBRACE] = ACTIONS(6255), + [anon_sym_EQ] = ACTIONS(6257), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6257), + [anon_sym_COLON_QMARK] = ACTIONS(6257), + [anon_sym_COLON_DASH] = ACTIONS(6257), + [anon_sym_PERCENT] = ACTIONS(6257), + [anon_sym_DASH] = ACTIONS(6257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2500] = { + [sym_file_descriptor] = ACTIONS(3083), + [sym__concat] = ACTIONS(3083), + [anon_sym_esac] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_RPAREN] = ACTIONS(3085), + [anon_sym_SEMI_SEMI] = ACTIONS(3085), + [anon_sym_PIPE_AMP] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_GT] = ACTIONS(3085), + [anon_sym_GT_GT] = ACTIONS(3085), + [anon_sym_AMP_GT] = ACTIONS(3085), + [anon_sym_AMP_GT_GT] = ACTIONS(3085), + [anon_sym_LT_AMP] = ACTIONS(3085), + [anon_sym_GT_AMP] = ACTIONS(3085), + [anon_sym_LT_LT] = ACTIONS(3085), + [anon_sym_LT_LT_DASH] = ACTIONS(3085), + [anon_sym_LT_LT_LT] = ACTIONS(3085), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + }, + [2501] = { + [sym_concatenation] = STATE(2742), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2742), + [anon_sym_RBRACE] = ACTIONS(6261), + [anon_sym_EQ] = ACTIONS(6263), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_COLON_QMARK] = ACTIONS(6263), + [anon_sym_COLON_DASH] = ACTIONS(6263), + [anon_sym_PERCENT] = ACTIONS(6263), + [anon_sym_DASH] = ACTIONS(6263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2502] = { + [sym__concat] = ACTIONS(5879), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5879), + [anon_sym_EQ_TILDE] = ACTIONS(5879), + [anon_sym_EQ_EQ] = ACTIONS(5879), + [anon_sym_EQ] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5879), + [anon_sym_GT] = ACTIONS(5879), + [anon_sym_BANG_EQ] = ACTIONS(5879), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5879), + }, + [2503] = { + [sym__concat] = ACTIONS(5883), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5883), + [anon_sym_AMP_AMP] = ACTIONS(5883), + [anon_sym_PIPE_PIPE] = ACTIONS(5883), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5883), + [anon_sym_EQ_TILDE] = ACTIONS(5883), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_EQ] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5883), + [anon_sym_GT] = ACTIONS(5883), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5883), + }, + [2504] = { + [sym__concat] = ACTIONS(5887), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5887), + [anon_sym_EQ_TILDE] = ACTIONS(5887), + [anon_sym_EQ_EQ] = ACTIONS(5887), + [anon_sym_EQ] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5887), + [anon_sym_GT] = ACTIONS(5887), + [anon_sym_BANG_EQ] = ACTIONS(5887), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5887), + }, + [2505] = { + [sym__concat] = ACTIONS(5879), + [sym_variable_name] = ACTIONS(5879), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_RPAREN] = ACTIONS(5881), + [anon_sym_SEMI_SEMI] = ACTIONS(5881), + [anon_sym_PIPE_AMP] = ACTIONS(5881), + [anon_sym_AMP_AMP] = ACTIONS(5881), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [sym__special_characters] = ACTIONS(5881), + [anon_sym_DQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), + [anon_sym_BQUOTE] = ACTIONS(5881), + [anon_sym_LT_LPAREN] = ACTIONS(5881), + [anon_sym_GT_LPAREN] = ACTIONS(5881), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5881), + [sym_word] = ACTIONS(5881), + [anon_sym_SEMI] = ACTIONS(5881), + [anon_sym_LF] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), + }, + [2506] = { + [sym__concat] = ACTIONS(5883), + [sym_variable_name] = ACTIONS(5883), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5885), + [anon_sym_SEMI_SEMI] = ACTIONS(5885), + [anon_sym_PIPE_AMP] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [sym__special_characters] = ACTIONS(5885), + [anon_sym_DQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), + [anon_sym_BQUOTE] = ACTIONS(5885), + [anon_sym_LT_LPAREN] = ACTIONS(5885), + [anon_sym_GT_LPAREN] = ACTIONS(5885), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5885), + [sym_word] = ACTIONS(5885), + [anon_sym_SEMI] = ACTIONS(5885), + [anon_sym_LF] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + }, + [2507] = { + [sym__concat] = ACTIONS(5887), + [sym_variable_name] = ACTIONS(5887), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5889), + [anon_sym_SEMI_SEMI] = ACTIONS(5889), + [anon_sym_PIPE_AMP] = ACTIONS(5889), + [anon_sym_AMP_AMP] = ACTIONS(5889), + [anon_sym_PIPE_PIPE] = ACTIONS(5889), + [sym__special_characters] = ACTIONS(5889), + [anon_sym_DQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), + [anon_sym_BQUOTE] = ACTIONS(5889), + [anon_sym_LT_LPAREN] = ACTIONS(5889), + [anon_sym_GT_LPAREN] = ACTIONS(5889), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5889), + [sym_word] = ACTIONS(5889), + [anon_sym_SEMI] = ACTIONS(5889), + [anon_sym_LF] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), + }, + [2508] = { + [sym__concat] = ACTIONS(5879), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_RPAREN] = ACTIONS(5881), + [anon_sym_SEMI_SEMI] = ACTIONS(5881), + [anon_sym_PIPE_AMP] = ACTIONS(5881), + [anon_sym_AMP_AMP] = ACTIONS(5881), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [sym__special_characters] = ACTIONS(5881), + [anon_sym_DQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), + [anon_sym_BQUOTE] = ACTIONS(5881), + [anon_sym_LT_LPAREN] = ACTIONS(5881), + [anon_sym_GT_LPAREN] = ACTIONS(5881), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5881), + [sym_word] = ACTIONS(5881), + [anon_sym_SEMI] = ACTIONS(5881), + [anon_sym_LF] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), + }, + [2509] = { + [sym__concat] = ACTIONS(5883), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5885), + [anon_sym_SEMI_SEMI] = ACTIONS(5885), + [anon_sym_PIPE_AMP] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [sym__special_characters] = ACTIONS(5885), + [anon_sym_DQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), + [anon_sym_BQUOTE] = ACTIONS(5885), + [anon_sym_LT_LPAREN] = ACTIONS(5885), + [anon_sym_GT_LPAREN] = ACTIONS(5885), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5885), + [sym_word] = ACTIONS(5885), + [anon_sym_SEMI] = ACTIONS(5885), + [anon_sym_LF] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + }, + [2510] = { + [sym__concat] = ACTIONS(5887), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5889), + [anon_sym_SEMI_SEMI] = ACTIONS(5889), + [anon_sym_PIPE_AMP] = ACTIONS(5889), + [anon_sym_AMP_AMP] = ACTIONS(5889), + [anon_sym_PIPE_PIPE] = ACTIONS(5889), + [sym__special_characters] = ACTIONS(5889), + [anon_sym_DQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), + [anon_sym_BQUOTE] = ACTIONS(5889), + [anon_sym_LT_LPAREN] = ACTIONS(5889), + [anon_sym_GT_LPAREN] = ACTIONS(5889), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5889), + [sym_word] = ACTIONS(5889), + [anon_sym_SEMI] = ACTIONS(5889), + [anon_sym_LF] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), + }, + [2511] = { + [sym_file_descriptor] = ACTIONS(5879), + [sym__concat] = ACTIONS(5879), + [sym_variable_name] = ACTIONS(5879), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_PIPE_AMP] = ACTIONS(5879), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_GT_GT] = ACTIONS(5879), + [anon_sym_AMP_GT] = ACTIONS(5881), + [anon_sym_AMP_GT_GT] = ACTIONS(5879), + [anon_sym_LT_AMP] = ACTIONS(5879), + [anon_sym_GT_AMP] = ACTIONS(5879), + [sym__special_characters] = ACTIONS(5879), + [anon_sym_DQUOTE] = ACTIONS(5879), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5879), + [anon_sym_BQUOTE] = ACTIONS(5879), + [anon_sym_LT_LPAREN] = ACTIONS(5879), + [anon_sym_GT_LPAREN] = ACTIONS(5879), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5879), + }, + [2512] = { + [sym_file_descriptor] = ACTIONS(5883), + [sym__concat] = ACTIONS(5883), + [sym_variable_name] = ACTIONS(5883), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5883), + [anon_sym_PIPE_AMP] = ACTIONS(5883), + [anon_sym_AMP_AMP] = ACTIONS(5883), + [anon_sym_PIPE_PIPE] = ACTIONS(5883), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_GT_GT] = ACTIONS(5883), + [anon_sym_AMP_GT] = ACTIONS(5885), + [anon_sym_AMP_GT_GT] = ACTIONS(5883), + [anon_sym_LT_AMP] = ACTIONS(5883), + [anon_sym_GT_AMP] = ACTIONS(5883), + [sym__special_characters] = ACTIONS(5883), + [anon_sym_DQUOTE] = ACTIONS(5883), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5883), + [anon_sym_BQUOTE] = ACTIONS(5883), + [anon_sym_LT_LPAREN] = ACTIONS(5883), + [anon_sym_GT_LPAREN] = ACTIONS(5883), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5883), + }, + [2513] = { + [sym_file_descriptor] = ACTIONS(5887), + [sym__concat] = ACTIONS(5887), + [sym_variable_name] = ACTIONS(5887), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_PIPE_AMP] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_GT_GT] = ACTIONS(5887), + [anon_sym_AMP_GT] = ACTIONS(5889), + [anon_sym_AMP_GT_GT] = ACTIONS(5887), + [anon_sym_LT_AMP] = ACTIONS(5887), + [anon_sym_GT_AMP] = ACTIONS(5887), + [sym__special_characters] = ACTIONS(5887), + [anon_sym_DQUOTE] = ACTIONS(5887), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5887), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5887), + [anon_sym_BQUOTE] = ACTIONS(5887), + [anon_sym_LT_LPAREN] = ACTIONS(5887), + [anon_sym_GT_LPAREN] = ACTIONS(5887), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5887), + }, + [2514] = { + [sym__concat] = ACTIONS(5879), + [anon_sym_DQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym__string_content] = ACTIONS(5879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), + [anon_sym_BQUOTE] = ACTIONS(5881), + [sym_comment] = ACTIONS(179), + }, + [2515] = { + [sym__concat] = ACTIONS(5883), + [anon_sym_DQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym__string_content] = ACTIONS(5883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), + [anon_sym_BQUOTE] = ACTIONS(5885), + [sym_comment] = ACTIONS(179), + }, + [2516] = { + [sym__concat] = ACTIONS(5887), + [anon_sym_DQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym__string_content] = ACTIONS(5887), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), + [anon_sym_BQUOTE] = ACTIONS(5889), + [sym_comment] = ACTIONS(179), + }, + [2517] = { + [sym__concat] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [sym_comment] = ACTIONS(53), + }, + [2518] = { + [sym__concat] = ACTIONS(4172), + [anon_sym_RBRACE] = ACTIONS(4172), + [sym_comment] = ACTIONS(53), + }, + [2519] = { + [sym__concat] = ACTIONS(4259), + [anon_sym_RBRACE] = ACTIONS(4259), + [sym_comment] = ACTIONS(53), + }, + [2520] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6267), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2521] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6269), + [sym_comment] = ACTIONS(53), + }, + [2522] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6271), + [sym_comment] = ACTIONS(53), + }, + [2523] = { + [anon_sym_RBRACE] = ACTIONS(6271), + [sym_comment] = ACTIONS(53), + }, + [2524] = { + [sym_concatenation] = STATE(2747), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2747), + [anon_sym_RBRACE] = ACTIONS(6273), + [anon_sym_EQ] = ACTIONS(6275), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6275), + [anon_sym_COLON_QMARK] = ACTIONS(6275), + [anon_sym_COLON_DASH] = ACTIONS(6275), + [anon_sym_PERCENT] = ACTIONS(6275), + [anon_sym_DASH] = ACTIONS(6275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2525] = { + [sym__concat] = ACTIONS(4275), + [anon_sym_RBRACE] = ACTIONS(4275), + [sym_comment] = ACTIONS(53), + }, + [2526] = { + [sym_concatenation] = STATE(2749), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2749), + [anon_sym_RBRACE] = ACTIONS(6279), + [anon_sym_EQ] = ACTIONS(6281), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6281), + [anon_sym_COLON_QMARK] = ACTIONS(6281), + [anon_sym_COLON_DASH] = ACTIONS(6281), + [anon_sym_PERCENT] = ACTIONS(6281), + [anon_sym_DASH] = ACTIONS(6281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2527] = { + [sym__concat] = ACTIONS(4285), + [anon_sym_RBRACE] = ACTIONS(4285), + [sym_comment] = ACTIONS(53), + }, + [2528] = { + [sym_concatenation] = STATE(2751), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2751), + [anon_sym_RBRACE] = ACTIONS(6285), + [anon_sym_EQ] = ACTIONS(6287), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6287), + [anon_sym_COLON_QMARK] = ACTIONS(6287), + [anon_sym_COLON_DASH] = ACTIONS(6287), + [anon_sym_PERCENT] = ACTIONS(6287), + [anon_sym_DASH] = ACTIONS(6287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2529] = { + [sym__concat] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [sym_comment] = ACTIONS(53), + }, + [2530] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6291), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2531] = { + [sym__concat] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [sym_comment] = ACTIONS(53), + }, + [2532] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6293), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2533] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(5204), + [sym__special_characters] = ACTIONS(5204), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_POUND] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_COLON] = ACTIONS(5204), + [anon_sym_COLON_QMARK] = ACTIONS(5204), + [anon_sym_COLON_DASH] = ACTIONS(5204), + [anon_sym_PERCENT] = ACTIONS(5204), + [anon_sym_DASH] = ACTIONS(5204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5204), + }, + [2534] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_RBRACE] = ACTIONS(5206), + [anon_sym_EQ] = ACTIONS(5208), + [sym__special_characters] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_POUND] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_COLON] = ACTIONS(5208), + [anon_sym_COLON_QMARK] = ACTIONS(5208), + [anon_sym_COLON_DASH] = ACTIONS(5208), + [anon_sym_PERCENT] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5208), + }, + [2535] = { + [sym__concat] = ACTIONS(5210), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(5212), + [sym__special_characters] = ACTIONS(5212), + [anon_sym_DQUOTE] = ACTIONS(5210), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5210), + [anon_sym_POUND] = ACTIONS(5210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), + [anon_sym_COLON] = ACTIONS(5212), + [anon_sym_COLON_QMARK] = ACTIONS(5212), + [anon_sym_COLON_DASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), + [anon_sym_DASH] = ACTIONS(5212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5210), + [anon_sym_BQUOTE] = ACTIONS(5210), + [anon_sym_LT_LPAREN] = ACTIONS(5210), + [anon_sym_GT_LPAREN] = ACTIONS(5210), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5212), + }, + [2536] = { + [sym__concat] = ACTIONS(5214), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(5216), + [sym__special_characters] = ACTIONS(5216), + [anon_sym_DQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR] = ACTIONS(5216), + [sym_raw_string] = ACTIONS(5214), + [anon_sym_POUND] = ACTIONS(5214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), + [anon_sym_COLON] = ACTIONS(5216), + [anon_sym_COLON_QMARK] = ACTIONS(5216), + [anon_sym_COLON_DASH] = ACTIONS(5216), + [anon_sym_PERCENT] = ACTIONS(5216), + [anon_sym_DASH] = ACTIONS(5216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5214), + [anon_sym_BQUOTE] = ACTIONS(5214), + [anon_sym_LT_LPAREN] = ACTIONS(5214), + [anon_sym_GT_LPAREN] = ACTIONS(5214), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5216), + }, + [2537] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6295), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2538] = { + [sym__concat] = ACTIONS(5220), + [anon_sym_RBRACE] = ACTIONS(5220), + [anon_sym_EQ] = 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_DASH] = 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(179), + [sym_word] = ACTIONS(5222), + }, + [2539] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6297), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2540] = { + [sym__concat] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(5228), + [sym__special_characters] = ACTIONS(5228), + [anon_sym_DQUOTE] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5226), + [anon_sym_POUND] = ACTIONS(5226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), + [anon_sym_COLON] = ACTIONS(5228), + [anon_sym_COLON_QMARK] = ACTIONS(5228), + [anon_sym_COLON_DASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5226), + [anon_sym_BQUOTE] = ACTIONS(5226), + [anon_sym_LT_LPAREN] = ACTIONS(5226), + [anon_sym_GT_LPAREN] = ACTIONS(5226), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5228), + }, + [2541] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6299), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2542] = { + [sym__concat] = ACTIONS(5232), + [anon_sym_RBRACE] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(5234), + [sym__special_characters] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5232), + [anon_sym_POUND] = ACTIONS(5232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5234), + [anon_sym_COLON_QMARK] = ACTIONS(5234), + [anon_sym_COLON_DASH] = ACTIONS(5234), + [anon_sym_PERCENT] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5232), + [anon_sym_BQUOTE] = ACTIONS(5232), + [anon_sym_LT_LPAREN] = ACTIONS(5232), + [anon_sym_GT_LPAREN] = ACTIONS(5232), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5234), + }, + [2543] = { + [sym__concat] = ACTIONS(5236), + [anon_sym_RBRACE] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5238), + [sym__special_characters] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5236), + [anon_sym_POUND] = ACTIONS(5236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5238), + [anon_sym_COLON_QMARK] = ACTIONS(5238), + [anon_sym_COLON_DASH] = ACTIONS(5238), + [anon_sym_PERCENT] = ACTIONS(5238), + [anon_sym_DASH] = ACTIONS(5238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5236), + [anon_sym_BQUOTE] = ACTIONS(5236), + [anon_sym_LT_LPAREN] = ACTIONS(5236), + [anon_sym_GT_LPAREN] = ACTIONS(5236), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5238), + }, + [2544] = { + [anon_sym_PIPE] = ACTIONS(2528), + [anon_sym_RPAREN] = ACTIONS(2526), + [anon_sym_PIPE_AMP] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_BQUOTE] = ACTIONS(2526), + [sym_comment] = ACTIONS(53), + }, + [2545] = { + [sym__terminated_statement] = STATE(1182), + [sym_for_statement] = STATE(680), + [sym_c_style_for_statement] = STATE(680), + [sym_while_statement] = STATE(680), + [sym_if_statement] = STATE(680), + [sym_case_statement] = STATE(680), + [sym_function_definition] = STATE(680), + [sym_subshell] = STATE(680), + [sym_pipeline] = STATE(680), + [sym_list] = STATE(680), + [sym_negated_command] = STATE(680), + [sym_test_command] = STATE(680), + [sym_declaration_command] = STATE(680), + [sym_unset_command] = STATE(680), + [sym_command] = STATE(680), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(681), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1182), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(6301), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [2546] = { + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_RPAREN] = ACTIONS(5581), + [anon_sym_PIPE_AMP] = ACTIONS(5581), + [anon_sym_AMP_AMP] = ACTIONS(5581), + [anon_sym_PIPE_PIPE] = ACTIONS(5581), + [anon_sym_BQUOTE] = ACTIONS(5581), + [sym_comment] = ACTIONS(53), + }, + [2547] = { + [sym_do_group] = STATE(2758), + [sym_compound_statement] = STATE(2758), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(5240), + [sym_comment] = ACTIONS(53), + }, + [2548] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(6303), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_EQ_TILDE] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3688), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3684), + }, + [2549] = { + [anon_sym_PIPE] = ACTIONS(5615), + [anon_sym_RPAREN] = ACTIONS(5617), + [anon_sym_PIPE_AMP] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(5617), + [anon_sym_PIPE_PIPE] = ACTIONS(5617), + [anon_sym_BQUOTE] = ACTIONS(5617), + [sym_comment] = ACTIONS(53), + }, + [2550] = { + [anon_sym_PIPE] = ACTIONS(5708), + [anon_sym_RPAREN] = ACTIONS(5710), + [anon_sym_PIPE_AMP] = ACTIONS(5710), + [anon_sym_AMP_AMP] = ACTIONS(5710), + [anon_sym_PIPE_PIPE] = ACTIONS(5710), + [anon_sym_BQUOTE] = ACTIONS(5710), + [sym_comment] = ACTIONS(53), + }, + [2551] = { + [anon_sym_esac] = ACTIONS(6305), + [sym_comment] = ACTIONS(53), + }, + [2552] = { + [anon_sym_PIPE] = ACTIONS(5718), + [anon_sym_RPAREN] = ACTIONS(5720), + [anon_sym_PIPE_AMP] = ACTIONS(5720), + [anon_sym_AMP_AMP] = ACTIONS(5720), + [anon_sym_PIPE_PIPE] = ACTIONS(5720), + [anon_sym_BQUOTE] = ACTIONS(5720), + [sym_comment] = ACTIONS(53), + }, + [2553] = { + [anon_sym_esac] = ACTIONS(6307), + [sym_comment] = ACTIONS(53), + }, + [2554] = { + [aux_sym_concatenation_repeat1] = STATE(2554), + [sym__concat] = ACTIONS(4422), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + }, + [2555] = { + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1754), + [anon_sym_LT_AMP] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1754), + [anon_sym_LT_LT_LT] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + }, + [2556] = { + [aux_sym_concatenation_repeat1] = STATE(2556), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(6309), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1754), + [anon_sym_LT_AMP] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1754), + [anon_sym_LT_LT_LT] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + }, + [2557] = { + [sym_file_descriptor] = ACTIONS(1761), + [sym__concat] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_PIPE_AMP] = ACTIONS(1761), + [anon_sym_AMP_AMP] = ACTIONS(1761), + [anon_sym_PIPE_PIPE] = ACTIONS(1761), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_GT] = ACTIONS(1761), + [anon_sym_AMP_GT] = ACTIONS(1763), + [anon_sym_AMP_GT_GT] = ACTIONS(1761), + [anon_sym_LT_AMP] = ACTIONS(1761), + [anon_sym_GT_AMP] = ACTIONS(1761), + [anon_sym_LT_LT] = ACTIONS(1763), + [anon_sym_LT_LT_DASH] = ACTIONS(1761), + [anon_sym_LT_LT_LT] = ACTIONS(1761), + [anon_sym_BQUOTE] = ACTIONS(1761), + [sym_comment] = ACTIONS(53), + }, + [2558] = { + [anon_sym_DQUOTE] = ACTIONS(6312), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [2559] = { + [sym_concatenation] = STATE(2766), + [sym_string] = STATE(2765), + [sym_simple_expansion] = STATE(2765), + [sym_string_expansion] = STATE(2765), + [sym_expansion] = STATE(2765), + [sym_command_substitution] = STATE(2765), + [sym_process_substitution] = STATE(2765), + [anon_sym_RBRACE] = ACTIONS(6314), + [sym__special_characters] = ACTIONS(6316), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(6318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6318), + }, + [2560] = { + [sym_file_descriptor] = ACTIONS(1846), + [sym__concat] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_PIPE_AMP] = ACTIONS(1846), + [anon_sym_AMP_AMP] = ACTIONS(1846), + [anon_sym_PIPE_PIPE] = ACTIONS(1846), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_GT_GT] = ACTIONS(1846), + [anon_sym_AMP_GT] = ACTIONS(1848), + [anon_sym_AMP_GT_GT] = ACTIONS(1846), + [anon_sym_LT_AMP] = ACTIONS(1846), + [anon_sym_GT_AMP] = ACTIONS(1846), + [anon_sym_LT_LT] = ACTIONS(1848), + [anon_sym_LT_LT_DASH] = ACTIONS(1846), + [anon_sym_LT_LT_LT] = ACTIONS(1846), + [anon_sym_BQUOTE] = ACTIONS(1846), + [sym_comment] = ACTIONS(53), + }, + [2561] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6320), + }, + [2562] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6322), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2563] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(6324), + [sym_comment] = ACTIONS(53), + }, + [2564] = { + [sym_concatenation] = STATE(2772), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2772), + [anon_sym_RBRACE] = ACTIONS(6326), + [anon_sym_EQ] = ACTIONS(6328), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6332), + [anon_sym_COLON] = ACTIONS(6328), + [anon_sym_COLON_QMARK] = ACTIONS(6328), + [anon_sym_COLON_DASH] = ACTIONS(6328), + [anon_sym_PERCENT] = ACTIONS(6328), + [anon_sym_DASH] = ACTIONS(6328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2565] = { + [sym_concatenation] = STATE(2775), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2775), + [anon_sym_RBRACE] = ACTIONS(6334), + [anon_sym_EQ] = ACTIONS(6336), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6340), + [anon_sym_COLON] = ACTIONS(6336), + [anon_sym_COLON_QMARK] = ACTIONS(6336), + [anon_sym_COLON_DASH] = ACTIONS(6336), + [anon_sym_PERCENT] = ACTIONS(6336), + [anon_sym_DASH] = ACTIONS(6336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2566] = { + [sym_concatenation] = STATE(2777), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2777), + [anon_sym_RBRACE] = ACTIONS(6314), + [anon_sym_EQ] = ACTIONS(6342), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6346), + [anon_sym_COLON] = ACTIONS(6342), + [anon_sym_COLON_QMARK] = ACTIONS(6342), + [anon_sym_COLON_DASH] = ACTIONS(6342), + [anon_sym_PERCENT] = ACTIONS(6342), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2567] = { + [sym_file_descriptor] = ACTIONS(1914), + [sym__concat] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_PIPE_AMP] = ACTIONS(1914), + [anon_sym_AMP_AMP] = ACTIONS(1914), + [anon_sym_PIPE_PIPE] = ACTIONS(1914), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_GT] = ACTIONS(1916), + [anon_sym_GT_GT] = ACTIONS(1914), + [anon_sym_AMP_GT] = ACTIONS(1916), + [anon_sym_AMP_GT_GT] = ACTIONS(1914), + [anon_sym_LT_AMP] = ACTIONS(1914), + [anon_sym_GT_AMP] = ACTIONS(1914), + [anon_sym_LT_LT] = ACTIONS(1916), + [anon_sym_LT_LT_DASH] = ACTIONS(1914), + [anon_sym_LT_LT_LT] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1914), + [sym_comment] = ACTIONS(53), + }, + [2568] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6348), + }, + [2569] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6350), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2570] = { + [sym_file_descriptor] = ACTIONS(1922), + [sym__concat] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_PIPE_AMP] = ACTIONS(1922), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_GT] = ACTIONS(1924), + [anon_sym_GT_GT] = ACTIONS(1922), + [anon_sym_AMP_GT] = ACTIONS(1924), + [anon_sym_AMP_GT_GT] = ACTIONS(1922), + [anon_sym_LT_AMP] = ACTIONS(1922), + [anon_sym_GT_AMP] = ACTIONS(1922), + [anon_sym_LT_LT] = ACTIONS(1924), + [anon_sym_LT_LT_DASH] = ACTIONS(1922), + [anon_sym_LT_LT_LT] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [sym_comment] = ACTIONS(53), + }, + [2571] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6352), + }, + [2572] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6314), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2573] = { + [sym_file_descriptor] = ACTIONS(2066), + [sym__concat] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2066), + [anon_sym_AMP_GT] = ACTIONS(2068), + [anon_sym_AMP_GT_GT] = ACTIONS(2066), + [anon_sym_LT_AMP] = ACTIONS(2066), + [anon_sym_GT_AMP] = ACTIONS(2066), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_LT_LT_DASH] = ACTIONS(2066), + [anon_sym_LT_LT_LT] = ACTIONS(2066), + [anon_sym_BQUOTE] = ACTIONS(2066), + [sym_comment] = ACTIONS(53), + }, + [2574] = { + [sym_file_descriptor] = ACTIONS(2132), + [sym__concat] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_PIPE_AMP] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(2132), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(2132), + [anon_sym_LT_AMP] = ACTIONS(2132), + [anon_sym_GT_AMP] = ACTIONS(2132), + [anon_sym_LT_LT] = ACTIONS(2134), + [anon_sym_LT_LT_DASH] = ACTIONS(2132), + [anon_sym_LT_LT_LT] = ACTIONS(2132), + [anon_sym_BQUOTE] = ACTIONS(2132), + [sym_comment] = ACTIONS(53), + }, + [2575] = { + [sym__concat] = ACTIONS(5202), + [sym_variable_name] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), + [sym_word] = ACTIONS(5204), + }, + [2576] = { + [sym__concat] = ACTIONS(5206), + [sym_variable_name] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), + [sym_word] = ACTIONS(5208), + }, + [2577] = { + [sym__concat] = ACTIONS(5210), + [sym_variable_name] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5210), + [anon_sym_PIPE_AMP] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [sym__special_characters] = ACTIONS(5210), + [anon_sym_DQUOTE] = ACTIONS(5210), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5210), + [anon_sym_BQUOTE] = ACTIONS(5210), + [anon_sym_LT_LPAREN] = ACTIONS(5210), + [anon_sym_GT_LPAREN] = ACTIONS(5210), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5212), + [sym_word] = ACTIONS(5212), + }, + [2578] = { + [sym__concat] = ACTIONS(5214), + [sym_variable_name] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5214), + [anon_sym_PIPE_AMP] = ACTIONS(5214), + [anon_sym_AMP_AMP] = ACTIONS(5214), + [anon_sym_PIPE_PIPE] = ACTIONS(5214), + [sym__special_characters] = ACTIONS(5214), + [anon_sym_DQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR] = ACTIONS(5216), + [sym_raw_string] = ACTIONS(5214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5214), + [anon_sym_BQUOTE] = ACTIONS(5214), + [anon_sym_LT_LPAREN] = ACTIONS(5214), + [anon_sym_GT_LPAREN] = ACTIONS(5214), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5216), + [sym_word] = ACTIONS(5216), + }, + [2579] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6354), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2580] = { + [sym__concat] = ACTIONS(5220), + [sym_variable_name] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5220), + [anon_sym_PIPE_AMP] = ACTIONS(5220), + [anon_sym_AMP_AMP] = ACTIONS(5220), + [anon_sym_PIPE_PIPE] = 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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), + [sym_word] = ACTIONS(5222), + }, + [2581] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6356), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2582] = { + [sym__concat] = ACTIONS(5226), + [sym_variable_name] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_PIPE_AMP] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [sym__special_characters] = ACTIONS(5226), + [anon_sym_DQUOTE] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5226), + [anon_sym_BQUOTE] = ACTIONS(5226), + [anon_sym_LT_LPAREN] = ACTIONS(5226), + [anon_sym_GT_LPAREN] = ACTIONS(5226), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5228), + [sym_word] = ACTIONS(5228), + }, + [2583] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6358), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2584] = { + [sym__concat] = ACTIONS(5232), + [sym_variable_name] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5232), + [anon_sym_PIPE_AMP] = ACTIONS(5232), + [anon_sym_AMP_AMP] = ACTIONS(5232), + [anon_sym_PIPE_PIPE] = ACTIONS(5232), + [sym__special_characters] = ACTIONS(5232), + [anon_sym_DQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5232), + [anon_sym_BQUOTE] = ACTIONS(5232), + [anon_sym_LT_LPAREN] = ACTIONS(5232), + [anon_sym_GT_LPAREN] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5234), + [sym_word] = ACTIONS(5234), + }, + [2585] = { + [sym__concat] = ACTIONS(5236), + [sym_variable_name] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5236), + [anon_sym_PIPE_AMP] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [sym__special_characters] = ACTIONS(5236), + [anon_sym_DQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5236), + [anon_sym_BQUOTE] = ACTIONS(5236), + [anon_sym_LT_LPAREN] = ACTIONS(5236), + [anon_sym_GT_LPAREN] = ACTIONS(5236), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5238), + [sym_word] = ACTIONS(5238), + }, + [2586] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), + [sym_word] = ACTIONS(5204), + }, + [2587] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), + [sym_word] = ACTIONS(5208), + }, + [2588] = { + [sym__concat] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5210), + [anon_sym_PIPE_AMP] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [sym__special_characters] = ACTIONS(5210), + [anon_sym_DQUOTE] = ACTIONS(5210), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5210), + [anon_sym_BQUOTE] = ACTIONS(5210), + [anon_sym_LT_LPAREN] = ACTIONS(5210), + [anon_sym_GT_LPAREN] = ACTIONS(5210), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5212), + [sym_word] = ACTIONS(5212), + }, + [2589] = { + [sym__concat] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5214), + [anon_sym_PIPE_AMP] = ACTIONS(5214), + [anon_sym_AMP_AMP] = ACTIONS(5214), + [anon_sym_PIPE_PIPE] = ACTIONS(5214), + [sym__special_characters] = ACTIONS(5214), + [anon_sym_DQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR] = ACTIONS(5216), + [sym_raw_string] = ACTIONS(5214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5214), + [anon_sym_BQUOTE] = ACTIONS(5214), + [anon_sym_LT_LPAREN] = ACTIONS(5214), + [anon_sym_GT_LPAREN] = ACTIONS(5214), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5216), + [sym_word] = ACTIONS(5216), + }, + [2590] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6360), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2591] = { + [sym__concat] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5220), + [anon_sym_PIPE_AMP] = ACTIONS(5220), + [anon_sym_AMP_AMP] = ACTIONS(5220), + [anon_sym_PIPE_PIPE] = 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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), + [sym_word] = ACTIONS(5222), + }, + [2592] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6362), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2593] = { + [sym__concat] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_PIPE_AMP] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [sym__special_characters] = ACTIONS(5226), + [anon_sym_DQUOTE] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5226), + [anon_sym_BQUOTE] = ACTIONS(5226), + [anon_sym_LT_LPAREN] = ACTIONS(5226), + [anon_sym_GT_LPAREN] = ACTIONS(5226), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5228), + [sym_word] = ACTIONS(5228), + }, + [2594] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6364), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2595] = { + [sym__concat] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5232), + [anon_sym_PIPE_AMP] = ACTIONS(5232), + [anon_sym_AMP_AMP] = ACTIONS(5232), + [anon_sym_PIPE_PIPE] = ACTIONS(5232), + [sym__special_characters] = ACTIONS(5232), + [anon_sym_DQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5232), + [anon_sym_BQUOTE] = ACTIONS(5232), + [anon_sym_LT_LPAREN] = ACTIONS(5232), + [anon_sym_GT_LPAREN] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5234), + [sym_word] = ACTIONS(5234), + }, + [2596] = { + [sym__concat] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5236), + [anon_sym_PIPE_AMP] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [sym__special_characters] = ACTIONS(5236), + [anon_sym_DQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5236), + [anon_sym_BQUOTE] = ACTIONS(5236), + [anon_sym_LT_LPAREN] = ACTIONS(5236), + [anon_sym_GT_LPAREN] = ACTIONS(5236), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5238), + [sym_word] = ACTIONS(5238), + }, + [2597] = { + [sym__simple_heredoc_body] = ACTIONS(5879), + [sym__heredoc_body_beginning] = ACTIONS(5879), + [sym_file_descriptor] = ACTIONS(5879), + [sym__concat] = ACTIONS(5879), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_PIPE_AMP] = ACTIONS(5879), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [anon_sym_EQ_TILDE] = ACTIONS(5881), + [anon_sym_EQ_EQ] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_GT_GT] = ACTIONS(5879), + [anon_sym_AMP_GT] = ACTIONS(5881), + [anon_sym_AMP_GT_GT] = ACTIONS(5879), + [anon_sym_LT_AMP] = ACTIONS(5879), + [anon_sym_GT_AMP] = ACTIONS(5879), + [anon_sym_LT_LT] = ACTIONS(5881), + [anon_sym_LT_LT_DASH] = ACTIONS(5879), + [anon_sym_LT_LT_LT] = ACTIONS(5879), + [sym__special_characters] = ACTIONS(5879), + [anon_sym_DQUOTE] = ACTIONS(5879), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5879), + [anon_sym_BQUOTE] = ACTIONS(5879), + [anon_sym_LT_LPAREN] = ACTIONS(5879), + [anon_sym_GT_LPAREN] = ACTIONS(5879), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5881), + }, + [2598] = { + [sym__simple_heredoc_body] = ACTIONS(5883), + [sym__heredoc_body_beginning] = ACTIONS(5883), + [sym_file_descriptor] = ACTIONS(5883), + [sym__concat] = ACTIONS(5883), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5883), + [anon_sym_PIPE_AMP] = ACTIONS(5883), + [anon_sym_AMP_AMP] = ACTIONS(5883), + [anon_sym_PIPE_PIPE] = ACTIONS(5883), + [anon_sym_EQ_TILDE] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_GT_GT] = ACTIONS(5883), + [anon_sym_AMP_GT] = ACTIONS(5885), + [anon_sym_AMP_GT_GT] = ACTIONS(5883), + [anon_sym_LT_AMP] = ACTIONS(5883), + [anon_sym_GT_AMP] = ACTIONS(5883), + [anon_sym_LT_LT] = ACTIONS(5885), + [anon_sym_LT_LT_DASH] = ACTIONS(5883), + [anon_sym_LT_LT_LT] = ACTIONS(5883), + [sym__special_characters] = ACTIONS(5883), + [anon_sym_DQUOTE] = ACTIONS(5883), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5883), + [anon_sym_BQUOTE] = ACTIONS(5883), + [anon_sym_LT_LPAREN] = ACTIONS(5883), + [anon_sym_GT_LPAREN] = ACTIONS(5883), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5885), + }, + [2599] = { + [sym__simple_heredoc_body] = ACTIONS(5887), + [sym__heredoc_body_beginning] = ACTIONS(5887), + [sym_file_descriptor] = ACTIONS(5887), + [sym__concat] = ACTIONS(5887), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_PIPE_AMP] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [anon_sym_EQ_TILDE] = ACTIONS(5889), + [anon_sym_EQ_EQ] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_GT_GT] = ACTIONS(5887), + [anon_sym_AMP_GT] = ACTIONS(5889), + [anon_sym_AMP_GT_GT] = ACTIONS(5887), + [anon_sym_LT_AMP] = ACTIONS(5887), + [anon_sym_GT_AMP] = ACTIONS(5887), + [anon_sym_LT_LT] = ACTIONS(5889), + [anon_sym_LT_LT_DASH] = ACTIONS(5887), + [anon_sym_LT_LT_LT] = ACTIONS(5887), + [sym__special_characters] = ACTIONS(5887), + [anon_sym_DQUOTE] = ACTIONS(5887), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5887), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5887), + [anon_sym_BQUOTE] = ACTIONS(5887), + [anon_sym_LT_LPAREN] = ACTIONS(5887), + [anon_sym_GT_LPAREN] = ACTIONS(5887), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5889), + }, + [2600] = { + [aux_sym_concatenation_repeat1] = STATE(2600), + [sym__concat] = ACTIONS(4422), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + }, + [2601] = { + [aux_sym_concatenation_repeat1] = STATE(2601), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(6309), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1754), + [anon_sym_LT_AMP] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1754), + [anon_sym_LT_LT_LT] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [sym_comment] = ACTIONS(53), + }, + [2602] = { + [sym__heredoc_body_middle] = ACTIONS(5202), + [sym__heredoc_body_end] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [sym_comment] = ACTIONS(53), + }, + [2603] = { + [sym__heredoc_body_middle] = ACTIONS(5206), + [sym__heredoc_body_end] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [sym_comment] = ACTIONS(53), + }, + [2604] = { + [sym__heredoc_body_middle] = ACTIONS(5210), + [sym__heredoc_body_end] = ACTIONS(5210), + [anon_sym_DOLLAR] = ACTIONS(5212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), + [sym_comment] = ACTIONS(53), + }, + [2605] = { + [sym__heredoc_body_middle] = ACTIONS(5214), + [sym__heredoc_body_end] = ACTIONS(5214), + [anon_sym_DOLLAR] = ACTIONS(5216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), + [sym_comment] = ACTIONS(53), + }, + [2606] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6366), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2607] = { + [sym__heredoc_body_middle] = ACTIONS(5220), + [sym__heredoc_body_end] = ACTIONS(5220), + [anon_sym_DOLLAR] = ACTIONS(5222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), + [sym_comment] = ACTIONS(53), + }, + [2608] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6368), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2609] = { + [sym__heredoc_body_middle] = ACTIONS(5226), + [sym__heredoc_body_end] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), + [sym_comment] = ACTIONS(53), + }, + [2610] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6370), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2611] = { + [sym__heredoc_body_middle] = ACTIONS(5232), + [sym__heredoc_body_end] = ACTIONS(5232), + [anon_sym_DOLLAR] = ACTIONS(5234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), + }, + [2612] = { + [sym__heredoc_body_middle] = ACTIONS(5236), + [sym__heredoc_body_end] = ACTIONS(5236), + [anon_sym_DOLLAR] = ACTIONS(5238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), + [sym_comment] = ACTIONS(53), + }, + [2613] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_RPAREN] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5202), + }, + [2614] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_RPAREN] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5206), + }, + [2615] = { + [sym__concat] = ACTIONS(5210), + [anon_sym_RPAREN] = ACTIONS(5210), + [sym__special_characters] = ACTIONS(5210), + [anon_sym_DQUOTE] = ACTIONS(5210), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5210), + [anon_sym_BQUOTE] = ACTIONS(5210), + [anon_sym_LT_LPAREN] = ACTIONS(5210), + [anon_sym_GT_LPAREN] = ACTIONS(5210), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5210), + }, + [2616] = { + [sym__concat] = ACTIONS(5214), + [anon_sym_RPAREN] = ACTIONS(5214), + [sym__special_characters] = ACTIONS(5214), + [anon_sym_DQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR] = ACTIONS(5216), + [sym_raw_string] = ACTIONS(5214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5214), + [anon_sym_BQUOTE] = ACTIONS(5214), + [anon_sym_LT_LPAREN] = ACTIONS(5214), + [anon_sym_GT_LPAREN] = ACTIONS(5214), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5214), + }, [2617] = { - [sym_file_descriptor] = ACTIONS(4831), - [sym__concat] = ACTIONS(4831), - [anon_sym_esac] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_RPAREN] = ACTIONS(4833), - [anon_sym_SEMI_SEMI] = ACTIONS(4833), - [anon_sym_PIPE_AMP] = ACTIONS(4833), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_GT_GT] = ACTIONS(4833), - [anon_sym_AMP_GT] = ACTIONS(4833), - [anon_sym_AMP_GT_GT] = ACTIONS(4833), - [anon_sym_LT_AMP] = ACTIONS(4833), - [anon_sym_GT_AMP] = ACTIONS(4833), - [anon_sym_LT_LT] = ACTIONS(4833), - [anon_sym_LT_LT_DASH] = ACTIONS(4833), - [anon_sym_LT_LT_LT] = ACTIONS(4833), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4833), - [anon_sym_LF] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4833), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6372), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2618] = { - [sym_file_descriptor] = ACTIONS(4835), - [sym__concat] = ACTIONS(4835), - [anon_sym_esac] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_RPAREN] = ACTIONS(4837), - [anon_sym_SEMI_SEMI] = ACTIONS(4837), - [anon_sym_PIPE_AMP] = ACTIONS(4837), - [anon_sym_AMP_AMP] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_AMP_GT] = ACTIONS(4837), - [anon_sym_AMP_GT_GT] = ACTIONS(4837), - [anon_sym_LT_AMP] = ACTIONS(4837), - [anon_sym_GT_AMP] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_LT_LT_DASH] = ACTIONS(4837), - [anon_sym_LT_LT_LT] = ACTIONS(4837), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym_LF] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), + [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(53), + [sym_word] = ACTIONS(5220), }, [2619] = { - [sym_file_descriptor] = ACTIONS(4839), - [sym__concat] = ACTIONS(4839), - [anon_sym_esac] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_RPAREN] = ACTIONS(4841), - [anon_sym_SEMI_SEMI] = ACTIONS(4841), - [anon_sym_PIPE_AMP] = ACTIONS(4841), - [anon_sym_AMP_AMP] = ACTIONS(4841), - [anon_sym_PIPE_PIPE] = ACTIONS(4841), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_GT_GT] = ACTIONS(4841), - [anon_sym_AMP_GT] = ACTIONS(4841), - [anon_sym_AMP_GT_GT] = ACTIONS(4841), - [anon_sym_LT_AMP] = ACTIONS(4841), - [anon_sym_GT_AMP] = ACTIONS(4841), - [anon_sym_LT_LT] = ACTIONS(4841), - [anon_sym_LT_LT_DASH] = ACTIONS(4841), - [anon_sym_LT_LT_LT] = ACTIONS(4841), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_LF] = ACTIONS(4839), - [anon_sym_AMP] = ACTIONS(4841), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6374), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2620] = { - [sym_file_descriptor] = ACTIONS(4843), - [sym__concat] = ACTIONS(4843), - [anon_sym_esac] = ACTIONS(4845), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_RPAREN] = ACTIONS(4845), - [anon_sym_SEMI_SEMI] = ACTIONS(4845), - [anon_sym_PIPE_AMP] = ACTIONS(4845), - [anon_sym_AMP_AMP] = ACTIONS(4845), - [anon_sym_PIPE_PIPE] = ACTIONS(4845), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_GT_GT] = ACTIONS(4845), - [anon_sym_AMP_GT] = ACTIONS(4845), - [anon_sym_AMP_GT_GT] = ACTIONS(4845), - [anon_sym_LT_AMP] = ACTIONS(4845), - [anon_sym_GT_AMP] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4845), - [anon_sym_LT_LT_DASH] = ACTIONS(4845), - [anon_sym_LT_LT_LT] = ACTIONS(4845), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4845), - [anon_sym_LF] = ACTIONS(4843), - [anon_sym_AMP] = ACTIONS(4845), + [sym__concat] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [sym__special_characters] = ACTIONS(5226), + [anon_sym_DQUOTE] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5226), + [anon_sym_BQUOTE] = ACTIONS(5226), + [anon_sym_LT_LPAREN] = ACTIONS(5226), + [anon_sym_GT_LPAREN] = ACTIONS(5226), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5226), }, [2621] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6305), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6376), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2622] = { - [sym_file_descriptor] = ACTIONS(4849), - [sym__concat] = ACTIONS(4849), - [anon_sym_esac] = ACTIONS(4851), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4851), - [anon_sym_SEMI_SEMI] = ACTIONS(4851), - [anon_sym_PIPE_AMP] = ACTIONS(4851), - [anon_sym_AMP_AMP] = ACTIONS(4851), - [anon_sym_PIPE_PIPE] = ACTIONS(4851), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_GT_GT] = ACTIONS(4851), - [anon_sym_AMP_GT] = ACTIONS(4851), - [anon_sym_AMP_GT_GT] = ACTIONS(4851), - [anon_sym_LT_AMP] = ACTIONS(4851), - [anon_sym_GT_AMP] = ACTIONS(4851), - [anon_sym_LT_LT] = ACTIONS(4851), - [anon_sym_LT_LT_DASH] = ACTIONS(4851), - [anon_sym_LT_LT_LT] = ACTIONS(4851), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4851), - [anon_sym_LF] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4851), + [sym__concat] = ACTIONS(5232), + [anon_sym_RPAREN] = ACTIONS(5232), + [sym__special_characters] = ACTIONS(5232), + [anon_sym_DQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5232), + [anon_sym_BQUOTE] = ACTIONS(5232), + [anon_sym_LT_LPAREN] = ACTIONS(5232), + [anon_sym_GT_LPAREN] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5232), }, [2623] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6307), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(5236), + [anon_sym_RPAREN] = ACTIONS(5236), + [sym__special_characters] = ACTIONS(5236), + [anon_sym_DQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5236), + [anon_sym_BQUOTE] = ACTIONS(5236), + [anon_sym_LT_LPAREN] = ACTIONS(5236), + [anon_sym_GT_LPAREN] = ACTIONS(5236), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5236), }, [2624] = { - [sym_file_descriptor] = ACTIONS(4855), - [sym__concat] = ACTIONS(4855), - [anon_sym_esac] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_RPAREN] = ACTIONS(4857), - [anon_sym_SEMI_SEMI] = ACTIONS(4857), - [anon_sym_PIPE_AMP] = ACTIONS(4857), - [anon_sym_AMP_AMP] = ACTIONS(4857), - [anon_sym_PIPE_PIPE] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_GT_GT] = ACTIONS(4857), - [anon_sym_AMP_GT] = ACTIONS(4857), - [anon_sym_AMP_GT_GT] = ACTIONS(4857), - [anon_sym_LT_AMP] = ACTIONS(4857), - [anon_sym_GT_AMP] = ACTIONS(4857), - [anon_sym_LT_LT] = ACTIONS(4857), - [anon_sym_LT_LT_DASH] = ACTIONS(4857), - [anon_sym_LT_LT_LT] = ACTIONS(4857), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4857), - [anon_sym_LF] = ACTIONS(4855), - [anon_sym_AMP] = ACTIONS(4857), + [sym_file_descriptor] = ACTIONS(5879), + [sym__concat] = ACTIONS(5879), + [sym_variable_name] = ACTIONS(5879), + [anon_sym_esac] = ACTIONS(5881), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_RPAREN] = ACTIONS(5881), + [anon_sym_SEMI_SEMI] = ACTIONS(5881), + [anon_sym_PIPE_AMP] = ACTIONS(5881), + [anon_sym_AMP_AMP] = ACTIONS(5881), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_GT_GT] = ACTIONS(5881), + [anon_sym_AMP_GT] = ACTIONS(5881), + [anon_sym_AMP_GT_GT] = ACTIONS(5881), + [anon_sym_LT_AMP] = ACTIONS(5881), + [anon_sym_GT_AMP] = ACTIONS(5881), + [sym__special_characters] = ACTIONS(5881), + [anon_sym_DQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), + [anon_sym_BQUOTE] = ACTIONS(5881), + [anon_sym_LT_LPAREN] = ACTIONS(5881), + [anon_sym_GT_LPAREN] = ACTIONS(5881), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5881), + [anon_sym_SEMI] = ACTIONS(5881), + [anon_sym_LF] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), }, [2625] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6309), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(5883), + [sym__concat] = ACTIONS(5883), + [sym_variable_name] = ACTIONS(5883), + [anon_sym_esac] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5885), + [anon_sym_SEMI_SEMI] = ACTIONS(5885), + [anon_sym_PIPE_AMP] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_GT_GT] = ACTIONS(5885), + [anon_sym_AMP_GT] = ACTIONS(5885), + [anon_sym_AMP_GT_GT] = ACTIONS(5885), + [anon_sym_LT_AMP] = ACTIONS(5885), + [anon_sym_GT_AMP] = ACTIONS(5885), + [sym__special_characters] = ACTIONS(5885), + [anon_sym_DQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), + [anon_sym_BQUOTE] = ACTIONS(5885), + [anon_sym_LT_LPAREN] = ACTIONS(5885), + [anon_sym_GT_LPAREN] = ACTIONS(5885), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5885), + [anon_sym_SEMI] = ACTIONS(5885), + [anon_sym_LF] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), }, [2626] = { - [sym_file_descriptor] = ACTIONS(4861), - [sym__concat] = ACTIONS(4861), - [anon_sym_esac] = ACTIONS(4863), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_SEMI_SEMI] = ACTIONS(4863), - [anon_sym_PIPE_AMP] = ACTIONS(4863), - [anon_sym_AMP_AMP] = ACTIONS(4863), - [anon_sym_PIPE_PIPE] = ACTIONS(4863), - [anon_sym_LT] = ACTIONS(4863), - [anon_sym_GT] = ACTIONS(4863), - [anon_sym_GT_GT] = ACTIONS(4863), - [anon_sym_AMP_GT] = ACTIONS(4863), - [anon_sym_AMP_GT_GT] = ACTIONS(4863), - [anon_sym_LT_AMP] = ACTIONS(4863), - [anon_sym_GT_AMP] = ACTIONS(4863), - [anon_sym_LT_LT] = ACTIONS(4863), - [anon_sym_LT_LT_DASH] = ACTIONS(4863), - [anon_sym_LT_LT_LT] = ACTIONS(4863), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4863), + [sym_file_descriptor] = ACTIONS(5887), + [sym__concat] = ACTIONS(5887), + [sym_variable_name] = ACTIONS(5887), + [anon_sym_esac] = ACTIONS(5889), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5889), + [anon_sym_SEMI_SEMI] = ACTIONS(5889), + [anon_sym_PIPE_AMP] = ACTIONS(5889), + [anon_sym_AMP_AMP] = ACTIONS(5889), + [anon_sym_PIPE_PIPE] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_GT_GT] = ACTIONS(5889), + [anon_sym_AMP_GT] = ACTIONS(5889), + [anon_sym_AMP_GT_GT] = ACTIONS(5889), + [anon_sym_LT_AMP] = ACTIONS(5889), + [anon_sym_GT_AMP] = ACTIONS(5889), + [sym__special_characters] = ACTIONS(5889), + [anon_sym_DQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), + [anon_sym_BQUOTE] = ACTIONS(5889), + [anon_sym_LT_LPAREN] = ACTIONS(5889), + [anon_sym_GT_LPAREN] = ACTIONS(5889), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5889), + [anon_sym_SEMI] = ACTIONS(5889), + [anon_sym_LF] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), }, [2627] = { - [sym_file_descriptor] = ACTIONS(4865), - [sym__concat] = ACTIONS(4865), - [anon_sym_esac] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_RPAREN] = ACTIONS(4867), - [anon_sym_SEMI_SEMI] = ACTIONS(4867), - [anon_sym_PIPE_AMP] = ACTIONS(4867), - [anon_sym_AMP_AMP] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4867), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4867), - [anon_sym_AMP_GT] = ACTIONS(4867), - [anon_sym_AMP_GT_GT] = ACTIONS(4867), - [anon_sym_LT_AMP] = ACTIONS(4867), - [anon_sym_GT_AMP] = ACTIONS(4867), - [anon_sym_LT_LT] = ACTIONS(4867), - [anon_sym_LT_LT_DASH] = ACTIONS(4867), - [anon_sym_LT_LT_LT] = ACTIONS(4867), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_LF] = ACTIONS(4865), - [anon_sym_AMP] = ACTIONS(4867), + [sym__concat] = ACTIONS(4164), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_EQ_TILDE] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4164), }, [2628] = { - [sym__concat] = ACTIONS(5419), - [anon_sym_RBRACE] = ACTIONS(5419), + [sym__concat] = ACTIONS(4172), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_EQ_TILDE] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4172), + [anon_sym_GT] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4172), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4172), }, [2629] = { - [sym__concat] = ACTIONS(5423), - [anon_sym_RBRACE] = ACTIONS(5423), + [sym__concat] = ACTIONS(4259), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4259), + [anon_sym_AMP_AMP] = ACTIONS(4259), + [anon_sym_PIPE_PIPE] = ACTIONS(4259), + [anon_sym_EQ_TILDE] = ACTIONS(4259), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4261), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG_EQ] = ACTIONS(4259), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4259), }, [2630] = { - [sym__concat] = ACTIONS(5427), - [anon_sym_RBRACE] = ACTIONS(5427), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6378), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2631] = { - [sym_file_descriptor] = ACTIONS(3905), - [sym__concat] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3905), - [anon_sym_PIPE_AMP] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_AMP_GT] = ACTIONS(3907), - [anon_sym_AMP_GT_GT] = ACTIONS(3905), - [anon_sym_LT_AMP] = ACTIONS(3905), - [anon_sym_GT_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3907), - [anon_sym_LT_LT_DASH] = ACTIONS(3905), - [anon_sym_LT_LT_LT] = ACTIONS(3905), - [anon_sym_BQUOTE] = ACTIONS(3905), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6380), [sym_comment] = ACTIONS(53), }, [2632] = { - [sym_file_descriptor] = ACTIONS(3913), - [sym__concat] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3913), - [anon_sym_PIPE_AMP] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_AMP_GT] = ACTIONS(3915), - [anon_sym_AMP_GT_GT] = ACTIONS(3913), - [anon_sym_LT_AMP] = ACTIONS(3913), - [anon_sym_GT_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_LT_LT_DASH] = ACTIONS(3913), - [anon_sym_LT_LT_LT] = ACTIONS(3913), - [anon_sym_BQUOTE] = ACTIONS(3913), - [sym_comment] = ACTIONS(53), - }, - [2633] = { - [sym_file_descriptor] = ACTIONS(4000), - [sym__concat] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4000), - [anon_sym_PIPE_AMP] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_PIPE_PIPE] = ACTIONS(4000), - [anon_sym_LT] = ACTIONS(4002), - [anon_sym_GT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4000), - [anon_sym_AMP_GT] = ACTIONS(4002), - [anon_sym_AMP_GT_GT] = ACTIONS(4000), - [anon_sym_LT_AMP] = ACTIONS(4000), - [anon_sym_GT_AMP] = ACTIONS(4000), - [anon_sym_LT_LT] = ACTIONS(4002), - [anon_sym_LT_LT_DASH] = ACTIONS(4000), - [anon_sym_LT_LT_LT] = ACTIONS(4000), - [anon_sym_BQUOTE] = ACTIONS(4000), - [sym_comment] = ACTIONS(53), - }, - [2634] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6311), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2635] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6313), - [sym_comment] = ACTIONS(53), - }, - [2636] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6315), - [sym_comment] = ACTIONS(53), - }, - [2637] = { - [anon_sym_RBRACE] = ACTIONS(6315), - [sym_comment] = ACTIONS(53), - }, - [2638] = { - [sym_concatenation] = STATE(2720), - [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), - [aux_sym_expansion_repeat1] = STATE(2720), - [anon_sym_RBRACE] = ACTIONS(6317), - [anon_sym_EQ] = ACTIONS(6319), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6319), - [anon_sym_COLON_QMARK] = ACTIONS(6319), - [anon_sym_COLON_DASH] = ACTIONS(6319), - [anon_sym_PERCENT] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2639] = { - [sym_file_descriptor] = ACTIONS(4016), - [sym__concat] = ACTIONS(4016), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4016), - [anon_sym_PIPE_AMP] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_AMP_GT] = ACTIONS(4018), - [anon_sym_AMP_GT_GT] = ACTIONS(4016), - [anon_sym_LT_AMP] = ACTIONS(4016), - [anon_sym_GT_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_LT_LT_DASH] = ACTIONS(4016), - [anon_sym_LT_LT_LT] = ACTIONS(4016), - [anon_sym_BQUOTE] = ACTIONS(4016), - [sym_comment] = ACTIONS(53), - }, - [2640] = { - [sym_concatenation] = STATE(2722), - [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), - [aux_sym_expansion_repeat1] = STATE(2722), - [anon_sym_RBRACE] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(6325), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6327), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6325), - [anon_sym_COLON_QMARK] = ACTIONS(6325), - [anon_sym_COLON_DASH] = ACTIONS(6325), - [anon_sym_PERCENT] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2641] = { - [sym_file_descriptor] = ACTIONS(4026), - [sym__concat] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4028), - [anon_sym_GT] = ACTIONS(4028), - [anon_sym_GT_GT] = ACTIONS(4026), - [anon_sym_AMP_GT] = ACTIONS(4028), - [anon_sym_AMP_GT_GT] = ACTIONS(4026), - [anon_sym_LT_AMP] = ACTIONS(4026), - [anon_sym_GT_AMP] = ACTIONS(4026), - [anon_sym_LT_LT] = ACTIONS(4028), - [anon_sym_LT_LT_DASH] = ACTIONS(4026), - [anon_sym_LT_LT_LT] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [sym_comment] = ACTIONS(53), - }, - [2642] = { - [sym_concatenation] = STATE(2724), - [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), - [aux_sym_expansion_repeat1] = STATE(2724), - [anon_sym_RBRACE] = ACTIONS(6329), - [anon_sym_EQ] = ACTIONS(6331), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6331), - [anon_sym_COLON_QMARK] = ACTIONS(6331), - [anon_sym_COLON_DASH] = ACTIONS(6331), - [anon_sym_PERCENT] = ACTIONS(6331), - [anon_sym_DASH] = ACTIONS(6331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2643] = { - [sym_file_descriptor] = ACTIONS(4036), - [sym__concat] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4038), - [anon_sym_GT] = ACTIONS(4038), - [anon_sym_GT_GT] = ACTIONS(4036), - [anon_sym_AMP_GT] = ACTIONS(4038), - [anon_sym_AMP_GT_GT] = ACTIONS(4036), - [anon_sym_LT_AMP] = ACTIONS(4036), - [anon_sym_GT_AMP] = ACTIONS(4036), - [anon_sym_LT_LT] = ACTIONS(4038), - [anon_sym_LT_LT_DASH] = ACTIONS(4036), - [anon_sym_LT_LT_LT] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [sym_comment] = ACTIONS(53), - }, - [2644] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2645] = { - [sym_file_descriptor] = ACTIONS(4042), - [sym__concat] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4042), - [anon_sym_PIPE_AMP] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_LT] = ACTIONS(4044), - [anon_sym_GT] = ACTIONS(4044), - [anon_sym_GT_GT] = ACTIONS(4042), - [anon_sym_AMP_GT] = ACTIONS(4044), - [anon_sym_AMP_GT_GT] = ACTIONS(4042), - [anon_sym_LT_AMP] = ACTIONS(4042), - [anon_sym_GT_AMP] = ACTIONS(4042), - [anon_sym_LT_LT] = ACTIONS(4044), - [anon_sym_LT_LT_DASH] = ACTIONS(4042), - [anon_sym_LT_LT_LT] = ACTIONS(4042), - [anon_sym_BQUOTE] = ACTIONS(4042), - [sym_comment] = ACTIONS(53), - }, - [2646] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6337), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2647] = { - [aux_sym_concatenation_repeat1] = STATE(2647), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(3439), - [sym_variable_name] = ACTIONS(1672), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [sym__special_characters] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [2648] = { - [sym_file_redirect] = STATE(1531), - [sym_file_descriptor] = ACTIONS(5866), - [anon_sym_esac] = ACTIONS(3595), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_SEMI_SEMI] = ACTIONS(3595), - [anon_sym_PIPE_AMP] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_GT_GT] = ACTIONS(5868), - [anon_sym_AMP_GT] = ACTIONS(5868), - [anon_sym_AMP_GT_GT] = ACTIONS(5868), - [anon_sym_LT_AMP] = ACTIONS(5868), - [anon_sym_GT_AMP] = ACTIONS(5868), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3595), - [anon_sym_LF] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - }, - [2649] = { - [sym_concatenation] = STATE(1534), - [sym_string] = STATE(2728), - [sym_simple_expansion] = STATE(2728), - [sym_string_expansion] = STATE(2728), - [sym_expansion] = STATE(2728), - [sym_command_substitution] = STATE(2728), - [sym_process_substitution] = STATE(2728), - [sym__special_characters] = ACTIONS(6339), - [anon_sym_DQUOTE] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6169), - [sym_raw_string] = ACTIONS(6341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6175), - [anon_sym_BQUOTE] = ACTIONS(6177), - [anon_sym_LT_LPAREN] = ACTIONS(6179), - [anon_sym_GT_LPAREN] = ACTIONS(6179), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6341), - }, - [2650] = { - [aux_sym_concatenation_repeat1] = STATE(2730), - [sym__concat] = ACTIONS(6343), - [anon_sym_esac] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(675), - }, - [2651] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2733), - [anon_sym_DQUOTE] = ACTIONS(6345), - [anon_sym_DOLLAR] = ACTIONS(6347), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [2652] = { - [sym_string] = STATE(2735), - [anon_sym_DQUOTE] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6349), - [sym_raw_string] = ACTIONS(6351), - [anon_sym_POUND] = ACTIONS(6349), - [anon_sym_DASH] = ACTIONS(6349), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6353), - [anon_sym_STAR] = ACTIONS(6349), - [anon_sym_AT] = ACTIONS(6349), - [anon_sym_QMARK] = ACTIONS(6349), - [anon_sym_0] = ACTIONS(6355), - [anon_sym__] = ACTIONS(6355), - }, - [2653] = { - [aux_sym_concatenation_repeat1] = STATE(2730), - [sym__concat] = ACTIONS(6343), - [anon_sym_esac] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_SEMI_SEMI] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LF] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), - }, - [2654] = { - [sym_subscript] = STATE(2741), - [sym_variable_name] = ACTIONS(6357), - [anon_sym_DOLLAR] = ACTIONS(6359), - [anon_sym_POUND] = ACTIONS(6361), - [anon_sym_DASH] = ACTIONS(6359), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6359), - [anon_sym_AT] = ACTIONS(6359), - [anon_sym_QMARK] = ACTIONS(6359), - [anon_sym_0] = ACTIONS(6365), - [anon_sym__] = ACTIONS(6365), - }, - [2655] = { - [sym_for_statement] = STATE(2742), - [sym_while_statement] = STATE(2742), - [sym_if_statement] = STATE(2742), - [sym_case_statement] = STATE(2742), - [sym_function_definition] = STATE(2742), - [sym_subshell] = STATE(2742), - [sym_pipeline] = STATE(2742), - [sym_list] = STATE(2742), - [sym_negated_command] = STATE(2742), - [sym_test_command] = STATE(2742), - [sym_declaration_command] = STATE(2742), - [sym_unset_command] = STATE(2742), - [sym_command] = STATE(2742), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2743), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [2656] = { - [sym_for_statement] = STATE(2744), - [sym_while_statement] = STATE(2744), - [sym_if_statement] = STATE(2744), - [sym_case_statement] = STATE(2744), - [sym_function_definition] = STATE(2744), - [sym_subshell] = STATE(2744), - [sym_pipeline] = STATE(2744), - [sym_list] = STATE(2744), - [sym_negated_command] = STATE(2744), - [sym_test_command] = STATE(2744), - [sym_declaration_command] = STATE(2744), - [sym_unset_command] = STATE(2744), - [sym_command] = STATE(2744), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2745), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [2657] = { - [sym_for_statement] = STATE(2746), - [sym_while_statement] = STATE(2746), - [sym_if_statement] = STATE(2746), - [sym_case_statement] = STATE(2746), - [sym_function_definition] = STATE(2746), - [sym_subshell] = STATE(2746), - [sym_pipeline] = STATE(2746), - [sym_list] = STATE(2746), - [sym_negated_command] = STATE(2746), - [sym_test_command] = STATE(2746), - [sym_declaration_command] = STATE(2746), - [sym_unset_command] = STATE(2746), - [sym_command] = STATE(2746), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2747), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [2658] = { - [sym_concatenation] = STATE(1567), - [sym_string] = STATE(2749), - [sym_simple_expansion] = STATE(2749), - [sym_string_expansion] = STATE(2749), - [sym_expansion] = STATE(2749), - [sym_command_substitution] = STATE(2749), - [sym_process_substitution] = STATE(2749), - [sym__special_characters] = ACTIONS(6367), - [anon_sym_DQUOTE] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2508), - [sym_raw_string] = ACTIONS(6369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), - [anon_sym_BQUOTE] = ACTIONS(2516), - [anon_sym_LT_LPAREN] = ACTIONS(2518), - [anon_sym_GT_LPAREN] = ACTIONS(2518), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6369), - }, - [2659] = { - [aux_sym_concatenation_repeat1] = STATE(2750), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(3673), - [anon_sym_esac] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_LT_LT_LT] = ACTIONS(675), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(675), - }, - [2660] = { - [aux_sym_concatenation_repeat1] = STATE(2750), - [sym_file_descriptor] = ACTIONS(689), - [sym__concat] = ACTIONS(3673), - [anon_sym_esac] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_SEMI_SEMI] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(691), - [anon_sym_AMP_GT] = ACTIONS(691), - [anon_sym_AMP_GT_GT] = ACTIONS(691), - [anon_sym_LT_AMP] = ACTIONS(691), - [anon_sym_GT_AMP] = ACTIONS(691), - [anon_sym_LT_LT] = ACTIONS(691), - [anon_sym_LT_LT_DASH] = ACTIONS(691), - [anon_sym_LT_LT_LT] = ACTIONS(691), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LF] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), - }, - [2661] = { - [aux_sym_concatenation_repeat1] = STATE(2750), - [sym_file_descriptor] = ACTIONS(2098), - [sym__concat] = ACTIONS(3673), - [anon_sym_esac] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SEMI_SEMI] = ACTIONS(2100), - [anon_sym_PIPE_AMP] = ACTIONS(2100), - [anon_sym_AMP_AMP] = ACTIONS(2100), - [anon_sym_PIPE_PIPE] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2100), - [anon_sym_AMP_GT] = ACTIONS(2100), - [anon_sym_AMP_GT_GT] = ACTIONS(2100), - [anon_sym_LT_AMP] = ACTIONS(2100), - [anon_sym_GT_AMP] = ACTIONS(2100), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_LT_LT_DASH] = ACTIONS(2100), - [anon_sym_LT_LT_LT] = ACTIONS(2100), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_LF] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2100), - }, - [2662] = { - [aux_sym_concatenation_repeat1] = STATE(2750), - [sym_file_descriptor] = ACTIONS(2102), - [sym__concat] = ACTIONS(3673), - [anon_sym_esac] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_SEMI_SEMI] = ACTIONS(2104), - [anon_sym_PIPE_AMP] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2104), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(2104), - [anon_sym_LT_AMP] = ACTIONS(2104), - [anon_sym_GT_AMP] = ACTIONS(2104), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(2104), - [anon_sym_LT_LT_LT] = ACTIONS(2104), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_LF] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2104), - }, - [2663] = { - [sym_file_redirect] = STATE(2663), - [sym_heredoc_redirect] = STATE(2663), - [sym_herestring_redirect] = STATE(2663), - [aux_sym_while_statement_repeat1] = STATE(2663), - [sym_file_descriptor] = ACTIONS(6371), - [anon_sym_esac] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_SEMI_SEMI] = ACTIONS(2115), - [anon_sym_PIPE_AMP] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(6374), - [anon_sym_GT] = ACTIONS(6374), - [anon_sym_GT_GT] = ACTIONS(6374), - [anon_sym_AMP_GT] = ACTIONS(6374), - [anon_sym_AMP_GT_GT] = ACTIONS(6374), - [anon_sym_LT_AMP] = ACTIONS(6374), - [anon_sym_GT_AMP] = ACTIONS(6374), - [anon_sym_LT_LT] = ACTIONS(3703), - [anon_sym_LT_LT_DASH] = ACTIONS(3703), - [anon_sym_LT_LT_LT] = ACTIONS(6377), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_LF] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2115), - }, - [2664] = { - [sym_variable_name] = ACTIONS(2167), - [anon_sym_esac] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_SEMI_SEMI] = ACTIONS(2169), - [anon_sym_PIPE_AMP] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [sym__special_characters] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2169), - [sym_raw_string] = ACTIONS(2169), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2169), - [anon_sym_BQUOTE] = ACTIONS(2169), - [anon_sym_LT_LPAREN] = ACTIONS(2169), - [anon_sym_GT_LPAREN] = ACTIONS(2169), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2169), - [sym_word] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_LF] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2169), - }, - [2665] = { - [sym_concatenation] = STATE(1031), - [sym_string] = STATE(571), - [sym_simple_expansion] = STATE(571), - [sym_string_expansion] = STATE(571), - [sym_expansion] = STATE(571), - [sym_command_substitution] = STATE(571), - [sym_process_substitution] = STATE(571), - [aux_sym_for_statement_repeat1] = STATE(1031), - [anon_sym_RPAREN] = ACTIONS(6380), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1135), - }, - [2666] = { - [sym__concat] = ACTIONS(2756), - [sym_variable_name] = ACTIONS(2756), - [anon_sym_esac] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_SEMI_SEMI] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [sym__special_characters] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), - [anon_sym_LT_LPAREN] = ACTIONS(2758), - [anon_sym_GT_LPAREN] = ACTIONS(2758), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), - [sym_word] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2758), - }, - [2667] = { - [sym__concat] = ACTIONS(2770), - [sym_variable_name] = ACTIONS(2770), - [anon_sym_esac] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_SEMI_SEMI] = ACTIONS(2772), - [anon_sym_PIPE_AMP] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [sym__special_characters] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), - [anon_sym_BQUOTE] = ACTIONS(2772), - [anon_sym_LT_LPAREN] = ACTIONS(2772), - [anon_sym_GT_LPAREN] = ACTIONS(2772), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2772), - [sym_word] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), - }, - [2668] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), [anon_sym_RBRACE] = ACTIONS(6382), [sym_comment] = ACTIONS(53), }, - [2669] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), + [2633] = { + [anon_sym_RBRACE] = ACTIONS(6382), + [sym_comment] = ACTIONS(53), + }, + [2634] = { + [sym_concatenation] = STATE(2797), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2797), [anon_sym_RBRACE] = ACTIONS(6384), + [anon_sym_EQ] = ACTIONS(6386), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6386), + [anon_sym_COLON_QMARK] = ACTIONS(6386), + [anon_sym_COLON_DASH] = ACTIONS(6386), + [anon_sym_PERCENT] = ACTIONS(6386), + [anon_sym_DASH] = ACTIONS(6386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2635] = { + [sym__concat] = ACTIONS(4275), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4275), + [anon_sym_AMP_AMP] = ACTIONS(4275), + [anon_sym_PIPE_PIPE] = ACTIONS(4275), + [anon_sym_EQ_TILDE] = ACTIONS(4275), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4275), + }, + [2636] = { + [sym_concatenation] = STATE(2799), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2799), + [anon_sym_RBRACE] = ACTIONS(6390), + [anon_sym_EQ] = ACTIONS(6392), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6392), + [anon_sym_COLON_QMARK] = ACTIONS(6392), + [anon_sym_COLON_DASH] = ACTIONS(6392), + [anon_sym_PERCENT] = ACTIONS(6392), + [anon_sym_DASH] = ACTIONS(6392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2637] = { + [sym__concat] = ACTIONS(4285), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4285), + [anon_sym_AMP_AMP] = ACTIONS(4285), + [anon_sym_PIPE_PIPE] = ACTIONS(4285), + [anon_sym_EQ_TILDE] = ACTIONS(4285), + [anon_sym_EQ_EQ] = ACTIONS(4285), + [anon_sym_EQ] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4285), + [anon_sym_GT] = ACTIONS(4285), + [anon_sym_BANG_EQ] = ACTIONS(4285), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4285), + }, + [2638] = { + [sym_concatenation] = STATE(2801), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2801), + [anon_sym_RBRACE] = ACTIONS(6396), + [anon_sym_EQ] = ACTIONS(6398), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6398), + [anon_sym_COLON_QMARK] = ACTIONS(6398), + [anon_sym_COLON_DASH] = ACTIONS(6398), + [anon_sym_PERCENT] = ACTIONS(6398), + [anon_sym_DASH] = ACTIONS(6398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2639] = { + [sym__concat] = ACTIONS(4295), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_EQ_TILDE] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4295), + }, + [2640] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6402), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2641] = { + [sym__concat] = ACTIONS(4301), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_EQ_TILDE] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4301), + [anon_sym_GT] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4301), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4301), + }, + [2642] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6404), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2643] = { + [sym__concat] = ACTIONS(5879), + [anon_sym_esac] = ACTIONS(5881), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_SEMI_SEMI] = ACTIONS(5881), + [anon_sym_PIPE_AMP] = ACTIONS(5881), + [anon_sym_AMP_AMP] = ACTIONS(5881), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [anon_sym_EQ_TILDE] = ACTIONS(5881), + [anon_sym_EQ_EQ] = ACTIONS(5881), + [anon_sym_EQ] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_BANG_EQ] = ACTIONS(5881), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5881), + [anon_sym_SEMI] = ACTIONS(5881), + [anon_sym_LF] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), + }, + [2644] = { + [sym__concat] = ACTIONS(5883), + [anon_sym_esac] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_SEMI_SEMI] = ACTIONS(5885), + [anon_sym_PIPE_AMP] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [anon_sym_EQ_TILDE] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5885), + [anon_sym_EQ] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_BANG_EQ] = ACTIONS(5885), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5885), + [anon_sym_SEMI] = ACTIONS(5885), + [anon_sym_LF] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + }, + [2645] = { + [sym__concat] = ACTIONS(5887), + [anon_sym_esac] = ACTIONS(5889), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_SEMI_SEMI] = ACTIONS(5889), + [anon_sym_PIPE_AMP] = ACTIONS(5889), + [anon_sym_AMP_AMP] = ACTIONS(5889), + [anon_sym_PIPE_PIPE] = ACTIONS(5889), + [anon_sym_EQ_TILDE] = ACTIONS(5889), + [anon_sym_EQ_EQ] = ACTIONS(5889), + [anon_sym_EQ] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_BANG_EQ] = ACTIONS(5889), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5889), + [anon_sym_SEMI] = ACTIONS(5889), + [anon_sym_LF] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), + }, + [2646] = { + [anon_sym_esac] = ACTIONS(6406), + [anon_sym_PIPE] = ACTIONS(6406), + [anon_sym_RPAREN] = ACTIONS(6406), + [anon_sym_SEMI_SEMI] = ACTIONS(6406), + [anon_sym_PIPE_AMP] = ACTIONS(6406), + [anon_sym_AMP_AMP] = ACTIONS(6406), + [anon_sym_PIPE_PIPE] = ACTIONS(6406), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(6406), + [anon_sym_LF] = ACTIONS(6408), + [anon_sym_AMP] = ACTIONS(6406), + }, + [2647] = { + [aux_sym_concatenation_repeat1] = STATE(2804), + [sym_file_descriptor] = ACTIONS(1173), + [sym__concat] = ACTIONS(1175), + [sym_variable_name] = ACTIONS(1173), + [anon_sym_esac] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_SEMI_SEMI] = ACTIONS(1177), + [anon_sym_PIPE_AMP] = ACTIONS(1177), + [anon_sym_AMP_AMP] = ACTIONS(1177), + [anon_sym_PIPE_PIPE] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_GT_GT] = ACTIONS(1177), + [anon_sym_AMP_GT] = ACTIONS(1177), + [anon_sym_AMP_GT_GT] = ACTIONS(1177), + [anon_sym_LT_AMP] = ACTIONS(1177), + [anon_sym_GT_AMP] = ACTIONS(1177), + [sym__special_characters] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1177), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(1177), + [anon_sym_LT_LPAREN] = ACTIONS(1177), + [anon_sym_GT_LPAREN] = ACTIONS(1177), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1177), + }, + [2648] = { + [aux_sym_concatenation_repeat1] = STATE(2804), + [sym_file_descriptor] = ACTIONS(1151), + [sym__concat] = ACTIONS(1175), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_esac] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_SEMI_SEMI] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1153), + [anon_sym_PIPE_PIPE] = ACTIONS(1153), + [anon_sym_LT] = ACTIONS(1153), + [anon_sym_GT] = ACTIONS(1153), + [anon_sym_GT_GT] = ACTIONS(1153), + [anon_sym_AMP_GT] = ACTIONS(1153), + [anon_sym_AMP_GT_GT] = ACTIONS(1153), + [anon_sym_LT_AMP] = ACTIONS(1153), + [anon_sym_GT_AMP] = ACTIONS(1153), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_LT_LPAREN] = ACTIONS(1153), + [anon_sym_GT_LPAREN] = ACTIONS(1153), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_LF] = ACTIONS(1151), + [anon_sym_AMP] = ACTIONS(1153), + }, + [2649] = { + [sym_file_redirect] = STATE(2805), + [sym_heredoc_redirect] = STATE(2805), + [sym_heredoc_body] = STATE(646), + [sym_herestring_redirect] = STATE(2805), + [aux_sym_while_statement_repeat1] = STATE(2805), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5679), + [anon_sym_esac] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5683), + [anon_sym_GT_GT] = ACTIONS(5683), + [anon_sym_AMP_GT] = ACTIONS(5683), + [anon_sym_AMP_GT_GT] = ACTIONS(5683), + [anon_sym_LT_AMP] = ACTIONS(5683), + [anon_sym_GT_AMP] = ACTIONS(5683), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(5685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LF] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1263), + }, + [2650] = { + [anon_sym_RPAREN] = ACTIONS(6410), + [sym_comment] = ACTIONS(53), + }, + [2651] = { + [sym_file_redirect] = STATE(685), + [sym_file_descriptor] = ACTIONS(6412), + [anon_sym_esac] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_SEMI_SEMI] = ACTIONS(1335), + [anon_sym_PIPE_AMP] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(6414), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_GT_GT] = ACTIONS(6414), + [anon_sym_AMP_GT] = ACTIONS(6414), + [anon_sym_AMP_GT_GT] = ACTIONS(6414), + [anon_sym_LT_AMP] = ACTIONS(6414), + [anon_sym_GT_AMP] = ACTIONS(6414), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_LF] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1335), + }, + [2652] = { + [sym_file_redirect] = STATE(2812), + [sym_heredoc_redirect] = STATE(2812), + [sym_herestring_redirect] = STATE(2812), + [aux_sym_while_statement_repeat1] = STATE(2812), + [sym_file_descriptor] = ACTIONS(6416), + [anon_sym_esac] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_SEMI_SEMI] = ACTIONS(1445), + [anon_sym_PIPE_AMP] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(6418), + [anon_sym_GT] = ACTIONS(6418), + [anon_sym_GT_GT] = ACTIONS(6418), + [anon_sym_AMP_GT] = ACTIONS(6418), + [anon_sym_AMP_GT_GT] = ACTIONS(6418), + [anon_sym_LT_AMP] = ACTIONS(6418), + [anon_sym_GT_AMP] = ACTIONS(6418), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_LT_LT_DASH] = ACTIONS(1449), + [anon_sym_LT_LT_LT] = ACTIONS(6420), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1445), + }, + [2653] = { + [sym_concatenation] = STATE(2813), + [sym_string] = STATE(2816), + [sym_array] = STATE(2813), + [sym_simple_expansion] = STATE(2816), + [sym_string_expansion] = STATE(2816), + [sym_expansion] = STATE(2816), + [sym_command_substitution] = STATE(2816), + [sym_process_substitution] = STATE(2816), + [sym__empty_value] = ACTIONS(6422), + [anon_sym_LPAREN] = ACTIONS(6424), + [sym__special_characters] = ACTIONS(6426), + [anon_sym_DQUOTE] = ACTIONS(6131), + [anon_sym_DOLLAR] = ACTIONS(5639), + [sym_raw_string] = ACTIONS(6428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6432), + [anon_sym_BQUOTE] = ACTIONS(6434), + [anon_sym_LT_LPAREN] = ACTIONS(6436), + [anon_sym_GT_LPAREN] = ACTIONS(6436), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6428), + }, + [2654] = { + [sym_string] = STATE(2817), + [sym_simple_expansion] = STATE(2817), + [sym_string_expansion] = STATE(2817), + [sym_expansion] = STATE(2817), + [sym_command_substitution] = STATE(2817), + [sym_process_substitution] = STATE(2817), + [sym__special_characters] = ACTIONS(6438), + [anon_sym_DQUOTE] = ACTIONS(6131), + [anon_sym_DOLLAR] = ACTIONS(5639), + [sym_raw_string] = ACTIONS(6438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6432), + [anon_sym_BQUOTE] = ACTIONS(6434), + [anon_sym_LT_LPAREN] = ACTIONS(6436), + [anon_sym_GT_LPAREN] = ACTIONS(6436), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6438), + }, + [2655] = { + [aux_sym_concatenation_repeat1] = STATE(2818), + [sym__concat] = ACTIONS(6125), + [sym_variable_name] = ACTIONS(731), + [anon_sym_esac] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [2656] = { + [sym__concat] = ACTIONS(735), + [sym_variable_name] = ACTIONS(735), + [anon_sym_esac] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), + [sym_word] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + }, + [2657] = { + [anon_sym_DQUOTE] = ACTIONS(6440), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [2658] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(6440), + [anon_sym_DOLLAR] = ACTIONS(6442), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [2659] = { + [sym__concat] = ACTIONS(767), + [sym_variable_name] = ACTIONS(767), + [anon_sym_esac] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [sym__special_characters] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym_raw_string] = ACTIONS(769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), + [anon_sym_BQUOTE] = ACTIONS(769), + [anon_sym_LT_LPAREN] = ACTIONS(769), + [anon_sym_GT_LPAREN] = ACTIONS(769), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(769), + [sym_word] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), + }, + [2660] = { + [sym__concat] = ACTIONS(771), + [sym_variable_name] = ACTIONS(771), + [anon_sym_esac] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [sym__special_characters] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_LT_LPAREN] = ACTIONS(773), + [anon_sym_GT_LPAREN] = ACTIONS(773), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), + [sym_word] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(773), + }, + [2661] = { + [sym__concat] = ACTIONS(775), + [sym_variable_name] = ACTIONS(775), + [anon_sym_esac] = ACTIONS(777), + [anon_sym_PIPE] = 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), + [sym__special_characters] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(777), + [sym_word] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(777), + }, + [2662] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(6444), + [sym_comment] = ACTIONS(53), + }, + [2663] = { + [sym_concatenation] = STATE(2824), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2824), + [anon_sym_RBRACE] = ACTIONS(6446), + [anon_sym_EQ] = ACTIONS(6448), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6452), + [anon_sym_COLON] = ACTIONS(6448), + [anon_sym_COLON_QMARK] = ACTIONS(6448), + [anon_sym_COLON_DASH] = ACTIONS(6448), + [anon_sym_PERCENT] = ACTIONS(6448), + [anon_sym_DASH] = ACTIONS(6448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2664] = { + [sym_subscript] = STATE(2828), + [sym_variable_name] = ACTIONS(6454), + [anon_sym_DOLLAR] = ACTIONS(6456), + [anon_sym_DASH] = ACTIONS(6456), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6458), + [anon_sym_STAR] = ACTIONS(6456), + [anon_sym_AT] = ACTIONS(6456), + [anon_sym_QMARK] = ACTIONS(6456), + [anon_sym_0] = ACTIONS(6460), + [anon_sym__] = ACTIONS(6460), + }, + [2665] = { + [sym_concatenation] = STATE(2831), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2831), + [anon_sym_RBRACE] = ACTIONS(6462), + [anon_sym_EQ] = ACTIONS(6464), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6468), + [anon_sym_COLON] = ACTIONS(6464), + [anon_sym_COLON_QMARK] = ACTIONS(6464), + [anon_sym_COLON_DASH] = ACTIONS(6464), + [anon_sym_PERCENT] = ACTIONS(6464), + [anon_sym_DASH] = ACTIONS(6464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2666] = { + [sym_concatenation] = STATE(2834), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2834), + [anon_sym_RBRACE] = ACTIONS(6470), + [anon_sym_EQ] = ACTIONS(6472), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6476), + [anon_sym_COLON] = ACTIONS(6472), + [anon_sym_COLON_QMARK] = ACTIONS(6472), + [anon_sym_COLON_DASH] = ACTIONS(6472), + [anon_sym_PERCENT] = ACTIONS(6472), + [anon_sym_DASH] = ACTIONS(6472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2667] = { + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(6478), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), + }, + [2668] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(6478), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + }, + [2669] = { + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(6478), [sym_comment] = ACTIONS(53), }, [2670] = { - [anon_sym_RBRACE] = ACTIONS(6384), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(6478), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [2671] = { - [sym_concatenation] = STATE(2755), - [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), - [aux_sym_expansion_repeat1] = STATE(2755), - [anon_sym_RBRACE] = ACTIONS(6386), - [anon_sym_EQ] = ACTIONS(6388), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6390), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6388), - [anon_sym_COLON_QMARK] = ACTIONS(6388), - [anon_sym_COLON_DASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6388), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(6480), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), }, [2672] = { - [sym__concat] = ACTIONS(2852), - [sym_variable_name] = ACTIONS(2852), - [anon_sym_esac] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_SEMI_SEMI] = ACTIONS(2854), - [anon_sym_PIPE_AMP] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [sym__special_characters] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), - [anon_sym_BQUOTE] = ACTIONS(2854), - [anon_sym_LT_LPAREN] = ACTIONS(2854), - [anon_sym_GT_LPAREN] = ACTIONS(2854), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2854), - [sym_word] = ACTIONS(2854), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(6480), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [2673] = { - [sym_concatenation] = STATE(2758), - [sym_string] = STATE(2757), - [sym_simple_expansion] = STATE(2757), - [sym_string_expansion] = STATE(2757), - [sym_expansion] = STATE(2757), - [sym_command_substitution] = STATE(2757), - [sym_process_substitution] = STATE(2757), - [anon_sym_RBRACE] = ACTIONS(6384), - [sym__special_characters] = ACTIONS(6392), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(6394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6394), + [sym_variable_assignment] = STATE(2432), + [sym_subscript] = STATE(2433), + [sym_concatenation] = STATE(2432), + [sym_string] = STATE(2426), + [sym_simple_expansion] = STATE(2426), + [sym_string_expansion] = STATE(2426), + [sym_expansion] = STATE(2426), + [sym_command_substitution] = STATE(2426), + [sym_process_substitution] = STATE(2426), + [aux_sym_declaration_command_repeat1] = STATE(2673), + [sym_variable_name] = ACTIONS(6482), + [anon_sym_esac] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_SEMI_SEMI] = ACTIONS(1596), + [anon_sym_PIPE_AMP] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [sym__special_characters] = ACTIONS(6485), + [anon_sym_DQUOTE] = ACTIONS(6488), + [anon_sym_DOLLAR] = ACTIONS(6491), + [sym_raw_string] = ACTIONS(6494), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6500), + [anon_sym_BQUOTE] = ACTIONS(6503), + [anon_sym_LT_LPAREN] = ACTIONS(6506), + [anon_sym_GT_LPAREN] = ACTIONS(6506), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6509), + [sym_word] = ACTIONS(6494), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_LF] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1596), }, [2674] = { - [sym__concat] = ACTIONS(2895), - [sym_variable_name] = ACTIONS(2895), - [anon_sym_esac] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_SEMI_SEMI] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), - [sym_word] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2897), + [sym_string] = STATE(2837), + [sym_simple_expansion] = STATE(2837), + [sym_string_expansion] = STATE(2837), + [sym_expansion] = STATE(2837), + [sym_command_substitution] = STATE(2837), + [sym_process_substitution] = STATE(2837), + [sym__special_characters] = ACTIONS(6512), + [anon_sym_DQUOTE] = ACTIONS(6157), + [anon_sym_DOLLAR] = ACTIONS(5657), + [sym_raw_string] = ACTIONS(6512), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6516), + [anon_sym_BQUOTE] = ACTIONS(6518), + [anon_sym_LT_LPAREN] = ACTIONS(6520), + [anon_sym_GT_LPAREN] = ACTIONS(6520), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6512), }, [2675] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6396), + [aux_sym_concatenation_repeat1] = STATE(2838), + [sym__concat] = ACTIONS(6151), + [anon_sym_esac] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, [2676] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6398), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(735), + [anon_sym_esac] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), + [sym_word] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), }, [2677] = { - [sym__concat] = ACTIONS(2903), - [sym_variable_name] = ACTIONS(2903), - [anon_sym_esac] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [anon_sym_PIPE_AMP] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_PIPE_PIPE] = ACTIONS(2905), - [sym__special_characters] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), - [anon_sym_BQUOTE] = ACTIONS(2905), - [anon_sym_LT_LPAREN] = ACTIONS(2905), - [anon_sym_GT_LPAREN] = ACTIONS(2905), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2905), - [sym_word] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(6522), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [2678] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6400), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(427), + [anon_sym_DQUOTE] = ACTIONS(6522), + [anon_sym_DOLLAR] = ACTIONS(6524), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [2679] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6402), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__concat] = ACTIONS(767), + [anon_sym_esac] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [sym__special_characters] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [sym_raw_string] = ACTIONS(769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), + [anon_sym_BQUOTE] = ACTIONS(769), + [anon_sym_LT_LPAREN] = ACTIONS(769), + [anon_sym_GT_LPAREN] = ACTIONS(769), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(769), + [sym_word] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), }, [2680] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6404), + [sym__concat] = ACTIONS(771), + [anon_sym_esac] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [sym__special_characters] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(773), + [sym_raw_string] = ACTIONS(773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_LT_LPAREN] = ACTIONS(773), + [anon_sym_GT_LPAREN] = ACTIONS(773), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), + [sym_word] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(773), }, [2681] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6384), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [sym__concat] = ACTIONS(775), + [anon_sym_esac] = ACTIONS(777), + [anon_sym_PIPE] = 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), + [sym__special_characters] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(777), + [sym_word] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(777), }, [2682] = { - [sym_concatenation] = STATE(2765), - [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), - [aux_sym_expansion_repeat1] = STATE(2765), - [anon_sym_RBRACE] = ACTIONS(6406), - [anon_sym_EQ] = ACTIONS(6408), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6408), - [anon_sym_COLON_QMARK] = ACTIONS(6408), - [anon_sym_COLON_DASH] = ACTIONS(6408), - [anon_sym_PERCENT] = ACTIONS(6408), - [anon_sym_DASH] = ACTIONS(6408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(6526), + [sym_comment] = ACTIONS(53), }, [2683] = { - [sym__concat] = ACTIONS(2919), - [sym_variable_name] = ACTIONS(2919), - [anon_sym_esac] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_SEMI_SEMI] = ACTIONS(2921), - [anon_sym_PIPE_AMP] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_PIPE_PIPE] = ACTIONS(2921), - [sym__special_characters] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), - [anon_sym_BQUOTE] = ACTIONS(2921), - [anon_sym_LT_LPAREN] = ACTIONS(2921), - [anon_sym_GT_LPAREN] = ACTIONS(2921), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2921), - [sym_word] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2921), + [sym_concatenation] = STATE(2844), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2844), + [anon_sym_RBRACE] = ACTIONS(6528), + [anon_sym_EQ] = ACTIONS(6530), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6534), + [anon_sym_COLON] = ACTIONS(6530), + [anon_sym_COLON_QMARK] = ACTIONS(6530), + [anon_sym_COLON_DASH] = ACTIONS(6530), + [anon_sym_PERCENT] = ACTIONS(6530), + [anon_sym_DASH] = ACTIONS(6530), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2684] = { - [sym_concatenation] = STATE(2767), - [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), - [aux_sym_expansion_repeat1] = STATE(2767), - [anon_sym_RBRACE] = ACTIONS(6412), - [anon_sym_EQ] = ACTIONS(6414), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6416), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6414), - [anon_sym_COLON_QMARK] = ACTIONS(6414), - [anon_sym_COLON_DASH] = ACTIONS(6414), - [anon_sym_PERCENT] = ACTIONS(6414), - [anon_sym_DASH] = ACTIONS(6414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_subscript] = STATE(2848), + [sym_variable_name] = ACTIONS(6536), + [anon_sym_DOLLAR] = ACTIONS(6538), + [anon_sym_DASH] = ACTIONS(6538), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6540), + [anon_sym_STAR] = ACTIONS(6538), + [anon_sym_AT] = ACTIONS(6538), + [anon_sym_QMARK] = ACTIONS(6538), + [anon_sym_0] = ACTIONS(6542), + [anon_sym__] = ACTIONS(6542), }, [2685] = { - [sym__concat] = ACTIONS(2756), - [anon_sym_esac] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_SEMI_SEMI] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [sym__special_characters] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [anon_sym_DOLLAR] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), - [anon_sym_LT_LPAREN] = ACTIONS(2758), - [anon_sym_GT_LPAREN] = ACTIONS(2758), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), - [sym_word] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2758), + [sym_concatenation] = STATE(2851), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2851), + [anon_sym_RBRACE] = ACTIONS(6544), + [anon_sym_EQ] = ACTIONS(6546), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6548), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6550), + [anon_sym_COLON] = ACTIONS(6546), + [anon_sym_COLON_QMARK] = ACTIONS(6546), + [anon_sym_COLON_DASH] = ACTIONS(6546), + [anon_sym_PERCENT] = ACTIONS(6546), + [anon_sym_DASH] = ACTIONS(6546), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2686] = { - [sym__concat] = ACTIONS(2770), - [anon_sym_esac] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_SEMI_SEMI] = ACTIONS(2772), - [anon_sym_PIPE_AMP] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [sym__special_characters] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [anon_sym_DOLLAR] = ACTIONS(2772), - [sym_raw_string] = ACTIONS(2772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), - [anon_sym_BQUOTE] = ACTIONS(2772), - [anon_sym_LT_LPAREN] = ACTIONS(2772), - [anon_sym_GT_LPAREN] = ACTIONS(2772), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2772), - [sym_word] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), + [sym_concatenation] = STATE(2854), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2854), + [anon_sym_RBRACE] = ACTIONS(6552), + [anon_sym_EQ] = ACTIONS(6554), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6556), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6558), + [anon_sym_COLON] = ACTIONS(6554), + [anon_sym_COLON_QMARK] = ACTIONS(6554), + [anon_sym_COLON_DASH] = ACTIONS(6554), + [anon_sym_PERCENT] = ACTIONS(6554), + [anon_sym_DASH] = ACTIONS(6554), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2687] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6418), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(6560), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), [sym_comment] = ACTIONS(53), }, [2688] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6420), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(6560), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [2689] = { - [anon_sym_RBRACE] = ACTIONS(6420), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(6560), [sym_comment] = ACTIONS(53), }, [2690] = { - [sym_concatenation] = STATE(2771), - [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), - [aux_sym_expansion_repeat1] = STATE(2771), - [anon_sym_RBRACE] = ACTIONS(6422), - [anon_sym_EQ] = ACTIONS(6424), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6426), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6424), - [anon_sym_COLON_QMARK] = ACTIONS(6424), - [anon_sym_COLON_DASH] = ACTIONS(6424), - [anon_sym_PERCENT] = ACTIONS(6424), - [anon_sym_DASH] = ACTIONS(6424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(6560), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), }, [2691] = { - [sym__concat] = ACTIONS(2852), - [anon_sym_esac] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_SEMI_SEMI] = ACTIONS(2854), - [anon_sym_PIPE_AMP] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [sym__special_characters] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_DOLLAR] = ACTIONS(2854), - [sym_raw_string] = ACTIONS(2854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), - [anon_sym_BQUOTE] = ACTIONS(2854), - [anon_sym_LT_LPAREN] = ACTIONS(2854), - [anon_sym_GT_LPAREN] = ACTIONS(2854), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2854), - [sym_word] = ACTIONS(2854), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(6562), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(53), }, [2692] = { - [sym_concatenation] = STATE(2774), - [sym_string] = STATE(2773), - [sym_simple_expansion] = STATE(2773), - [sym_string_expansion] = STATE(2773), - [sym_expansion] = STATE(2773), - [sym_command_substitution] = STATE(2773), - [sym_process_substitution] = STATE(2773), - [anon_sym_RBRACE] = ACTIONS(6420), - [sym__special_characters] = ACTIONS(6428), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(6430), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(6562), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6430), + [sym_word] = ACTIONS(371), }, [2693] = { - [sym__concat] = ACTIONS(2895), - [anon_sym_esac] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_SEMI_SEMI] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), - [sym_word] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2897), + [sym_concatenation] = STATE(2693), + [sym_string] = STATE(2438), + [sym_simple_expansion] = STATE(2438), + [sym_string_expansion] = STATE(2438), + [sym_expansion] = STATE(2438), + [sym_command_substitution] = STATE(2438), + [sym_process_substitution] = STATE(2438), + [aux_sym_unset_command_repeat1] = STATE(2693), + [anon_sym_esac] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_SEMI_SEMI] = ACTIONS(1679), + [anon_sym_PIPE_AMP] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [sym__special_characters] = ACTIONS(6564), + [anon_sym_DQUOTE] = ACTIONS(6567), + [anon_sym_DOLLAR] = ACTIONS(6570), + [sym_raw_string] = ACTIONS(6573), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6576), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6579), + [anon_sym_BQUOTE] = ACTIONS(6582), + [anon_sym_LT_LPAREN] = ACTIONS(6585), + [anon_sym_GT_LPAREN] = ACTIONS(6585), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6588), + [sym_word] = ACTIONS(6573), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_LF] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1679), }, [2694] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6432), + [aux_sym_concatenation_repeat1] = STATE(2694), + [sym__simple_heredoc_body] = ACTIONS(1754), + [sym__heredoc_body_beginning] = ACTIONS(1754), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(1758), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_EQ_TILDE] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1756), + [anon_sym_LT_LT_LT] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), }, [2695] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6434), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_compound_statement] = STATE(2857), + [anon_sym_LBRACE] = ACTIONS(483), + [sym_comment] = ACTIONS(53), }, [2696] = { - [sym__concat] = ACTIONS(2903), - [anon_sym_esac] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [anon_sym_PIPE_AMP] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_PIPE_PIPE] = ACTIONS(2905), - [sym__special_characters] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [anon_sym_DOLLAR] = ACTIONS(2905), - [sym_raw_string] = ACTIONS(2905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), - [anon_sym_BQUOTE] = ACTIONS(2905), - [anon_sym_LT_LPAREN] = ACTIONS(2905), - [anon_sym_GT_LPAREN] = ACTIONS(2905), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2905), - [sym_word] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_esac] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(2140), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_LF] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2140), }, [2697] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6436), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_esac] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(2140), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_LF] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2140), }, [2698] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6438), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(1046), + [sym_string] = STATE(2859), + [sym_simple_expansion] = STATE(2859), + [sym_string_expansion] = STATE(2859), + [sym_expansion] = STATE(2859), + [sym_command_substitution] = STATE(2859), + [sym_process_substitution] = STATE(2859), + [sym__special_characters] = ACTIONS(6591), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(6593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6593), }, [2699] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6440), + [aux_sym_concatenation_repeat1] = STATE(2445), + [sym__simple_heredoc_body] = ACTIONS(2172), + [sym__heredoc_body_beginning] = ACTIONS(2172), + [sym_file_descriptor] = ACTIONS(2172), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_SEMI_SEMI] = ACTIONS(2174), + [anon_sym_PIPE_AMP] = ACTIONS(2174), + [anon_sym_AMP_AMP] = ACTIONS(2174), + [anon_sym_PIPE_PIPE] = ACTIONS(2174), + [anon_sym_EQ_TILDE] = ACTIONS(2174), + [anon_sym_EQ_EQ] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_GT_GT] = ACTIONS(2174), + [anon_sym_AMP_GT] = ACTIONS(2174), + [anon_sym_AMP_GT_GT] = ACTIONS(2174), + [anon_sym_LT_AMP] = ACTIONS(2174), + [anon_sym_GT_AMP] = ACTIONS(2174), + [anon_sym_LT_LT] = ACTIONS(2174), + [anon_sym_LT_LT_DASH] = ACTIONS(2174), + [anon_sym_LT_LT_LT] = ACTIONS(2174), + [sym__special_characters] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2174), + [sym_raw_string] = ACTIONS(2174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2174), + [anon_sym_BQUOTE] = ACTIONS(2174), + [anon_sym_LT_LPAREN] = ACTIONS(2174), + [anon_sym_GT_LPAREN] = ACTIONS(2174), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_LF] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2174), }, [2700] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6420), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(2445), + [sym__simple_heredoc_body] = ACTIONS(2176), + [sym__heredoc_body_beginning] = ACTIONS(2176), + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_EQ_TILDE] = ACTIONS(2178), + [anon_sym_EQ_EQ] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2178), + [anon_sym_LT_LT_LT] = ACTIONS(2178), + [sym__special_characters] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [sym_raw_string] = ACTIONS(2178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), + [anon_sym_BQUOTE] = ACTIONS(2178), + [anon_sym_LT_LPAREN] = ACTIONS(2178), + [anon_sym_GT_LPAREN] = ACTIONS(2178), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), }, [2701] = { - [sym_concatenation] = STATE(2781), - [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), - [aux_sym_expansion_repeat1] = STATE(2781), - [anon_sym_RBRACE] = ACTIONS(6442), - [anon_sym_EQ] = ACTIONS(6444), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6446), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6444), - [anon_sym_COLON_QMARK] = ACTIONS(6444), - [anon_sym_COLON_DASH] = ACTIONS(6444), - [anon_sym_PERCENT] = ACTIONS(6444), - [anon_sym_DASH] = ACTIONS(6444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(2860), + [sym__simple_heredoc_body] = ACTIONS(697), + [sym__heredoc_body_beginning] = ACTIONS(697), + [sym_file_descriptor] = ACTIONS(697), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(701), + [anon_sym_PIPE] = 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(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(701), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(701), + [anon_sym_LT_AMP] = ACTIONS(701), + [anon_sym_GT_AMP] = ACTIONS(701), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(701), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(701), }, [2702] = { - [sym__concat] = ACTIONS(2919), - [anon_sym_esac] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_SEMI_SEMI] = ACTIONS(2921), - [anon_sym_PIPE_AMP] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_PIPE_PIPE] = ACTIONS(2921), - [sym__special_characters] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2921), - [sym_raw_string] = ACTIONS(2921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), - [anon_sym_BQUOTE] = ACTIONS(2921), - [anon_sym_LT_LPAREN] = ACTIONS(2921), - [anon_sym_GT_LPAREN] = ACTIONS(2921), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2921), - [sym_word] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2921), + [aux_sym_concatenation_repeat1] = STATE(2860), + [sym__simple_heredoc_body] = ACTIONS(715), + [sym__heredoc_body_beginning] = ACTIONS(715), + [sym_file_descriptor] = ACTIONS(715), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(717), + [anon_sym_PIPE_PIPE] = ACTIONS(717), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(717), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(717), + [anon_sym_LT_AMP] = ACTIONS(717), + [anon_sym_GT_AMP] = ACTIONS(717), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(717), + [anon_sym_LT_LT_LT] = ACTIONS(717), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), }, [2703] = { - [sym_concatenation] = STATE(2783), - [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), - [aux_sym_expansion_repeat1] = STATE(2783), - [anon_sym_RBRACE] = ACTIONS(6448), - [anon_sym_EQ] = ACTIONS(6450), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6450), - [anon_sym_COLON_QMARK] = ACTIONS(6450), - [anon_sym_COLON_DASH] = ACTIONS(6450), - [anon_sym_PERCENT] = ACTIONS(6450), - [anon_sym_DASH] = ACTIONS(6450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(2860), + [sym__simple_heredoc_body] = ACTIONS(2184), + [sym__heredoc_body_beginning] = ACTIONS(2184), + [sym_file_descriptor] = ACTIONS(2184), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_SEMI_SEMI] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(2186), + [anon_sym_AMP_AMP] = ACTIONS(2186), + [anon_sym_PIPE_PIPE] = ACTIONS(2186), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_GT] = ACTIONS(2186), + [anon_sym_GT_GT] = ACTIONS(2186), + [anon_sym_AMP_GT] = ACTIONS(2186), + [anon_sym_AMP_GT_GT] = ACTIONS(2186), + [anon_sym_LT_AMP] = ACTIONS(2186), + [anon_sym_GT_AMP] = ACTIONS(2186), + [anon_sym_LT_LT] = ACTIONS(2186), + [anon_sym_LT_LT_DASH] = ACTIONS(2186), + [anon_sym_LT_LT_LT] = ACTIONS(2186), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_LF] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), }, [2704] = { - [aux_sym_concatenation_repeat1] = STATE(2704), - [sym__simple_heredoc_body] = ACTIONS(1672), - [sym__heredoc_body_beginning] = ACTIONS(1672), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(1676), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_LT_LT_LT] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), + [aux_sym_concatenation_repeat1] = STATE(2860), + [sym__simple_heredoc_body] = ACTIONS(2188), + [sym__heredoc_body_beginning] = ACTIONS(2188), + [sym_file_descriptor] = ACTIONS(2188), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_SEMI_SEMI] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2190), + [anon_sym_LT_LT_LT] = ACTIONS(2190), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2190), }, [2705] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(6069), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6069), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6069), + [sym_file_redirect] = STATE(2705), + [sym_heredoc_redirect] = STATE(2705), + [sym_herestring_redirect] = STATE(2705), + [aux_sym_while_statement_repeat1] = STATE(2705), + [sym__simple_heredoc_body] = ACTIONS(2196), + [sym__heredoc_body_beginning] = ACTIONS(2196), + [sym_file_descriptor] = ACTIONS(6595), + [anon_sym_esac] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_SEMI_SEMI] = ACTIONS(2201), + [anon_sym_PIPE_AMP] = ACTIONS(2201), + [anon_sym_AMP_AMP] = ACTIONS(2201), + [anon_sym_PIPE_PIPE] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6598), + [anon_sym_GT_GT] = ACTIONS(6598), + [anon_sym_AMP_GT] = ACTIONS(6598), + [anon_sym_AMP_GT_GT] = ACTIONS(6598), + [anon_sym_LT_AMP] = ACTIONS(6598), + [anon_sym_GT_AMP] = ACTIONS(6598), + [anon_sym_LT_LT] = ACTIONS(2206), + [anon_sym_LT_LT_DASH] = ACTIONS(2206), + [anon_sym_LT_LT_LT] = ACTIONS(6601), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2201), }, [2706] = { - [sym__special_characters] = ACTIONS(6071), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6069), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6071), + [sym_file_redirect] = STATE(2705), + [sym_heredoc_redirect] = STATE(2705), + [sym_heredoc_body] = STATE(1048), + [sym_herestring_redirect] = STATE(2705), + [aux_sym_while_statement_repeat1] = STATE(2705), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5679), + [anon_sym_esac] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5683), + [anon_sym_GT_GT] = ACTIONS(5683), + [anon_sym_AMP_GT] = ACTIONS(5683), + [anon_sym_AMP_GT_GT] = ACTIONS(5683), + [anon_sym_LT_AMP] = ACTIONS(5683), + [anon_sym_GT_AMP] = ACTIONS(5683), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(5685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2192), }, [2707] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6454), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), + [sym_concatenation] = STATE(202), + [sym_string] = STATE(2455), + [sym_simple_expansion] = STATE(2455), + [sym_string_expansion] = STATE(2455), + [sym_expansion] = STATE(2455), + [sym_command_substitution] = STATE(2455), + [sym_process_substitution] = STATE(2455), + [aux_sym_command_repeat2] = STATE(2707), + [sym__simple_heredoc_body] = ACTIONS(2176), + [sym__heredoc_body_beginning] = ACTIONS(2176), + [sym_file_descriptor] = ACTIONS(2176), + [anon_sym_esac] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_EQ_TILDE] = ACTIONS(6604), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2178), + [anon_sym_LT_LT_LT] = ACTIONS(2178), + [sym__special_characters] = ACTIONS(6607), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2221), + [sym_raw_string] = ACTIONS(6610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), + [anon_sym_BQUOTE] = ACTIONS(2233), + [anon_sym_LT_LPAREN] = ACTIONS(2236), + [anon_sym_GT_LPAREN] = ACTIONS(2236), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(6610), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), }, [2708] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6454), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_esac] = ACTIONS(6613), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(6615), + [anon_sym_DQUOTE] = ACTIONS(6617), + [anon_sym_DOLLAR] = ACTIONS(6615), + [sym_raw_string] = ACTIONS(6617), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6617), + [anon_sym_BQUOTE] = ACTIONS(6617), + [anon_sym_LT_LPAREN] = ACTIONS(6617), + [anon_sym_GT_LPAREN] = ACTIONS(6617), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6615), }, [2709] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6079), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6079), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6079), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6079), - [anon_sym_BQUOTE] = ACTIONS(6079), - [anon_sym_LT_LPAREN] = ACTIONS(6079), - [anon_sym_GT_LPAREN] = ACTIONS(6079), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6077), + [sym_file_redirect] = STATE(2861), + [sym_heredoc_redirect] = STATE(2861), + [sym_heredoc_body] = STATE(1048), + [sym_herestring_redirect] = STATE(2861), + [sym_concatenation] = STATE(202), + [sym_string] = STATE(2455), + [sym_simple_expansion] = STATE(2455), + [sym_string_expansion] = STATE(2455), + [sym_expansion] = STATE(2455), + [sym_command_substitution] = STATE(2455), + [sym_process_substitution] = STATE(2455), + [aux_sym_while_statement_repeat1] = STATE(2861), + [aux_sym_command_repeat2] = STATE(2707), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5679), + [anon_sym_esac] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_EQ_TILDE] = ACTIONS(5681), + [anon_sym_EQ_EQ] = ACTIONS(5681), + [anon_sym_LT] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5683), + [anon_sym_GT_GT] = ACTIONS(5683), + [anon_sym_AMP_GT] = ACTIONS(5683), + [anon_sym_AMP_GT_GT] = ACTIONS(5683), + [anon_sym_LT_AMP] = ACTIONS(5683), + [anon_sym_GT_AMP] = ACTIONS(5683), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(5685), + [sym__special_characters] = ACTIONS(5687), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5689), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2192), }, [2710] = { - [sym__special_characters] = ACTIONS(6079), - [anon_sym_DQUOTE] = ACTIONS(6079), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6079), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6079), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6079), - [anon_sym_BQUOTE] = ACTIONS(6079), - [anon_sym_LT_LPAREN] = ACTIONS(6079), - [anon_sym_GT_LPAREN] = ACTIONS(6079), + [anon_sym_esac] = ACTIONS(6613), + [sym__special_characters] = ACTIONS(6617), + [anon_sym_DQUOTE] = ACTIONS(6617), + [anon_sym_DOLLAR] = ACTIONS(6615), + [sym_raw_string] = ACTIONS(6617), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6617), + [anon_sym_BQUOTE] = ACTIONS(6617), + [anon_sym_LT_LPAREN] = ACTIONS(6617), + [anon_sym_GT_LPAREN] = ACTIONS(6617), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6079), + [sym_word] = ACTIONS(6615), }, [2711] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6456), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), + [anon_sym_esac] = ACTIONS(6613), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(6619), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2712] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6456), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_esac] = ACTIONS(6613), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(6619), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2713] = { - [sym_file_descriptor] = ACTIONS(5419), - [sym__concat] = ACTIONS(5419), - [anon_sym_esac] = ACTIONS(5421), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5421), - [anon_sym_SEMI_SEMI] = ACTIONS(5421), - [anon_sym_PIPE_AMP] = ACTIONS(5421), - [anon_sym_AMP_AMP] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5421), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_GT_GT] = ACTIONS(5421), - [anon_sym_AMP_GT] = ACTIONS(5421), - [anon_sym_AMP_GT_GT] = ACTIONS(5421), - [anon_sym_LT_AMP] = ACTIONS(5421), - [anon_sym_GT_AMP] = ACTIONS(5421), - [anon_sym_LT_LT] = ACTIONS(5421), - [anon_sym_LT_LT_DASH] = ACTIONS(5421), - [anon_sym_LT_LT_LT] = ACTIONS(5421), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5421), - [anon_sym_LF] = ACTIONS(5419), - [anon_sym_AMP] = ACTIONS(5421), + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_esac] = ACTIONS(6621), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(6623), + [anon_sym_DQUOTE] = ACTIONS(6625), + [anon_sym_DOLLAR] = ACTIONS(6623), + [sym_raw_string] = ACTIONS(6625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6625), + [anon_sym_BQUOTE] = ACTIONS(6625), + [anon_sym_LT_LPAREN] = ACTIONS(6625), + [anon_sym_GT_LPAREN] = ACTIONS(6625), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6623), }, [2714] = { - [sym_file_descriptor] = ACTIONS(5423), - [sym__concat] = ACTIONS(5423), - [anon_sym_esac] = ACTIONS(5425), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5425), - [anon_sym_SEMI_SEMI] = ACTIONS(5425), - [anon_sym_PIPE_AMP] = ACTIONS(5425), - [anon_sym_AMP_AMP] = ACTIONS(5425), - [anon_sym_PIPE_PIPE] = ACTIONS(5425), - [anon_sym_LT] = ACTIONS(5425), - [anon_sym_GT] = ACTIONS(5425), - [anon_sym_GT_GT] = ACTIONS(5425), - [anon_sym_AMP_GT] = ACTIONS(5425), - [anon_sym_AMP_GT_GT] = ACTIONS(5425), - [anon_sym_LT_AMP] = ACTIONS(5425), - [anon_sym_GT_AMP] = ACTIONS(5425), - [anon_sym_LT_LT] = ACTIONS(5425), - [anon_sym_LT_LT_DASH] = ACTIONS(5425), - [anon_sym_LT_LT_LT] = ACTIONS(5425), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5425), - [anon_sym_LF] = ACTIONS(5423), - [anon_sym_AMP] = ACTIONS(5425), + [anon_sym_esac] = ACTIONS(6621), + [sym__special_characters] = ACTIONS(6625), + [anon_sym_DQUOTE] = ACTIONS(6625), + [anon_sym_DOLLAR] = ACTIONS(6623), + [sym_raw_string] = ACTIONS(6625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6625), + [anon_sym_BQUOTE] = ACTIONS(6625), + [anon_sym_LT_LPAREN] = ACTIONS(6625), + [anon_sym_GT_LPAREN] = ACTIONS(6625), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6623), }, [2715] = { - [sym_file_descriptor] = ACTIONS(5427), - [sym__concat] = ACTIONS(5427), - [anon_sym_esac] = ACTIONS(5429), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_SEMI_SEMI] = ACTIONS(5429), - [anon_sym_PIPE_AMP] = ACTIONS(5429), - [anon_sym_AMP_AMP] = ACTIONS(5429), - [anon_sym_PIPE_PIPE] = ACTIONS(5429), - [anon_sym_LT] = ACTIONS(5429), - [anon_sym_GT] = ACTIONS(5429), - [anon_sym_GT_GT] = ACTIONS(5429), - [anon_sym_AMP_GT] = ACTIONS(5429), - [anon_sym_AMP_GT_GT] = ACTIONS(5429), - [anon_sym_LT_AMP] = ACTIONS(5429), - [anon_sym_GT_AMP] = ACTIONS(5429), - [anon_sym_LT_LT] = ACTIONS(5429), - [anon_sym_LT_LT_DASH] = ACTIONS(5429), - [anon_sym_LT_LT_LT] = ACTIONS(5429), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5427), - [anon_sym_AMP] = ACTIONS(5429), + [anon_sym_esac] = ACTIONS(6621), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(6627), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2716] = { - [sym_file_descriptor] = ACTIONS(4831), - [sym__concat] = ACTIONS(4831), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_PIPE_AMP] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4831), - [anon_sym_PIPE_PIPE] = ACTIONS(4831), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_GT_GT] = ACTIONS(4831), - [anon_sym_AMP_GT] = ACTIONS(4833), - [anon_sym_AMP_GT_GT] = ACTIONS(4831), - [anon_sym_LT_AMP] = ACTIONS(4831), - [anon_sym_GT_AMP] = ACTIONS(4831), - [anon_sym_LT_LT] = ACTIONS(4833), - [anon_sym_LT_LT_DASH] = ACTIONS(4831), - [anon_sym_LT_LT_LT] = ACTIONS(4831), - [anon_sym_BQUOTE] = ACTIONS(4831), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_esac] = ACTIONS(6621), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_SEMI_SEMI] = ACTIONS(6627), + [anon_sym_PIPE_AMP] = ACTIONS(5673), + [anon_sym_AMP_AMP] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2717] = { - [sym_file_descriptor] = ACTIONS(4835), - [sym__concat] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_PIPE_AMP] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4835), - [anon_sym_AMP_GT] = ACTIONS(4837), - [anon_sym_AMP_GT_GT] = ACTIONS(4835), - [anon_sym_LT_AMP] = ACTIONS(4835), - [anon_sym_GT_AMP] = ACTIONS(4835), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_LT_LT_DASH] = ACTIONS(4835), - [anon_sym_LT_LT_LT] = ACTIONS(4835), - [anon_sym_BQUOTE] = ACTIONS(4835), + [sym__special_characters] = ACTIONS(5627), + [anon_sym_DQUOTE] = ACTIONS(5627), + [anon_sym_DOLLAR] = ACTIONS(5629), + [sym_raw_string] = ACTIONS(5627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5627), + [anon_sym_BQUOTE] = ACTIONS(5627), + [anon_sym_LT_LPAREN] = ACTIONS(5627), + [anon_sym_GT_LPAREN] = ACTIONS(5627), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5627), }, [2718] = { - [sym_file_descriptor] = ACTIONS(4839), - [sym__concat] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_PIPE_AMP] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_GT_GT] = ACTIONS(4839), - [anon_sym_AMP_GT] = ACTIONS(4841), - [anon_sym_AMP_GT_GT] = ACTIONS(4839), - [anon_sym_LT_AMP] = ACTIONS(4839), - [anon_sym_GT_AMP] = ACTIONS(4839), - [anon_sym_LT_LT] = ACTIONS(4841), - [anon_sym_LT_LT_DASH] = ACTIONS(4839), - [anon_sym_LT_LT_LT] = ACTIONS(4839), - [anon_sym_BQUOTE] = ACTIONS(4839), - [sym_comment] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(6629), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2719] = { - [sym_file_descriptor] = ACTIONS(4843), - [sym__concat] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_PIPE_AMP] = ACTIONS(4843), - [anon_sym_AMP_AMP] = ACTIONS(4843), - [anon_sym_PIPE_PIPE] = ACTIONS(4843), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_GT_GT] = ACTIONS(4843), - [anon_sym_AMP_GT] = ACTIONS(4845), - [anon_sym_AMP_GT_GT] = ACTIONS(4843), - [anon_sym_LT_AMP] = ACTIONS(4843), - [anon_sym_GT_AMP] = ACTIONS(4843), - [anon_sym_LT_LT] = ACTIONS(4845), - [anon_sym_LT_LT_DASH] = ACTIONS(4843), - [anon_sym_LT_LT_LT] = ACTIONS(4843), - [anon_sym_BQUOTE] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(6629), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2720] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6458), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__terminated_statement] = STATE(2868), + [sym_for_statement] = STATE(2866), + [sym_c_style_for_statement] = STATE(2866), + [sym_while_statement] = STATE(2866), + [sym_if_statement] = STATE(2866), + [sym_case_statement] = STATE(2866), + [sym_function_definition] = STATE(2866), + [sym_subshell] = STATE(2866), + [sym_pipeline] = STATE(2866), + [sym_list] = STATE(2866), + [sym_negated_command] = STATE(2866), + [sym_test_command] = STATE(2866), + [sym_declaration_command] = STATE(2866), + [sym_unset_command] = STATE(2866), + [sym_command] = STATE(2866), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2867), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2868), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(6631), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [2721] = { - [sym_file_descriptor] = ACTIONS(4849), - [sym__concat] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4849), - [anon_sym_PIPE_AMP] = ACTIONS(4849), - [anon_sym_AMP_AMP] = ACTIONS(4849), - [anon_sym_PIPE_PIPE] = ACTIONS(4849), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_GT_GT] = ACTIONS(4849), - [anon_sym_AMP_GT] = ACTIONS(4851), - [anon_sym_AMP_GT_GT] = ACTIONS(4849), - [anon_sym_LT_AMP] = ACTIONS(4849), - [anon_sym_GT_AMP] = ACTIONS(4849), - [anon_sym_LT_LT] = ACTIONS(4851), - [anon_sym_LT_LT_DASH] = ACTIONS(4849), - [anon_sym_LT_LT_LT] = ACTIONS(4849), - [anon_sym_BQUOTE] = ACTIONS(4849), + [sym__terminated_statement] = STATE(2869), + [sym_for_statement] = STATE(2866), + [sym_c_style_for_statement] = STATE(2866), + [sym_while_statement] = STATE(2866), + [sym_if_statement] = STATE(2866), + [sym_case_statement] = STATE(2866), + [sym_function_definition] = STATE(2866), + [sym_subshell] = STATE(2866), + [sym_pipeline] = STATE(2866), + [sym_list] = STATE(2866), + [sym_negated_command] = STATE(2866), + [sym_test_command] = STATE(2866), + [sym_declaration_command] = STATE(2866), + [sym_unset_command] = STATE(2866), + [sym_command] = STATE(2866), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2867), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2869), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(6631), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [2722] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6460), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym__special_characters] = ACTIONS(5700), + [anon_sym_DQUOTE] = ACTIONS(5700), + [anon_sym_DOLLAR] = ACTIONS(5702), + [sym_raw_string] = ACTIONS(5700), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5700), + [anon_sym_BQUOTE] = ACTIONS(5700), + [anon_sym_LT_LPAREN] = ACTIONS(5700), + [anon_sym_GT_LPAREN] = ACTIONS(5700), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5700), }, [2723] = { - [sym_file_descriptor] = ACTIONS(4855), - [sym__concat] = ACTIONS(4855), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_PIPE_AMP] = ACTIONS(4855), - [anon_sym_AMP_AMP] = ACTIONS(4855), - [anon_sym_PIPE_PIPE] = ACTIONS(4855), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_GT_GT] = ACTIONS(4855), - [anon_sym_AMP_GT] = ACTIONS(4857), - [anon_sym_AMP_GT_GT] = ACTIONS(4855), - [anon_sym_LT_AMP] = ACTIONS(4855), - [anon_sym_GT_AMP] = ACTIONS(4855), - [anon_sym_LT_LT] = ACTIONS(4857), - [anon_sym_LT_LT_DASH] = ACTIONS(4855), - [anon_sym_LT_LT_LT] = ACTIONS(4855), - [anon_sym_BQUOTE] = ACTIONS(4855), - [sym_comment] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(6633), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2724] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6462), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(6633), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2725] = { - [sym_file_descriptor] = ACTIONS(4861), - [sym__concat] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4863), - [anon_sym_GT] = ACTIONS(4863), - [anon_sym_GT_GT] = ACTIONS(4861), - [anon_sym_AMP_GT] = ACTIONS(4863), - [anon_sym_AMP_GT_GT] = ACTIONS(4861), - [anon_sym_LT_AMP] = ACTIONS(4861), - [anon_sym_GT_AMP] = ACTIONS(4861), - [anon_sym_LT_LT] = ACTIONS(4863), - [anon_sym_LT_LT_DASH] = ACTIONS(4861), - [anon_sym_LT_LT_LT] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), + [sym__terminated_statement] = STATE(2868), + [sym_for_statement] = STATE(2872), + [sym_c_style_for_statement] = STATE(2872), + [sym_while_statement] = STATE(2872), + [sym_if_statement] = STATE(2872), + [sym_case_statement] = STATE(2872), + [sym_function_definition] = STATE(2872), + [sym_subshell] = STATE(2872), + [sym_pipeline] = STATE(2872), + [sym_list] = STATE(2872), + [sym_negated_command] = STATE(2872), + [sym_test_command] = STATE(2872), + [sym_declaration_command] = STATE(2872), + [sym_unset_command] = STATE(2872), + [sym_command] = STATE(2872), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2873), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2868), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(6635), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [2726] = { - [sym_file_descriptor] = ACTIONS(4865), - [sym__concat] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_RPAREN] = ACTIONS(4865), - [anon_sym_PIPE_AMP] = ACTIONS(4865), - [anon_sym_AMP_AMP] = ACTIONS(4865), - [anon_sym_PIPE_PIPE] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4867), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4865), - [anon_sym_AMP_GT] = ACTIONS(4867), - [anon_sym_AMP_GT_GT] = ACTIONS(4865), - [anon_sym_LT_AMP] = ACTIONS(4865), - [anon_sym_GT_AMP] = ACTIONS(4865), - [anon_sym_LT_LT] = ACTIONS(4867), - [anon_sym_LT_LT_DASH] = ACTIONS(4865), - [anon_sym_LT_LT_LT] = ACTIONS(4865), - [anon_sym_BQUOTE] = ACTIONS(4865), + [sym__terminated_statement] = STATE(2874), + [sym_for_statement] = STATE(2872), + [sym_c_style_for_statement] = STATE(2872), + [sym_while_statement] = STATE(2872), + [sym_if_statement] = STATE(2872), + [sym_case_statement] = STATE(2872), + [sym_function_definition] = STATE(2872), + [sym_subshell] = STATE(2872), + [sym_pipeline] = STATE(2872), + [sym_list] = STATE(2872), + [sym_negated_command] = STATE(2872), + [sym_test_command] = STATE(2872), + [sym_declaration_command] = STATE(2872), + [sym_unset_command] = STATE(2872), + [sym_command] = STATE(2872), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2873), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2874), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(6635), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [2727] = { - [aux_sym_concatenation_repeat1] = STATE(2730), - [sym__concat] = ACTIONS(6343), - [anon_sym_esac] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_SEMI_SEMI] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), + [sym_file_descriptor] = ACTIONS(4164), + [sym__concat] = ACTIONS(4164), + [anon_sym_esac] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_SEMI_SEMI] = ACTIONS(4166), + [anon_sym_PIPE_AMP] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4166), + [anon_sym_AMP_GT] = ACTIONS(4166), + [anon_sym_AMP_GT_GT] = ACTIONS(4166), + [anon_sym_LT_AMP] = ACTIONS(4166), + [anon_sym_GT_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_LT_LT_DASH] = ACTIONS(4166), + [anon_sym_LT_LT_LT] = ACTIONS(4166), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_LF] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4166), }, [2728] = { - [aux_sym_concatenation_repeat1] = STATE(2730), - [sym__concat] = ACTIONS(6343), - [anon_sym_esac] = ACTIONS(1111), - [anon_sym_PIPE] = 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), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_LF] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1111), + [sym_file_descriptor] = ACTIONS(4172), + [sym__concat] = ACTIONS(4172), + [anon_sym_esac] = ACTIONS(4174), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4174), + [anon_sym_SEMI_SEMI] = ACTIONS(4174), + [anon_sym_PIPE_AMP] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_AMP_GT] = ACTIONS(4174), + [anon_sym_AMP_GT_GT] = ACTIONS(4174), + [anon_sym_LT_AMP] = ACTIONS(4174), + [anon_sym_GT_AMP] = ACTIONS(4174), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_LT_LT_DASH] = ACTIONS(4174), + [anon_sym_LT_LT_LT] = ACTIONS(4174), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym_LF] = ACTIONS(4172), + [anon_sym_AMP] = ACTIONS(4174), }, [2729] = { - [sym_string] = STATE(2789), - [sym_simple_expansion] = STATE(2789), - [sym_string_expansion] = STATE(2789), - [sym_expansion] = STATE(2789), - [sym_command_substitution] = STATE(2789), - [sym_process_substitution] = STATE(2789), - [sym__special_characters] = ACTIONS(6464), - [anon_sym_DQUOTE] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6169), - [sym_raw_string] = ACTIONS(6464), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6175), - [anon_sym_BQUOTE] = ACTIONS(6177), - [anon_sym_LT_LPAREN] = ACTIONS(6179), - [anon_sym_GT_LPAREN] = ACTIONS(6179), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6464), + [sym_file_descriptor] = ACTIONS(4259), + [sym__concat] = ACTIONS(4259), + [anon_sym_esac] = ACTIONS(4261), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_RPAREN] = ACTIONS(4261), + [anon_sym_SEMI_SEMI] = ACTIONS(4261), + [anon_sym_PIPE_AMP] = ACTIONS(4261), + [anon_sym_AMP_AMP] = ACTIONS(4261), + [anon_sym_PIPE_PIPE] = ACTIONS(4261), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4261), + [anon_sym_GT_GT] = ACTIONS(4261), + [anon_sym_AMP_GT] = ACTIONS(4261), + [anon_sym_AMP_GT_GT] = ACTIONS(4261), + [anon_sym_LT_AMP] = ACTIONS(4261), + [anon_sym_GT_AMP] = ACTIONS(4261), + [anon_sym_LT_LT] = ACTIONS(4261), + [anon_sym_LT_LT_DASH] = ACTIONS(4261), + [anon_sym_LT_LT_LT] = ACTIONS(4261), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_LF] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), }, [2730] = { - [aux_sym_concatenation_repeat1] = STATE(2790), - [sym__concat] = ACTIONS(6343), - [anon_sym_esac] = ACTIONS(707), - [anon_sym_PIPE] = 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), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6637), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2731] = { - [sym__concat] = ACTIONS(709), - [anon_sym_esac] = ACTIONS(711), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_PIPE_AMP] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_LF] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(711), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6639), + [sym_comment] = ACTIONS(53), }, [2732] = { - [anon_sym_DQUOTE] = ACTIONS(6466), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6641), + [sym_comment] = ACTIONS(53), }, [2733] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(413), - [anon_sym_DQUOTE] = ACTIONS(6466), - [anon_sym_DOLLAR] = ACTIONS(6468), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(6641), + [sym_comment] = ACTIONS(53), }, [2734] = { - [sym__concat] = ACTIONS(741), - [anon_sym_esac] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_PIPE_AMP] = ACTIONS(743), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LF] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), + [sym_concatenation] = STATE(2879), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2879), + [anon_sym_RBRACE] = ACTIONS(6643), + [anon_sym_EQ] = ACTIONS(6645), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6645), + [anon_sym_COLON_QMARK] = ACTIONS(6645), + [anon_sym_COLON_DASH] = ACTIONS(6645), + [anon_sym_PERCENT] = ACTIONS(6645), + [anon_sym_DASH] = ACTIONS(6645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2735] = { - [sym__concat] = ACTIONS(745), - [anon_sym_esac] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), + [sym_file_descriptor] = ACTIONS(4275), + [sym__concat] = ACTIONS(4275), + [anon_sym_esac] = ACTIONS(4277), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_SEMI_SEMI] = ACTIONS(4277), + [anon_sym_PIPE_AMP] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4277), + [anon_sym_GT_GT] = ACTIONS(4277), + [anon_sym_AMP_GT] = ACTIONS(4277), + [anon_sym_AMP_GT_GT] = ACTIONS(4277), + [anon_sym_LT_AMP] = ACTIONS(4277), + [anon_sym_GT_AMP] = ACTIONS(4277), + [anon_sym_LT_LT] = ACTIONS(4277), + [anon_sym_LT_LT_DASH] = ACTIONS(4277), + [anon_sym_LT_LT_LT] = ACTIONS(4277), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_LF] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), }, [2736] = { - [sym__concat] = ACTIONS(749), - [anon_sym_esac] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_PIPE_AMP] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), + [sym_concatenation] = STATE(2881), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2881), + [anon_sym_RBRACE] = ACTIONS(6649), + [anon_sym_EQ] = ACTIONS(6651), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6651), + [anon_sym_COLON_QMARK] = ACTIONS(6651), + [anon_sym_COLON_DASH] = ACTIONS(6651), + [anon_sym_PERCENT] = ACTIONS(6651), + [anon_sym_DASH] = ACTIONS(6651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2737] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(6470), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(4285), + [sym__concat] = ACTIONS(4285), + [anon_sym_esac] = ACTIONS(4287), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_SEMI_SEMI] = ACTIONS(4287), + [anon_sym_PIPE_AMP] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4287), + [anon_sym_GT] = ACTIONS(4287), + [anon_sym_GT_GT] = ACTIONS(4287), + [anon_sym_AMP_GT] = ACTIONS(4287), + [anon_sym_AMP_GT_GT] = ACTIONS(4287), + [anon_sym_LT_AMP] = ACTIONS(4287), + [anon_sym_GT_AMP] = ACTIONS(4287), + [anon_sym_LT_LT] = ACTIONS(4287), + [anon_sym_LT_LT_DASH] = ACTIONS(4287), + [anon_sym_LT_LT_LT] = ACTIONS(4287), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_LF] = ACTIONS(4285), + [anon_sym_AMP] = ACTIONS(4287), }, [2738] = { - [sym_concatenation] = STATE(2796), - [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), - [aux_sym_expansion_repeat1] = STATE(2796), - [anon_sym_RBRACE] = ACTIONS(6472), - [anon_sym_EQ] = ACTIONS(6474), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6478), - [anon_sym_COLON] = ACTIONS(6474), - [anon_sym_COLON_QMARK] = ACTIONS(6474), - [anon_sym_COLON_DASH] = ACTIONS(6474), - [anon_sym_PERCENT] = ACTIONS(6474), - [anon_sym_DASH] = ACTIONS(6474), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(2883), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2883), + [anon_sym_RBRACE] = ACTIONS(6655), + [anon_sym_EQ] = ACTIONS(6657), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6657), + [anon_sym_COLON_QMARK] = ACTIONS(6657), + [anon_sym_COLON_DASH] = ACTIONS(6657), + [anon_sym_PERCENT] = ACTIONS(6657), + [anon_sym_DASH] = ACTIONS(6657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2739] = { - [sym_subscript] = STATE(2800), - [sym_variable_name] = ACTIONS(6480), - [anon_sym_DOLLAR] = ACTIONS(6482), - [anon_sym_DASH] = ACTIONS(6482), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6484), - [anon_sym_STAR] = ACTIONS(6482), - [anon_sym_AT] = ACTIONS(6482), - [anon_sym_QMARK] = ACTIONS(6482), - [anon_sym_0] = ACTIONS(6486), - [anon_sym__] = ACTIONS(6486), + [sym_file_descriptor] = ACTIONS(4295), + [sym__concat] = ACTIONS(4295), + [anon_sym_esac] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4297), + [anon_sym_PIPE_AMP] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_GT_GT] = ACTIONS(4297), + [anon_sym_AMP_GT] = ACTIONS(4297), + [anon_sym_AMP_GT_GT] = ACTIONS(4297), + [anon_sym_LT_AMP] = ACTIONS(4297), + [anon_sym_GT_AMP] = ACTIONS(4297), + [anon_sym_LT_LT] = ACTIONS(4297), + [anon_sym_LT_LT_DASH] = ACTIONS(4297), + [anon_sym_LT_LT_LT] = ACTIONS(4297), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_LF] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4297), }, [2740] = { - [sym_concatenation] = STATE(2803), - [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), - [aux_sym_expansion_repeat1] = STATE(2803), - [anon_sym_RBRACE] = ACTIONS(6488), - [anon_sym_EQ] = ACTIONS(6490), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6492), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6494), - [anon_sym_COLON] = ACTIONS(6490), - [anon_sym_COLON_QMARK] = ACTIONS(6490), - [anon_sym_COLON_DASH] = ACTIONS(6490), - [anon_sym_PERCENT] = ACTIONS(6490), - [anon_sym_DASH] = ACTIONS(6490), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6661), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2741] = { - [sym_concatenation] = STATE(2806), - [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), - [aux_sym_expansion_repeat1] = STATE(2806), - [anon_sym_RBRACE] = ACTIONS(6496), - [anon_sym_EQ] = ACTIONS(6498), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6500), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6502), - [anon_sym_COLON] = ACTIONS(6498), - [anon_sym_COLON_QMARK] = ACTIONS(6498), - [anon_sym_COLON_DASH] = ACTIONS(6498), - [anon_sym_PERCENT] = ACTIONS(6498), - [anon_sym_DASH] = ACTIONS(6498), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(4301), + [sym__concat] = ACTIONS(4301), + [anon_sym_esac] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [anon_sym_PIPE_AMP] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_PIPE_PIPE] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_GT_GT] = ACTIONS(4303), + [anon_sym_AMP_GT] = ACTIONS(4303), + [anon_sym_AMP_GT_GT] = ACTIONS(4303), + [anon_sym_LT_AMP] = ACTIONS(4303), + [anon_sym_GT_AMP] = ACTIONS(4303), + [anon_sym_LT_LT] = ACTIONS(4303), + [anon_sym_LT_LT_DASH] = ACTIONS(4303), + [anon_sym_LT_LT_LT] = ACTIONS(4303), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4303), }, [2742] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(6504), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6663), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2743] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(6504), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym__concat] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5202), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [2744] = { - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(6504), + [sym__concat] = ACTIONS(5206), + [anon_sym_RBRACE] = ACTIONS(5206), [sym_comment] = ACTIONS(53), }, [2745] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(6504), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym__concat] = ACTIONS(5210), + [anon_sym_RBRACE] = ACTIONS(5210), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [2746] = { - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(6506), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym__concat] = ACTIONS(5214), + [anon_sym_RBRACE] = ACTIONS(5214), [sym_comment] = ACTIONS(53), }, [2747] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(6506), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6665), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2748] = { - [aux_sym_concatenation_repeat1] = STATE(2750), - [sym_file_descriptor] = ACTIONS(1105), - [sym__concat] = ACTIONS(3673), - [anon_sym_esac] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_SEMI_SEMI] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_AMP_GT] = ACTIONS(1107), - [anon_sym_AMP_GT_GT] = ACTIONS(1107), - [anon_sym_LT_AMP] = ACTIONS(1107), - [anon_sym_GT_AMP] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_LT_LT_DASH] = ACTIONS(1107), - [anon_sym_LT_LT_LT] = ACTIONS(1107), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - }, - [2749] = { - [aux_sym_concatenation_repeat1] = STATE(2750), - [sym_file_descriptor] = ACTIONS(1109), - [sym__concat] = ACTIONS(3673), - [anon_sym_esac] = ACTIONS(1111), - [anon_sym_PIPE] = 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(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1111), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_LF] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1111), - }, - [2750] = { - [aux_sym_concatenation_repeat1] = STATE(2809), - [sym_file_descriptor] = ACTIONS(705), - [sym__concat] = ACTIONS(3673), - [anon_sym_esac] = ACTIONS(707), - [anon_sym_PIPE] = 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(707), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(707), - [anon_sym_AMP_GT_GT] = ACTIONS(707), - [anon_sym_LT_AMP] = ACTIONS(707), - [anon_sym_GT_AMP] = ACTIONS(707), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_LT_LT_DASH] = ACTIONS(707), - [anon_sym_LT_LT_LT] = ACTIONS(707), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - }, - [2751] = { - [sym_variable_name] = ACTIONS(3409), - [anon_sym_esac] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_SEMI_SEMI] = ACTIONS(3411), - [anon_sym_PIPE_AMP] = ACTIONS(3411), - [anon_sym_AMP_AMP] = ACTIONS(3411), - [anon_sym_PIPE_PIPE] = ACTIONS(3411), - [sym__special_characters] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3411), - [sym_raw_string] = ACTIONS(3411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3411), - [anon_sym_BQUOTE] = ACTIONS(3411), - [anon_sym_LT_LPAREN] = ACTIONS(3411), - [anon_sym_GT_LPAREN] = ACTIONS(3411), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3411), - [sym_word] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_LF] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3411), - }, - [2752] = { - [sym__concat] = ACTIONS(3905), - [sym_variable_name] = ACTIONS(3905), - [anon_sym_esac] = ACTIONS(3907), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_SEMI_SEMI] = ACTIONS(3907), - [anon_sym_PIPE_AMP] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [sym__special_characters] = ACTIONS(3907), - [anon_sym_DQUOTE] = ACTIONS(3907), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), - [anon_sym_BQUOTE] = ACTIONS(3907), - [anon_sym_LT_LPAREN] = ACTIONS(3907), - [anon_sym_GT_LPAREN] = ACTIONS(3907), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3907), - [sym_word] = ACTIONS(3907), - [anon_sym_SEMI] = ACTIONS(3907), - [anon_sym_LF] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3907), - }, - [2753] = { - [sym__concat] = ACTIONS(3913), - [sym_variable_name] = ACTIONS(3913), - [anon_sym_esac] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3915), - [sym_word] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3915), - }, - [2754] = { - [sym__concat] = ACTIONS(4000), - [sym_variable_name] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_SEMI_SEMI] = ACTIONS(4002), - [anon_sym_PIPE_AMP] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [sym__special_characters] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4002), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), - [anon_sym_BQUOTE] = ACTIONS(4002), - [anon_sym_LT_LPAREN] = ACTIONS(4002), - [anon_sym_GT_LPAREN] = ACTIONS(4002), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4002), - [sym_word] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_LF] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4002), - }, - [2755] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6508), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2756] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6510), + [sym__concat] = ACTIONS(5220), + [anon_sym_RBRACE] = ACTIONS(5220), [sym_comment] = ACTIONS(53), }, + [2749] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6667), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2750] = { + [sym__concat] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [sym_comment] = ACTIONS(53), + }, + [2751] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6669), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2752] = { + [sym__concat] = ACTIONS(5232), + [anon_sym_RBRACE] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), + }, + [2753] = { + [sym__concat] = ACTIONS(5236), + [anon_sym_RBRACE] = ACTIONS(5236), + [sym_comment] = ACTIONS(53), + }, + [2754] = { + [sym__concat] = ACTIONS(5879), + [anon_sym_RBRACE] = ACTIONS(5879), + [anon_sym_EQ] = ACTIONS(5881), + [sym__special_characters] = ACTIONS(5881), + [anon_sym_DQUOTE] = ACTIONS(5879), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5879), + [anon_sym_POUND] = ACTIONS(5879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), + [anon_sym_COLON] = ACTIONS(5881), + [anon_sym_COLON_QMARK] = ACTIONS(5881), + [anon_sym_COLON_DASH] = ACTIONS(5881), + [anon_sym_PERCENT] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5879), + [anon_sym_BQUOTE] = ACTIONS(5879), + [anon_sym_LT_LPAREN] = ACTIONS(5879), + [anon_sym_GT_LPAREN] = ACTIONS(5879), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5881), + }, + [2755] = { + [sym__concat] = ACTIONS(5883), + [anon_sym_RBRACE] = ACTIONS(5883), + [anon_sym_EQ] = ACTIONS(5885), + [sym__special_characters] = ACTIONS(5885), + [anon_sym_DQUOTE] = ACTIONS(5883), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5883), + [anon_sym_POUND] = ACTIONS(5883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), + [anon_sym_COLON] = ACTIONS(5885), + [anon_sym_COLON_QMARK] = ACTIONS(5885), + [anon_sym_COLON_DASH] = ACTIONS(5885), + [anon_sym_PERCENT] = ACTIONS(5885), + [anon_sym_DASH] = ACTIONS(5885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5883), + [anon_sym_BQUOTE] = ACTIONS(5883), + [anon_sym_LT_LPAREN] = ACTIONS(5883), + [anon_sym_GT_LPAREN] = ACTIONS(5883), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5885), + }, + [2756] = { + [sym__concat] = ACTIONS(5887), + [anon_sym_RBRACE] = ACTIONS(5887), + [anon_sym_EQ] = ACTIONS(5889), + [sym__special_characters] = ACTIONS(5889), + [anon_sym_DQUOTE] = ACTIONS(5887), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5887), + [anon_sym_POUND] = ACTIONS(5887), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), + [anon_sym_COLON] = ACTIONS(5889), + [anon_sym_COLON_QMARK] = ACTIONS(5889), + [anon_sym_COLON_DASH] = ACTIONS(5889), + [anon_sym_PERCENT] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(5889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5887), + [anon_sym_BQUOTE] = ACTIONS(5887), + [anon_sym_LT_LPAREN] = ACTIONS(5887), + [anon_sym_GT_LPAREN] = ACTIONS(5887), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5889), + }, [2757] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6512), + [anon_sym_PIPE] = ACTIONS(3860), + [anon_sym_RPAREN] = ACTIONS(3858), + [anon_sym_PIPE_AMP] = ACTIONS(3858), + [anon_sym_AMP_AMP] = ACTIONS(3858), + [anon_sym_PIPE_PIPE] = ACTIONS(3858), + [anon_sym_BQUOTE] = ACTIONS(3858), [sym_comment] = ACTIONS(53), }, [2758] = { - [anon_sym_RBRACE] = ACTIONS(6512), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_RPAREN] = ACTIONS(6107), + [anon_sym_PIPE_AMP] = ACTIONS(6107), + [anon_sym_AMP_AMP] = ACTIONS(6107), + [anon_sym_PIPE_PIPE] = ACTIONS(6107), + [anon_sym_BQUOTE] = ACTIONS(6107), [sym_comment] = ACTIONS(53), }, [2759] = { - [sym_concatenation] = STATE(2814), - [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), - [aux_sym_expansion_repeat1] = STATE(2814), - [anon_sym_RBRACE] = ACTIONS(6514), - [anon_sym_EQ] = ACTIONS(6516), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6518), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6516), - [anon_sym_COLON_QMARK] = ACTIONS(6516), - [anon_sym_COLON_DASH] = ACTIONS(6516), - [anon_sym_PERCENT] = ACTIONS(6516), - [anon_sym_DASH] = ACTIONS(6516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_do_group] = STATE(2889), + [sym_compound_statement] = STATE(2889), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(5240), + [sym_comment] = ACTIONS(53), }, [2760] = { - [sym__concat] = ACTIONS(4016), - [sym_variable_name] = ACTIONS(4016), - [anon_sym_esac] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_SEMI_SEMI] = ACTIONS(4018), - [anon_sym_PIPE_AMP] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [sym__special_characters] = ACTIONS(4018), - [anon_sym_DQUOTE] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym_raw_string] = ACTIONS(4018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), - [anon_sym_BQUOTE] = ACTIONS(4018), - [anon_sym_LT_LPAREN] = ACTIONS(4018), - [anon_sym_GT_LPAREN] = ACTIONS(4018), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4018), - [sym_word] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_PIPE] = ACTIONS(6223), + [anon_sym_RPAREN] = ACTIONS(6225), + [anon_sym_PIPE_AMP] = ACTIONS(6225), + [anon_sym_AMP_AMP] = ACTIONS(6225), + [anon_sym_PIPE_PIPE] = ACTIONS(6225), + [anon_sym_BQUOTE] = ACTIONS(6225), + [sym_comment] = ACTIONS(53), }, [2761] = { - [sym_concatenation] = STATE(2816), - [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), - [aux_sym_expansion_repeat1] = STATE(2816), - [anon_sym_RBRACE] = ACTIONS(6520), - [anon_sym_EQ] = ACTIONS(6522), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6522), - [anon_sym_COLON_QMARK] = ACTIONS(6522), - [anon_sym_COLON_DASH] = ACTIONS(6522), - [anon_sym_PERCENT] = ACTIONS(6522), - [anon_sym_DASH] = ACTIONS(6522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(6227), + [anon_sym_RPAREN] = ACTIONS(6229), + [anon_sym_PIPE_AMP] = ACTIONS(6229), + [anon_sym_AMP_AMP] = ACTIONS(6229), + [anon_sym_PIPE_PIPE] = ACTIONS(6229), + [anon_sym_BQUOTE] = ACTIONS(6229), + [sym_comment] = ACTIONS(53), }, [2762] = { - [sym__concat] = ACTIONS(4026), - [sym_variable_name] = ACTIONS(4026), - [anon_sym_esac] = ACTIONS(4028), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_SEMI_SEMI] = ACTIONS(4028), - [anon_sym_PIPE_AMP] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_PIPE_PIPE] = ACTIONS(4028), - [sym__special_characters] = ACTIONS(4028), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), - [anon_sym_BQUOTE] = ACTIONS(4028), - [anon_sym_LT_LPAREN] = ACTIONS(4028), - [anon_sym_GT_LPAREN] = ACTIONS(4028), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4028), - [sym_word] = ACTIONS(4028), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym_LF] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4028), + [sym_file_descriptor] = ACTIONS(2920), + [sym__concat] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_PIPE_AMP] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_GT_GT] = ACTIONS(2920), + [anon_sym_AMP_GT] = ACTIONS(2922), + [anon_sym_AMP_GT_GT] = ACTIONS(2920), + [anon_sym_LT_AMP] = ACTIONS(2920), + [anon_sym_GT_AMP] = ACTIONS(2920), + [anon_sym_LT_LT] = ACTIONS(2922), + [anon_sym_LT_LT_DASH] = ACTIONS(2920), + [anon_sym_LT_LT_LT] = ACTIONS(2920), + [anon_sym_BQUOTE] = ACTIONS(2920), + [sym_comment] = ACTIONS(53), }, [2763] = { - [sym_concatenation] = STATE(2818), - [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), - [aux_sym_expansion_repeat1] = STATE(2818), - [anon_sym_RBRACE] = ACTIONS(6526), - [anon_sym_EQ] = ACTIONS(6528), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6530), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6528), - [anon_sym_COLON_QMARK] = ACTIONS(6528), - [anon_sym_COLON_DASH] = ACTIONS(6528), - [anon_sym_PERCENT] = ACTIONS(6528), - [anon_sym_DASH] = ACTIONS(6528), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(2934), + [sym__concat] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_RPAREN] = 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), + [anon_sym_BQUOTE] = ACTIONS(2934), + [sym_comment] = ACTIONS(53), }, [2764] = { - [sym__concat] = ACTIONS(4036), - [sym_variable_name] = ACTIONS(4036), - [anon_sym_esac] = ACTIONS(4038), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_SEMI_SEMI] = ACTIONS(4038), - [anon_sym_PIPE_AMP] = ACTIONS(4038), - [anon_sym_AMP_AMP] = ACTIONS(4038), - [anon_sym_PIPE_PIPE] = ACTIONS(4038), - [sym__special_characters] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4038), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), - [anon_sym_BQUOTE] = ACTIONS(4038), - [anon_sym_LT_LPAREN] = ACTIONS(4038), - [anon_sym_GT_LPAREN] = ACTIONS(4038), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4038), - [sym_word] = ACTIONS(4038), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4038), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6671), + [sym_comment] = ACTIONS(53), }, [2765] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6532), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6673), + [sym_comment] = ACTIONS(53), }, [2766] = { - [sym__concat] = ACTIONS(4042), - [sym_variable_name] = ACTIONS(4042), - [anon_sym_esac] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4044), - [sym_word] = ACTIONS(4044), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_RBRACE] = ACTIONS(6673), + [sym_comment] = ACTIONS(53), }, [2767] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6534), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2768] = { - [sym__concat] = ACTIONS(3905), - [anon_sym_esac] = ACTIONS(3907), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_SEMI_SEMI] = ACTIONS(3907), - [anon_sym_PIPE_AMP] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [sym__special_characters] = ACTIONS(3907), - [anon_sym_DQUOTE] = ACTIONS(3907), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(3907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), - [anon_sym_BQUOTE] = ACTIONS(3907), - [anon_sym_LT_LPAREN] = ACTIONS(3907), - [anon_sym_GT_LPAREN] = ACTIONS(3907), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3907), - [sym_word] = ACTIONS(3907), - [anon_sym_SEMI] = ACTIONS(3907), - [anon_sym_LF] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3907), - }, - [2769] = { - [sym__concat] = ACTIONS(3913), - [anon_sym_esac] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3915), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3915), - [sym_word] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3915), - }, - [2770] = { - [sym__concat] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_SEMI_SEMI] = ACTIONS(4002), - [anon_sym_PIPE_AMP] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [sym__special_characters] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4002), - [anon_sym_DOLLAR] = ACTIONS(4002), - [sym_raw_string] = ACTIONS(4002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), - [anon_sym_BQUOTE] = ACTIONS(4002), - [anon_sym_LT_LPAREN] = ACTIONS(4002), - [anon_sym_GT_LPAREN] = ACTIONS(4002), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4002), - [sym_word] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_LF] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4002), - }, - [2771] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6536), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2772] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6538), - [sym_comment] = ACTIONS(53), - }, - [2773] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6540), - [sym_comment] = ACTIONS(53), - }, - [2774] = { - [anon_sym_RBRACE] = ACTIONS(6540), - [sym_comment] = ACTIONS(53), - }, - [2775] = { - [sym_concatenation] = STATE(2825), - [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), - [aux_sym_expansion_repeat1] = STATE(2825), - [anon_sym_RBRACE] = ACTIONS(6542), - [anon_sym_EQ] = ACTIONS(6544), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6544), - [anon_sym_COLON_QMARK] = ACTIONS(6544), - [anon_sym_COLON_DASH] = ACTIONS(6544), - [anon_sym_PERCENT] = ACTIONS(6544), - [anon_sym_DASH] = ACTIONS(6544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2776] = { - [sym__concat] = ACTIONS(4016), - [anon_sym_esac] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_SEMI_SEMI] = ACTIONS(4018), - [anon_sym_PIPE_AMP] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [sym__special_characters] = ACTIONS(4018), - [anon_sym_DQUOTE] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4018), - [sym_raw_string] = ACTIONS(4018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), - [anon_sym_BQUOTE] = ACTIONS(4018), - [anon_sym_LT_LPAREN] = ACTIONS(4018), - [anon_sym_GT_LPAREN] = ACTIONS(4018), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4018), - [sym_word] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4018), - }, - [2777] = { - [sym_concatenation] = STATE(2827), - [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), - [aux_sym_expansion_repeat1] = STATE(2827), - [anon_sym_RBRACE] = ACTIONS(6548), - [anon_sym_EQ] = ACTIONS(6550), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6550), - [anon_sym_COLON_QMARK] = ACTIONS(6550), - [anon_sym_COLON_DASH] = ACTIONS(6550), - [anon_sym_PERCENT] = ACTIONS(6550), - [anon_sym_DASH] = ACTIONS(6550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2778] = { - [sym__concat] = ACTIONS(4026), - [anon_sym_esac] = ACTIONS(4028), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_SEMI_SEMI] = ACTIONS(4028), - [anon_sym_PIPE_AMP] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_PIPE_PIPE] = ACTIONS(4028), - [sym__special_characters] = ACTIONS(4028), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_DOLLAR] = ACTIONS(4028), - [sym_raw_string] = ACTIONS(4028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), - [anon_sym_BQUOTE] = ACTIONS(4028), - [anon_sym_LT_LPAREN] = ACTIONS(4028), - [anon_sym_GT_LPAREN] = ACTIONS(4028), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4028), - [sym_word] = ACTIONS(4028), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym_LF] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4028), - }, - [2779] = { - [sym_concatenation] = STATE(2829), - [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), - [aux_sym_expansion_repeat1] = STATE(2829), - [anon_sym_RBRACE] = ACTIONS(6554), - [anon_sym_EQ] = ACTIONS(6556), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6556), - [anon_sym_COLON_QMARK] = ACTIONS(6556), - [anon_sym_COLON_DASH] = ACTIONS(6556), - [anon_sym_PERCENT] = ACTIONS(6556), - [anon_sym_DASH] = ACTIONS(6556), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2780] = { - [sym__concat] = ACTIONS(4036), - [anon_sym_esac] = ACTIONS(4038), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_SEMI_SEMI] = ACTIONS(4038), - [anon_sym_PIPE_AMP] = ACTIONS(4038), - [anon_sym_AMP_AMP] = ACTIONS(4038), - [anon_sym_PIPE_PIPE] = ACTIONS(4038), - [sym__special_characters] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4038), - [anon_sym_DOLLAR] = ACTIONS(4038), - [sym_raw_string] = ACTIONS(4038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), - [anon_sym_BQUOTE] = ACTIONS(4038), - [anon_sym_LT_LPAREN] = ACTIONS(4038), - [anon_sym_GT_LPAREN] = ACTIONS(4038), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4038), - [sym_word] = ACTIONS(4038), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4038), - }, - [2781] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6560), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2782] = { - [sym__concat] = ACTIONS(4042), - [anon_sym_esac] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4044), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4044), - [sym_word] = ACTIONS(4044), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4044), - }, - [2783] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6562), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2784] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(6287), - [anon_sym_DQUOTE] = ACTIONS(6289), - [anon_sym_DOLLAR] = ACTIONS(6287), - [sym_raw_string] = ACTIONS(6289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6289), - [anon_sym_BQUOTE] = ACTIONS(6289), - [anon_sym_LT_LPAREN] = ACTIONS(6289), - [anon_sym_GT_LPAREN] = ACTIONS(6289), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6287), - }, - [2785] = { - [sym_file_descriptor] = ACTIONS(967), - [sym_variable_name] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_case] = ACTIONS(969), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_function] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_typeset] = ACTIONS(969), - [anon_sym_export] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_local] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [anon_sym_unsetenv] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym__special_characters] = ACTIONS(6293), - [anon_sym_DQUOTE] = ACTIONS(6295), - [anon_sym_DOLLAR] = ACTIONS(6293), - [sym_raw_string] = ACTIONS(6295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6295), - [anon_sym_BQUOTE] = ACTIONS(6295), - [anon_sym_LT_LPAREN] = ACTIONS(6295), - [anon_sym_GT_LPAREN] = ACTIONS(6295), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6293), - }, - [2786] = { - [sym_file_descriptor] = ACTIONS(5419), - [sym__concat] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5419), - [anon_sym_PIPE_AMP] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_GT_GT] = ACTIONS(5419), - [anon_sym_AMP_GT] = ACTIONS(5421), - [anon_sym_AMP_GT_GT] = ACTIONS(5419), - [anon_sym_LT_AMP] = ACTIONS(5419), - [anon_sym_GT_AMP] = ACTIONS(5419), - [anon_sym_LT_LT] = ACTIONS(5421), - [anon_sym_LT_LT_DASH] = ACTIONS(5419), - [anon_sym_LT_LT_LT] = ACTIONS(5419), - [anon_sym_BQUOTE] = ACTIONS(5419), - [sym_comment] = ACTIONS(53), - }, - [2787] = { - [sym_file_descriptor] = ACTIONS(5423), - [sym__concat] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5423), - [anon_sym_PIPE_AMP] = ACTIONS(5423), - [anon_sym_AMP_AMP] = ACTIONS(5423), - [anon_sym_PIPE_PIPE] = ACTIONS(5423), - [anon_sym_LT] = ACTIONS(5425), - [anon_sym_GT] = ACTIONS(5425), - [anon_sym_GT_GT] = ACTIONS(5423), - [anon_sym_AMP_GT] = ACTIONS(5425), - [anon_sym_AMP_GT_GT] = ACTIONS(5423), - [anon_sym_LT_AMP] = ACTIONS(5423), - [anon_sym_GT_AMP] = ACTIONS(5423), - [anon_sym_LT_LT] = ACTIONS(5425), - [anon_sym_LT_LT_DASH] = ACTIONS(5423), - [anon_sym_LT_LT_LT] = ACTIONS(5423), - [anon_sym_BQUOTE] = ACTIONS(5423), - [sym_comment] = ACTIONS(53), - }, - [2788] = { - [sym_file_descriptor] = ACTIONS(5427), - [sym__concat] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5427), - [anon_sym_PIPE_AMP] = ACTIONS(5427), - [anon_sym_AMP_AMP] = ACTIONS(5427), - [anon_sym_PIPE_PIPE] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5429), - [anon_sym_GT] = ACTIONS(5429), - [anon_sym_GT_GT] = ACTIONS(5427), - [anon_sym_AMP_GT] = ACTIONS(5429), - [anon_sym_AMP_GT_GT] = ACTIONS(5427), - [anon_sym_LT_AMP] = ACTIONS(5427), - [anon_sym_GT_AMP] = ACTIONS(5427), - [anon_sym_LT_LT] = ACTIONS(5429), - [anon_sym_LT_LT_DASH] = ACTIONS(5427), - [anon_sym_LT_LT_LT] = ACTIONS(5427), - [anon_sym_BQUOTE] = ACTIONS(5427), - [sym_comment] = ACTIONS(53), - }, - [2789] = { - [sym__concat] = ACTIONS(1672), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [2790] = { - [aux_sym_concatenation_repeat1] = STATE(2790), - [sym__concat] = ACTIONS(6564), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [2791] = { - [sym__concat] = ACTIONS(1679), - [anon_sym_esac] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - }, - [2792] = { - [anon_sym_DQUOTE] = ACTIONS(6567), - [anon_sym_DOLLAR] = ACTIONS(715), - [sym__string_content] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), - }, - [2793] = { - [sym_concatenation] = STATE(2836), - [sym_string] = STATE(2835), - [sym_simple_expansion] = STATE(2835), - [sym_string_expansion] = STATE(2835), - [sym_expansion] = STATE(2835), - [sym_command_substitution] = STATE(2835), - [sym_process_substitution] = STATE(2835), - [anon_sym_RBRACE] = ACTIONS(6569), - [sym__special_characters] = ACTIONS(6571), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(6573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6573), - }, - [2794] = { - [sym__concat] = ACTIONS(1764), - [anon_sym_esac] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_SEMI_SEMI] = ACTIONS(1766), - [anon_sym_PIPE_AMP] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1766), - }, - [2795] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6575), - }, - [2796] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6577), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2797] = { - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(6579), - [sym_comment] = ACTIONS(53), - }, - [2798] = { - [sym_concatenation] = STATE(2842), - [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), - [aux_sym_expansion_repeat1] = STATE(2842), - [anon_sym_RBRACE] = ACTIONS(6581), - [anon_sym_EQ] = ACTIONS(6583), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6585), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6587), - [anon_sym_COLON] = ACTIONS(6583), - [anon_sym_COLON_QMARK] = ACTIONS(6583), - [anon_sym_COLON_DASH] = ACTIONS(6583), - [anon_sym_PERCENT] = ACTIONS(6583), - [anon_sym_DASH] = ACTIONS(6583), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2799] = { - [sym_concatenation] = STATE(2845), - [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), - [aux_sym_expansion_repeat1] = STATE(2845), - [anon_sym_RBRACE] = ACTIONS(6589), - [anon_sym_EQ] = ACTIONS(6591), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6593), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6595), - [anon_sym_COLON] = ACTIONS(6591), - [anon_sym_COLON_QMARK] = ACTIONS(6591), - [anon_sym_COLON_DASH] = ACTIONS(6591), - [anon_sym_PERCENT] = ACTIONS(6591), - [anon_sym_DASH] = ACTIONS(6591), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2800] = { - [sym_concatenation] = STATE(2847), - [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), - [aux_sym_expansion_repeat1] = STATE(2847), - [anon_sym_RBRACE] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(6597), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6599), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(6601), - [anon_sym_COLON] = ACTIONS(6597), - [anon_sym_COLON_QMARK] = ACTIONS(6597), - [anon_sym_COLON_DASH] = ACTIONS(6597), - [anon_sym_PERCENT] = ACTIONS(6597), - [anon_sym_DASH] = ACTIONS(6597), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2801] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [2802] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6603), - }, - [2803] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6605), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2804] = { - [sym__concat] = ACTIONS(1840), - [anon_sym_esac] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_SEMI_SEMI] = ACTIONS(1842), - [anon_sym_PIPE_AMP] = ACTIONS(1842), - [anon_sym_AMP_AMP] = ACTIONS(1842), - [anon_sym_PIPE_PIPE] = ACTIONS(1842), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LF] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1842), - }, - [2805] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6607), - }, - [2806] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2807] = { - [sym__concat] = ACTIONS(1980), - [anon_sym_esac] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1982), - [anon_sym_PIPE_AMP] = ACTIONS(1982), - [anon_sym_AMP_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [2808] = { - [sym__concat] = ACTIONS(2046), - [anon_sym_esac] = ACTIONS(2048), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_SEMI_SEMI] = ACTIONS(2048), - [anon_sym_PIPE_AMP] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LF] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2048), - }, - [2809] = { - [aux_sym_concatenation_repeat1] = STATE(2809), - [sym_file_descriptor] = ACTIONS(1672), - [sym__concat] = ACTIONS(5276), - [anon_sym_esac] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1674), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_LT_LT_LT] = ACTIONS(1674), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LF] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - }, - [2810] = { - [sym__concat] = ACTIONS(4831), - [sym_variable_name] = ACTIONS(4831), - [anon_sym_esac] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_SEMI_SEMI] = ACTIONS(4833), - [anon_sym_PIPE_AMP] = ACTIONS(4833), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [sym__special_characters] = ACTIONS(4833), - [anon_sym_DQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4833), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), - [anon_sym_BQUOTE] = ACTIONS(4833), - [anon_sym_LT_LPAREN] = ACTIONS(4833), - [anon_sym_GT_LPAREN] = ACTIONS(4833), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), - [sym_word] = ACTIONS(4833), - [anon_sym_SEMI] = ACTIONS(4833), - [anon_sym_LF] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4833), - }, - [2811] = { - [sym__concat] = ACTIONS(4835), - [sym_variable_name] = ACTIONS(4835), - [anon_sym_esac] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_SEMI_SEMI] = ACTIONS(4837), - [anon_sym_PIPE_AMP] = ACTIONS(4837), - [anon_sym_AMP_AMP] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4837), - [sym__special_characters] = ACTIONS(4837), - [anon_sym_DQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4837), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4837), - [anon_sym_LT_LPAREN] = ACTIONS(4837), - [anon_sym_GT_LPAREN] = ACTIONS(4837), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4837), - [sym_word] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym_LF] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - }, - [2812] = { - [sym__concat] = ACTIONS(4839), - [sym_variable_name] = ACTIONS(4839), - [anon_sym_esac] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_SEMI_SEMI] = ACTIONS(4841), - [anon_sym_PIPE_AMP] = ACTIONS(4841), - [anon_sym_AMP_AMP] = ACTIONS(4841), - [anon_sym_PIPE_PIPE] = ACTIONS(4841), - [sym__special_characters] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), - [anon_sym_BQUOTE] = ACTIONS(4841), - [anon_sym_LT_LPAREN] = ACTIONS(4841), - [anon_sym_GT_LPAREN] = ACTIONS(4841), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4841), - [sym_word] = ACTIONS(4841), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_LF] = ACTIONS(4839), - [anon_sym_AMP] = ACTIONS(4841), - }, - [2813] = { - [sym__concat] = ACTIONS(4843), - [sym_variable_name] = ACTIONS(4843), - [anon_sym_esac] = ACTIONS(4845), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_SEMI_SEMI] = ACTIONS(4845), - [anon_sym_PIPE_AMP] = ACTIONS(4845), - [anon_sym_AMP_AMP] = ACTIONS(4845), - [anon_sym_PIPE_PIPE] = ACTIONS(4845), - [sym__special_characters] = ACTIONS(4845), - [anon_sym_DQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), - [anon_sym_BQUOTE] = ACTIONS(4845), - [anon_sym_LT_LPAREN] = ACTIONS(4845), - [anon_sym_GT_LPAREN] = ACTIONS(4845), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), - [sym_word] = ACTIONS(4845), - [anon_sym_SEMI] = ACTIONS(4845), - [anon_sym_LF] = ACTIONS(4843), - [anon_sym_AMP] = ACTIONS(4845), - }, - [2814] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6609), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2815] = { - [sym__concat] = ACTIONS(4849), - [sym_variable_name] = ACTIONS(4849), - [anon_sym_esac] = ACTIONS(4851), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_SEMI_SEMI] = ACTIONS(4851), - [anon_sym_PIPE_AMP] = ACTIONS(4851), - [anon_sym_AMP_AMP] = ACTIONS(4851), - [anon_sym_PIPE_PIPE] = ACTIONS(4851), - [sym__special_characters] = ACTIONS(4851), - [anon_sym_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4851), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4851), - [anon_sym_LT_LPAREN] = ACTIONS(4851), - [anon_sym_GT_LPAREN] = ACTIONS(4851), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4851), - [sym_word] = ACTIONS(4851), - [anon_sym_SEMI] = ACTIONS(4851), - [anon_sym_LF] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4851), - }, - [2816] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6611), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2817] = { - [sym__concat] = ACTIONS(4855), - [sym_variable_name] = ACTIONS(4855), - [anon_sym_esac] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_SEMI_SEMI] = ACTIONS(4857), - [anon_sym_PIPE_AMP] = ACTIONS(4857), - [anon_sym_AMP_AMP] = ACTIONS(4857), - [anon_sym_PIPE_PIPE] = ACTIONS(4857), - [sym__special_characters] = ACTIONS(4857), - [anon_sym_DQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4857), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), - [anon_sym_BQUOTE] = ACTIONS(4857), - [anon_sym_LT_LPAREN] = ACTIONS(4857), - [anon_sym_GT_LPAREN] = ACTIONS(4857), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4857), - [sym_word] = ACTIONS(4857), - [anon_sym_SEMI] = ACTIONS(4857), - [anon_sym_LF] = ACTIONS(4855), - [anon_sym_AMP] = ACTIONS(4857), - }, - [2818] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6613), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2819] = { - [sym__concat] = ACTIONS(4861), - [sym_variable_name] = ACTIONS(4861), - [anon_sym_esac] = ACTIONS(4863), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_SEMI_SEMI] = ACTIONS(4863), - [anon_sym_PIPE_AMP] = ACTIONS(4863), - [anon_sym_AMP_AMP] = ACTIONS(4863), - [anon_sym_PIPE_PIPE] = ACTIONS(4863), - [sym__special_characters] = ACTIONS(4863), - [anon_sym_DQUOTE] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4863), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), - [anon_sym_BQUOTE] = ACTIONS(4863), - [anon_sym_LT_LPAREN] = ACTIONS(4863), - [anon_sym_GT_LPAREN] = ACTIONS(4863), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4863), - [sym_word] = ACTIONS(4863), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4863), - }, - [2820] = { - [sym__concat] = ACTIONS(4865), - [sym_variable_name] = ACTIONS(4865), - [anon_sym_esac] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_SEMI_SEMI] = ACTIONS(4867), - [anon_sym_PIPE_AMP] = ACTIONS(4867), - [anon_sym_AMP_AMP] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4867), - [sym__special_characters] = ACTIONS(4867), - [anon_sym_DQUOTE] = ACTIONS(4867), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), - [anon_sym_BQUOTE] = ACTIONS(4867), - [anon_sym_LT_LPAREN] = ACTIONS(4867), - [anon_sym_GT_LPAREN] = ACTIONS(4867), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4867), - [sym_word] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_LF] = ACTIONS(4865), - [anon_sym_AMP] = ACTIONS(4867), - }, - [2821] = { - [sym__concat] = ACTIONS(4831), - [anon_sym_esac] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_SEMI_SEMI] = ACTIONS(4833), - [anon_sym_PIPE_AMP] = ACTIONS(4833), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [sym__special_characters] = ACTIONS(4833), - [anon_sym_DQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4833), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), - [anon_sym_BQUOTE] = ACTIONS(4833), - [anon_sym_LT_LPAREN] = ACTIONS(4833), - [anon_sym_GT_LPAREN] = ACTIONS(4833), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), - [sym_word] = ACTIONS(4833), - [anon_sym_SEMI] = ACTIONS(4833), - [anon_sym_LF] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4833), - }, - [2822] = { - [sym__concat] = ACTIONS(4835), - [anon_sym_esac] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_SEMI_SEMI] = ACTIONS(4837), - [anon_sym_PIPE_AMP] = ACTIONS(4837), - [anon_sym_AMP_AMP] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4837), - [sym__special_characters] = ACTIONS(4837), - [anon_sym_DQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(4837), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4837), - [anon_sym_LT_LPAREN] = ACTIONS(4837), - [anon_sym_GT_LPAREN] = ACTIONS(4837), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4837), - [sym_word] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym_LF] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - }, - [2823] = { - [sym__concat] = ACTIONS(4839), - [anon_sym_esac] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_SEMI_SEMI] = ACTIONS(4841), - [anon_sym_PIPE_AMP] = ACTIONS(4841), - [anon_sym_AMP_AMP] = ACTIONS(4841), - [anon_sym_PIPE_PIPE] = ACTIONS(4841), - [sym__special_characters] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR] = ACTIONS(4841), - [sym_raw_string] = ACTIONS(4841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), - [anon_sym_BQUOTE] = ACTIONS(4841), - [anon_sym_LT_LPAREN] = ACTIONS(4841), - [anon_sym_GT_LPAREN] = ACTIONS(4841), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4841), - [sym_word] = ACTIONS(4841), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_LF] = ACTIONS(4839), - [anon_sym_AMP] = ACTIONS(4841), - }, - [2824] = { - [sym__concat] = ACTIONS(4843), - [anon_sym_esac] = ACTIONS(4845), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_SEMI_SEMI] = ACTIONS(4845), - [anon_sym_PIPE_AMP] = ACTIONS(4845), - [anon_sym_AMP_AMP] = ACTIONS(4845), - [anon_sym_PIPE_PIPE] = ACTIONS(4845), - [sym__special_characters] = ACTIONS(4845), - [anon_sym_DQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR] = ACTIONS(4845), - [sym_raw_string] = ACTIONS(4845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), - [anon_sym_BQUOTE] = ACTIONS(4845), - [anon_sym_LT_LPAREN] = ACTIONS(4845), - [anon_sym_GT_LPAREN] = ACTIONS(4845), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), - [sym_word] = ACTIONS(4845), - [anon_sym_SEMI] = ACTIONS(4845), - [anon_sym_LF] = ACTIONS(4843), - [anon_sym_AMP] = ACTIONS(4845), - }, - [2825] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6615), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2826] = { - [sym__concat] = ACTIONS(4849), - [anon_sym_esac] = ACTIONS(4851), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_SEMI_SEMI] = ACTIONS(4851), - [anon_sym_PIPE_AMP] = ACTIONS(4851), - [anon_sym_AMP_AMP] = ACTIONS(4851), - [anon_sym_PIPE_PIPE] = ACTIONS(4851), - [sym__special_characters] = ACTIONS(4851), - [anon_sym_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4851), - [sym_raw_string] = ACTIONS(4851), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4851), - [anon_sym_LT_LPAREN] = ACTIONS(4851), - [anon_sym_GT_LPAREN] = ACTIONS(4851), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4851), - [sym_word] = ACTIONS(4851), - [anon_sym_SEMI] = ACTIONS(4851), - [anon_sym_LF] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4851), - }, - [2827] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6617), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2828] = { - [sym__concat] = ACTIONS(4855), - [anon_sym_esac] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_SEMI_SEMI] = ACTIONS(4857), - [anon_sym_PIPE_AMP] = ACTIONS(4857), - [anon_sym_AMP_AMP] = ACTIONS(4857), - [anon_sym_PIPE_PIPE] = ACTIONS(4857), - [sym__special_characters] = ACTIONS(4857), - [anon_sym_DQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR] = ACTIONS(4857), - [sym_raw_string] = ACTIONS(4857), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), - [anon_sym_BQUOTE] = ACTIONS(4857), - [anon_sym_LT_LPAREN] = ACTIONS(4857), - [anon_sym_GT_LPAREN] = ACTIONS(4857), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4857), - [sym_word] = ACTIONS(4857), - [anon_sym_SEMI] = ACTIONS(4857), - [anon_sym_LF] = ACTIONS(4855), - [anon_sym_AMP] = ACTIONS(4857), - }, - [2829] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6619), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2830] = { - [sym__concat] = ACTIONS(4861), - [anon_sym_esac] = ACTIONS(4863), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_SEMI_SEMI] = ACTIONS(4863), - [anon_sym_PIPE_AMP] = ACTIONS(4863), - [anon_sym_AMP_AMP] = ACTIONS(4863), - [anon_sym_PIPE_PIPE] = ACTIONS(4863), - [sym__special_characters] = ACTIONS(4863), - [anon_sym_DQUOTE] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(4863), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), - [anon_sym_BQUOTE] = ACTIONS(4863), - [anon_sym_LT_LPAREN] = ACTIONS(4863), - [anon_sym_GT_LPAREN] = ACTIONS(4863), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4863), - [sym_word] = ACTIONS(4863), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4863), - }, - [2831] = { - [sym__concat] = ACTIONS(4865), - [anon_sym_esac] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_SEMI_SEMI] = ACTIONS(4867), - [anon_sym_PIPE_AMP] = ACTIONS(4867), - [anon_sym_AMP_AMP] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4867), - [sym__special_characters] = ACTIONS(4867), - [anon_sym_DQUOTE] = ACTIONS(4867), - [anon_sym_DOLLAR] = ACTIONS(4867), - [sym_raw_string] = ACTIONS(4867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), - [anon_sym_BQUOTE] = ACTIONS(4867), - [anon_sym_LT_LPAREN] = ACTIONS(4867), - [anon_sym_GT_LPAREN] = ACTIONS(4867), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4867), - [sym_word] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_LF] = ACTIONS(4865), - [anon_sym_AMP] = ACTIONS(4867), - }, - [2832] = { - [sym__concat] = ACTIONS(2756), - [anon_sym_esac] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_SEMI_SEMI] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2758), - }, - [2833] = { - [sym__concat] = ACTIONS(2770), - [anon_sym_esac] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_SEMI_SEMI] = ACTIONS(2772), - [anon_sym_PIPE_AMP] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), - }, - [2834] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6621), - [sym_comment] = ACTIONS(53), - }, - [2835] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6623), - [sym_comment] = ACTIONS(53), - }, - [2836] = { - [anon_sym_RBRACE] = ACTIONS(6623), - [sym_comment] = ACTIONS(53), - }, - [2837] = { - [sym_concatenation] = STATE(2860), - [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), - [aux_sym_expansion_repeat1] = STATE(2860), - [anon_sym_RBRACE] = ACTIONS(6625), - [anon_sym_EQ] = ACTIONS(6627), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6627), - [anon_sym_COLON_QMARK] = ACTIONS(6627), - [anon_sym_COLON_DASH] = ACTIONS(6627), - [anon_sym_PERCENT] = ACTIONS(6627), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2838] = { - [sym__concat] = ACTIONS(2852), - [anon_sym_esac] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_SEMI_SEMI] = ACTIONS(2854), - [anon_sym_PIPE_AMP] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - }, - [2839] = { - [sym_concatenation] = STATE(2863), - [sym_string] = STATE(2862), - [sym_simple_expansion] = STATE(2862), - [sym_string_expansion] = STATE(2862), - [sym_expansion] = STATE(2862), - [sym_command_substitution] = STATE(2862), - [sym_process_substitution] = STATE(2862), - [anon_sym_RBRACE] = ACTIONS(6623), - [sym__special_characters] = ACTIONS(6631), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(6633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1762), - [anon_sym_GT_LPAREN] = ACTIONS(1762), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6633), - }, - [2840] = { - [sym__concat] = ACTIONS(2895), - [anon_sym_esac] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_SEMI_SEMI] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2897), - }, - [2841] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6635), - }, - [2842] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6637), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2843] = { - [sym__concat] = ACTIONS(2903), - [anon_sym_esac] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [anon_sym_PIPE_AMP] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_PIPE_PIPE] = ACTIONS(2905), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2905), - }, - [2844] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6639), - }, - [2845] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6641), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2846] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6643), - }, - [2847] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6623), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2848] = { - [sym_concatenation] = STATE(2870), - [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), - [aux_sym_expansion_repeat1] = STATE(2870), - [anon_sym_RBRACE] = ACTIONS(6645), - [anon_sym_EQ] = ACTIONS(6647), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6649), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6647), - [anon_sym_COLON_QMARK] = ACTIONS(6647), - [anon_sym_COLON_DASH] = ACTIONS(6647), - [anon_sym_PERCENT] = ACTIONS(6647), - [anon_sym_DASH] = ACTIONS(6647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2849] = { - [sym__concat] = ACTIONS(2919), - [anon_sym_esac] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_SEMI_SEMI] = ACTIONS(2921), - [anon_sym_PIPE_AMP] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_PIPE_PIPE] = ACTIONS(2921), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2921), - }, - [2850] = { - [sym_concatenation] = STATE(2872), - [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), - [aux_sym_expansion_repeat1] = STATE(2872), - [anon_sym_RBRACE] = ACTIONS(6651), - [anon_sym_EQ] = ACTIONS(6653), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6655), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6653), - [anon_sym_COLON_QMARK] = ACTIONS(6653), - [anon_sym_COLON_DASH] = ACTIONS(6653), - [anon_sym_PERCENT] = ACTIONS(6653), - [anon_sym_DASH] = ACTIONS(6653), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2851] = { - [sym__concat] = ACTIONS(5419), - [sym_variable_name] = ACTIONS(5419), - [anon_sym_esac] = ACTIONS(5421), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_SEMI_SEMI] = ACTIONS(5421), - [anon_sym_PIPE_AMP] = ACTIONS(5421), - [anon_sym_AMP_AMP] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5421), - [sym__special_characters] = ACTIONS(5421), - [anon_sym_DQUOTE] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), - [anon_sym_BQUOTE] = ACTIONS(5421), - [anon_sym_LT_LPAREN] = ACTIONS(5421), - [anon_sym_GT_LPAREN] = ACTIONS(5421), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5421), - [sym_word] = ACTIONS(5421), - [anon_sym_SEMI] = ACTIONS(5421), - [anon_sym_LF] = ACTIONS(5419), - [anon_sym_AMP] = ACTIONS(5421), - }, - [2852] = { - [sym__concat] = ACTIONS(5423), - [sym_variable_name] = ACTIONS(5423), - [anon_sym_esac] = ACTIONS(5425), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_SEMI_SEMI] = ACTIONS(5425), - [anon_sym_PIPE_AMP] = ACTIONS(5425), - [anon_sym_AMP_AMP] = ACTIONS(5425), - [anon_sym_PIPE_PIPE] = ACTIONS(5425), - [sym__special_characters] = ACTIONS(5425), - [anon_sym_DQUOTE] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), - [anon_sym_BQUOTE] = ACTIONS(5425), - [anon_sym_LT_LPAREN] = ACTIONS(5425), - [anon_sym_GT_LPAREN] = ACTIONS(5425), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5425), - [sym_word] = ACTIONS(5425), - [anon_sym_SEMI] = ACTIONS(5425), - [anon_sym_LF] = ACTIONS(5423), - [anon_sym_AMP] = ACTIONS(5425), - }, - [2853] = { - [sym__concat] = ACTIONS(5427), - [sym_variable_name] = ACTIONS(5427), - [anon_sym_esac] = ACTIONS(5429), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_SEMI_SEMI] = ACTIONS(5429), - [anon_sym_PIPE_AMP] = ACTIONS(5429), - [anon_sym_AMP_AMP] = ACTIONS(5429), - [anon_sym_PIPE_PIPE] = ACTIONS(5429), - [sym__special_characters] = ACTIONS(5429), - [anon_sym_DQUOTE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), - [anon_sym_BQUOTE] = ACTIONS(5429), - [anon_sym_LT_LPAREN] = ACTIONS(5429), - [anon_sym_GT_LPAREN] = ACTIONS(5429), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5429), - [sym_word] = ACTIONS(5429), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5427), - [anon_sym_AMP] = ACTIONS(5429), - }, - [2854] = { - [sym__concat] = ACTIONS(5419), - [anon_sym_esac] = ACTIONS(5421), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_SEMI_SEMI] = ACTIONS(5421), - [anon_sym_PIPE_AMP] = ACTIONS(5421), - [anon_sym_AMP_AMP] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5421), - [sym__special_characters] = ACTIONS(5421), - [anon_sym_DQUOTE] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5421), - [sym_raw_string] = ACTIONS(5421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), - [anon_sym_BQUOTE] = ACTIONS(5421), - [anon_sym_LT_LPAREN] = ACTIONS(5421), - [anon_sym_GT_LPAREN] = ACTIONS(5421), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5421), - [sym_word] = ACTIONS(5421), - [anon_sym_SEMI] = ACTIONS(5421), - [anon_sym_LF] = ACTIONS(5419), - [anon_sym_AMP] = ACTIONS(5421), - }, - [2855] = { - [sym__concat] = ACTIONS(5423), - [anon_sym_esac] = ACTIONS(5425), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_SEMI_SEMI] = ACTIONS(5425), - [anon_sym_PIPE_AMP] = ACTIONS(5425), - [anon_sym_AMP_AMP] = ACTIONS(5425), - [anon_sym_PIPE_PIPE] = ACTIONS(5425), - [sym__special_characters] = ACTIONS(5425), - [anon_sym_DQUOTE] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5425), - [sym_raw_string] = ACTIONS(5425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), - [anon_sym_BQUOTE] = ACTIONS(5425), - [anon_sym_LT_LPAREN] = ACTIONS(5425), - [anon_sym_GT_LPAREN] = ACTIONS(5425), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5425), - [sym_word] = ACTIONS(5425), - [anon_sym_SEMI] = ACTIONS(5425), - [anon_sym_LF] = ACTIONS(5423), - [anon_sym_AMP] = ACTIONS(5425), - }, - [2856] = { - [sym__concat] = ACTIONS(5427), - [anon_sym_esac] = ACTIONS(5429), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_SEMI_SEMI] = ACTIONS(5429), - [anon_sym_PIPE_AMP] = ACTIONS(5429), - [anon_sym_AMP_AMP] = ACTIONS(5429), - [anon_sym_PIPE_PIPE] = ACTIONS(5429), - [sym__special_characters] = ACTIONS(5429), - [anon_sym_DQUOTE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5429), - [sym_raw_string] = ACTIONS(5429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), - [anon_sym_BQUOTE] = ACTIONS(5429), - [anon_sym_LT_LPAREN] = ACTIONS(5429), - [anon_sym_GT_LPAREN] = ACTIONS(5429), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5429), - [sym_word] = ACTIONS(5429), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5427), - [anon_sym_AMP] = ACTIONS(5429), - }, - [2857] = { - [sym__concat] = ACTIONS(3905), - [anon_sym_esac] = ACTIONS(3907), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_SEMI_SEMI] = ACTIONS(3907), - [anon_sym_PIPE_AMP] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3907), - [anon_sym_LF] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3907), - }, - [2858] = { - [sym__concat] = ACTIONS(3913), - [anon_sym_esac] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3915), - }, - [2859] = { - [sym__concat] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_SEMI_SEMI] = ACTIONS(4002), - [anon_sym_PIPE_AMP] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_LF] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4002), - }, - [2860] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6657), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2861] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6659), - [sym_comment] = ACTIONS(53), - }, - [2862] = { - [aux_sym_concatenation_repeat1] = STATE(1264), - [sym__concat] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(6661), - [sym_comment] = ACTIONS(53), - }, - [2863] = { - [anon_sym_RBRACE] = ACTIONS(6661), - [sym_comment] = ACTIONS(53), - }, - [2864] = { - [sym_concatenation] = STATE(2877), - [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), - [aux_sym_expansion_repeat1] = STATE(2877), - [anon_sym_RBRACE] = ACTIONS(6663), - [anon_sym_EQ] = ACTIONS(6665), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6667), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6665), - [anon_sym_COLON_QMARK] = ACTIONS(6665), - [anon_sym_COLON_DASH] = ACTIONS(6665), - [anon_sym_PERCENT] = ACTIONS(6665), - [anon_sym_DASH] = ACTIONS(6665), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2865] = { - [sym__concat] = ACTIONS(4016), - [anon_sym_esac] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4018), - [anon_sym_SEMI_SEMI] = ACTIONS(4018), - [anon_sym_PIPE_AMP] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4018), - }, - [2866] = { - [sym_concatenation] = STATE(2879), - [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), - [aux_sym_expansion_repeat1] = STATE(2879), - [anon_sym_RBRACE] = ACTIONS(6669), - [anon_sym_EQ] = ACTIONS(6671), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(6673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(6671), - [anon_sym_COLON_QMARK] = ACTIONS(6671), - [anon_sym_COLON_DASH] = ACTIONS(6671), - [anon_sym_PERCENT] = ACTIONS(6671), - [anon_sym_DASH] = ACTIONS(6671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), - }, - [2867] = { - [sym__concat] = ACTIONS(4026), - [anon_sym_esac] = ACTIONS(4028), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_SEMI_SEMI] = ACTIONS(4028), - [anon_sym_PIPE_AMP] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_PIPE_PIPE] = ACTIONS(4028), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym_LF] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4028), - }, - [2868] = { - [sym_concatenation] = STATE(2881), - [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), - [aux_sym_expansion_repeat1] = STATE(2881), + [sym_concatenation] = STATE(2893), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2893), [anon_sym_RBRACE] = ACTIONS(6675), [anon_sym_EQ] = ACTIONS(6677), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(6679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), [anon_sym_COLON] = ACTIONS(6677), [anon_sym_COLON_QMARK] = ACTIONS(6677), [anon_sym_COLON_DASH] = ACTIONS(6677), [anon_sym_PERCENT] = ACTIONS(6677), [anon_sym_DASH] = ACTIONS(6677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2768] = { + [sym_file_descriptor] = ACTIONS(3016), + [sym__concat] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3016), + [anon_sym_PIPE_AMP] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_GT_GT] = ACTIONS(3016), + [anon_sym_AMP_GT] = ACTIONS(3018), + [anon_sym_AMP_GT_GT] = ACTIONS(3016), + [anon_sym_LT_AMP] = ACTIONS(3016), + [anon_sym_GT_AMP] = ACTIONS(3016), + [anon_sym_LT_LT] = ACTIONS(3018), + [anon_sym_LT_LT_DASH] = ACTIONS(3016), + [anon_sym_LT_LT_LT] = ACTIONS(3016), + [anon_sym_BQUOTE] = ACTIONS(3016), + [sym_comment] = ACTIONS(53), + }, + [2769] = { + [sym_concatenation] = STATE(2896), + [sym_string] = STATE(2895), + [sym_simple_expansion] = STATE(2895), + [sym_string_expansion] = STATE(2895), + [sym_expansion] = STATE(2895), + [sym_command_substitution] = STATE(2895), + [sym_process_substitution] = STATE(2895), + [anon_sym_RBRACE] = ACTIONS(6673), + [sym__special_characters] = ACTIONS(6681), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(6683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6683), + }, + [2770] = { + [sym_file_descriptor] = ACTIONS(3059), + [sym__concat] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_PIPE_AMP] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3059), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(3059), + [anon_sym_LT_AMP] = ACTIONS(3059), + [anon_sym_GT_AMP] = ACTIONS(3059), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_LT_LT_DASH] = ACTIONS(3059), + [anon_sym_LT_LT_LT] = ACTIONS(3059), + [anon_sym_BQUOTE] = ACTIONS(3059), + [sym_comment] = ACTIONS(53), + }, + [2771] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6685), + }, + [2772] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6687), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2773] = { + [sym_file_descriptor] = ACTIONS(3067), + [sym__concat] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_PIPE_AMP] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_GT] = ACTIONS(3067), + [anon_sym_AMP_GT] = ACTIONS(3069), + [anon_sym_AMP_GT_GT] = ACTIONS(3067), + [anon_sym_LT_AMP] = ACTIONS(3067), + [anon_sym_GT_AMP] = ACTIONS(3067), + [anon_sym_LT_LT] = ACTIONS(3069), + [anon_sym_LT_LT_DASH] = ACTIONS(3067), + [anon_sym_LT_LT_LT] = ACTIONS(3067), + [anon_sym_BQUOTE] = ACTIONS(3067), + [sym_comment] = ACTIONS(53), + }, + [2774] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6689), + }, + [2775] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6691), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2776] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6693), + }, + [2777] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6673), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2778] = { + [sym_concatenation] = STATE(2903), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2903), + [anon_sym_RBRACE] = ACTIONS(6695), + [anon_sym_EQ] = ACTIONS(6697), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6697), + [anon_sym_COLON_QMARK] = ACTIONS(6697), + [anon_sym_COLON_DASH] = ACTIONS(6697), + [anon_sym_PERCENT] = ACTIONS(6697), + [anon_sym_DASH] = ACTIONS(6697), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2779] = { + [sym_file_descriptor] = ACTIONS(3083), + [sym__concat] = ACTIONS(3083), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_RPAREN] = ACTIONS(3083), + [anon_sym_PIPE_AMP] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_GT] = ACTIONS(3085), + [anon_sym_GT_GT] = ACTIONS(3083), + [anon_sym_AMP_GT] = ACTIONS(3085), + [anon_sym_AMP_GT_GT] = ACTIONS(3083), + [anon_sym_LT_AMP] = ACTIONS(3083), + [anon_sym_GT_AMP] = ACTIONS(3083), + [anon_sym_LT_LT] = ACTIONS(3085), + [anon_sym_LT_LT_DASH] = ACTIONS(3083), + [anon_sym_LT_LT_LT] = ACTIONS(3083), + [anon_sym_BQUOTE] = ACTIONS(3083), + [sym_comment] = ACTIONS(53), + }, + [2780] = { + [sym_concatenation] = STATE(2905), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2905), + [anon_sym_RBRACE] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(6703), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6703), + [anon_sym_COLON_QMARK] = ACTIONS(6703), + [anon_sym_COLON_DASH] = ACTIONS(6703), + [anon_sym_PERCENT] = ACTIONS(6703), + [anon_sym_DASH] = ACTIONS(6703), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2781] = { + [sym__concat] = ACTIONS(5879), + [sym_variable_name] = ACTIONS(5879), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_PIPE_AMP] = ACTIONS(5879), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [sym__special_characters] = ACTIONS(5879), + [anon_sym_DQUOTE] = ACTIONS(5879), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5879), + [anon_sym_BQUOTE] = ACTIONS(5879), + [anon_sym_LT_LPAREN] = ACTIONS(5879), + [anon_sym_GT_LPAREN] = ACTIONS(5879), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5881), + [sym_word] = ACTIONS(5881), + }, + [2782] = { + [sym__concat] = ACTIONS(5883), + [sym_variable_name] = ACTIONS(5883), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5883), + [anon_sym_PIPE_AMP] = ACTIONS(5883), + [anon_sym_AMP_AMP] = ACTIONS(5883), + [anon_sym_PIPE_PIPE] = ACTIONS(5883), + [sym__special_characters] = ACTIONS(5883), + [anon_sym_DQUOTE] = ACTIONS(5883), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5883), + [anon_sym_BQUOTE] = ACTIONS(5883), + [anon_sym_LT_LPAREN] = ACTIONS(5883), + [anon_sym_GT_LPAREN] = ACTIONS(5883), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5885), + [sym_word] = ACTIONS(5885), + }, + [2783] = { + [sym__concat] = ACTIONS(5887), + [sym_variable_name] = ACTIONS(5887), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_PIPE_AMP] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [sym__special_characters] = ACTIONS(5887), + [anon_sym_DQUOTE] = ACTIONS(5887), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5887), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5887), + [anon_sym_BQUOTE] = ACTIONS(5887), + [anon_sym_LT_LPAREN] = ACTIONS(5887), + [anon_sym_GT_LPAREN] = ACTIONS(5887), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5889), + [sym_word] = ACTIONS(5889), + }, + [2784] = { + [sym__concat] = ACTIONS(5879), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_PIPE_AMP] = ACTIONS(5879), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [sym__special_characters] = ACTIONS(5879), + [anon_sym_DQUOTE] = ACTIONS(5879), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5879), + [anon_sym_BQUOTE] = ACTIONS(5879), + [anon_sym_LT_LPAREN] = ACTIONS(5879), + [anon_sym_GT_LPAREN] = ACTIONS(5879), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5881), + [sym_word] = ACTIONS(5881), + }, + [2785] = { + [sym__concat] = ACTIONS(5883), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5883), + [anon_sym_PIPE_AMP] = ACTIONS(5883), + [anon_sym_AMP_AMP] = ACTIONS(5883), + [anon_sym_PIPE_PIPE] = ACTIONS(5883), + [sym__special_characters] = ACTIONS(5883), + [anon_sym_DQUOTE] = ACTIONS(5883), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5883), + [anon_sym_BQUOTE] = ACTIONS(5883), + [anon_sym_LT_LPAREN] = ACTIONS(5883), + [anon_sym_GT_LPAREN] = ACTIONS(5883), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5885), + [sym_word] = ACTIONS(5885), + }, + [2786] = { + [sym__concat] = ACTIONS(5887), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_PIPE_AMP] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [sym__special_characters] = ACTIONS(5887), + [anon_sym_DQUOTE] = ACTIONS(5887), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5887), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5887), + [anon_sym_BQUOTE] = ACTIONS(5887), + [anon_sym_LT_LPAREN] = ACTIONS(5887), + [anon_sym_GT_LPAREN] = ACTIONS(5887), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5889), + [sym_word] = ACTIONS(5889), + }, + [2787] = { + [sym__heredoc_body_middle] = ACTIONS(5879), + [sym__heredoc_body_end] = ACTIONS(5879), + [anon_sym_DOLLAR] = ACTIONS(5881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), + [sym_comment] = ACTIONS(53), + }, + [2788] = { + [sym__heredoc_body_middle] = ACTIONS(5883), + [sym__heredoc_body_end] = ACTIONS(5883), + [anon_sym_DOLLAR] = ACTIONS(5885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), + [sym_comment] = ACTIONS(53), + }, + [2789] = { + [sym__heredoc_body_middle] = ACTIONS(5887), + [sym__heredoc_body_end] = ACTIONS(5887), + [anon_sym_DOLLAR] = ACTIONS(5889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), + [sym_comment] = ACTIONS(53), + }, + [2790] = { + [sym__concat] = ACTIONS(5879), + [anon_sym_RPAREN] = ACTIONS(5879), + [sym__special_characters] = ACTIONS(5879), + [anon_sym_DQUOTE] = ACTIONS(5879), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5879), + [anon_sym_BQUOTE] = ACTIONS(5879), + [anon_sym_LT_LPAREN] = ACTIONS(5879), + [anon_sym_GT_LPAREN] = ACTIONS(5879), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5879), + }, + [2791] = { + [sym__concat] = ACTIONS(5883), + [anon_sym_RPAREN] = ACTIONS(5883), + [sym__special_characters] = ACTIONS(5883), + [anon_sym_DQUOTE] = ACTIONS(5883), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5883), + [anon_sym_BQUOTE] = ACTIONS(5883), + [anon_sym_LT_LPAREN] = ACTIONS(5883), + [anon_sym_GT_LPAREN] = ACTIONS(5883), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5883), + }, + [2792] = { + [sym__concat] = ACTIONS(5887), + [anon_sym_RPAREN] = ACTIONS(5887), + [sym__special_characters] = ACTIONS(5887), + [anon_sym_DQUOTE] = ACTIONS(5887), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5887), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5887), + [anon_sym_BQUOTE] = ACTIONS(5887), + [anon_sym_LT_LPAREN] = ACTIONS(5887), + [anon_sym_GT_LPAREN] = ACTIONS(5887), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5887), + }, + [2793] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_EQ_TILDE] = ACTIONS(5202), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_LT] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5202), + [anon_sym_BANG_EQ] = ACTIONS(5202), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5202), + }, + [2794] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_EQ_TILDE] = ACTIONS(5206), + [anon_sym_EQ_EQ] = ACTIONS(5206), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_LT] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5206), + [anon_sym_BANG_EQ] = ACTIONS(5206), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5206), + }, + [2795] = { + [sym__concat] = ACTIONS(5210), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_EQ_TILDE] = ACTIONS(5210), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5210), + }, + [2796] = { + [sym__concat] = ACTIONS(5214), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5214), + [anon_sym_AMP_AMP] = ACTIONS(5214), + [anon_sym_PIPE_PIPE] = ACTIONS(5214), + [anon_sym_EQ_TILDE] = ACTIONS(5214), + [anon_sym_EQ_EQ] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_LT] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5214), + [anon_sym_BANG_EQ] = ACTIONS(5214), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5214), + }, + [2797] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6707), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2798] = { + [sym__concat] = ACTIONS(5220), + [anon_sym_RPAREN_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_LT] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_BANG_EQ] = ACTIONS(5220), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5220), + }, + [2799] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6709), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2800] = { + [sym__concat] = ACTIONS(5226), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_EQ_TILDE] = ACTIONS(5226), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5226), + [anon_sym_GT] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5226), + }, + [2801] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6711), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2802] = { + [sym__concat] = ACTIONS(5232), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5232), + [anon_sym_AMP_AMP] = ACTIONS(5232), + [anon_sym_PIPE_PIPE] = ACTIONS(5232), + [anon_sym_EQ_TILDE] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5232), + }, + [2803] = { + [sym__concat] = ACTIONS(5236), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_EQ_TILDE] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_BANG_EQ] = ACTIONS(5236), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5236), + }, + [2804] = { + [aux_sym_concatenation_repeat1] = STATE(2909), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(1175), + [sym_variable_name] = ACTIONS(731), + [anon_sym_esac] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [2805] = { + [sym_file_redirect] = STATE(2705), + [sym_heredoc_redirect] = STATE(2705), + [sym_heredoc_body] = STATE(1140), + [sym_herestring_redirect] = STATE(2705), + [aux_sym_while_statement_repeat1] = STATE(2705), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5679), + [anon_sym_esac] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_SEMI_SEMI] = ACTIONS(2445), + [anon_sym_PIPE_AMP] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5683), + [anon_sym_GT_GT] = ACTIONS(5683), + [anon_sym_AMP_GT] = ACTIONS(5683), + [anon_sym_AMP_GT_GT] = ACTIONS(5683), + [anon_sym_LT_AMP] = ACTIONS(5683), + [anon_sym_GT_AMP] = ACTIONS(5683), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(5685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2445), + }, + [2806] = { + [sym_compound_statement] = STATE(2910), + [anon_sym_LBRACE] = ACTIONS(483), + [sym_comment] = ACTIONS(53), + }, + [2807] = { + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_GT] = ACTIONS(6713), + [anon_sym_GT_GT] = ACTIONS(6715), + [anon_sym_AMP_GT] = ACTIONS(6713), + [anon_sym_AMP_GT_GT] = ACTIONS(6715), + [anon_sym_LT_AMP] = ACTIONS(6715), + [anon_sym_GT_AMP] = ACTIONS(6715), + [sym_comment] = ACTIONS(53), + }, + [2808] = { + [sym_concatenation] = STATE(1186), + [sym_string] = STATE(2913), + [sym_simple_expansion] = STATE(2913), + [sym_string_expansion] = STATE(2913), + [sym_expansion] = STATE(2913), + [sym_command_substitution] = STATE(2913), + [sym_process_substitution] = STATE(2913), + [sym__special_characters] = ACTIONS(6717), + [anon_sym_DQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(417), + [sym_raw_string] = ACTIONS(6719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), + [anon_sym_BQUOTE] = ACTIONS(1217), + [anon_sym_LT_LPAREN] = ACTIONS(1219), + [anon_sym_GT_LPAREN] = ACTIONS(1219), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6719), + }, + [2809] = { + [anon_sym_LT] = ACTIONS(6721), + [anon_sym_GT] = ACTIONS(6721), + [anon_sym_GT_GT] = ACTIONS(6723), + [anon_sym_AMP_GT] = ACTIONS(6721), + [anon_sym_AMP_GT_GT] = ACTIONS(6723), + [anon_sym_LT_AMP] = ACTIONS(6723), + [anon_sym_GT_AMP] = ACTIONS(6723), + [sym_comment] = ACTIONS(53), + }, + [2810] = { + [sym_concatenation] = STATE(1237), + [sym_string] = STATE(2916), + [sym_simple_expansion] = STATE(2916), + [sym_string_expansion] = STATE(2916), + [sym_expansion] = STATE(2916), + [sym_command_substitution] = STATE(2916), + [sym_process_substitution] = STATE(2916), + [sym__special_characters] = ACTIONS(6725), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(2672), + [sym_raw_string] = ACTIONS(6727), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), + [anon_sym_BQUOTE] = ACTIONS(2680), + [anon_sym_LT_LPAREN] = ACTIONS(2682), + [anon_sym_GT_LPAREN] = ACTIONS(2682), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6727), + }, + [2811] = { + [sym_concatenation] = STATE(1241), + [sym_string] = STATE(2918), + [sym_simple_expansion] = STATE(2918), + [sym_string_expansion] = STATE(2918), + [sym_expansion] = STATE(2918), + [sym_command_substitution] = STATE(2918), + [sym_process_substitution] = STATE(2918), + [sym__special_characters] = ACTIONS(6729), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(2672), + [sym_raw_string] = ACTIONS(6731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), + [anon_sym_BQUOTE] = ACTIONS(2680), + [anon_sym_LT_LPAREN] = ACTIONS(2682), + [anon_sym_GT_LPAREN] = ACTIONS(2682), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6731), + }, + [2812] = { + [sym_file_redirect] = STATE(2919), + [sym_heredoc_redirect] = STATE(2919), + [sym_herestring_redirect] = STATE(2919), + [aux_sym_while_statement_repeat1] = STATE(2919), + [sym_file_descriptor] = ACTIONS(6416), + [anon_sym_esac] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_SEMI_SEMI] = ACTIONS(2690), + [anon_sym_PIPE_AMP] = ACTIONS(2690), + [anon_sym_AMP_AMP] = ACTIONS(2690), + [anon_sym_PIPE_PIPE] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(6418), + [anon_sym_GT] = ACTIONS(6418), + [anon_sym_GT_GT] = ACTIONS(6418), + [anon_sym_AMP_GT] = ACTIONS(6418), + [anon_sym_AMP_GT_GT] = ACTIONS(6418), + [anon_sym_LT_AMP] = ACTIONS(6418), + [anon_sym_GT_AMP] = ACTIONS(6418), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_LT_LT_DASH] = ACTIONS(1449), + [anon_sym_LT_LT_LT] = ACTIONS(6420), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_LF] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2690), + }, + [2813] = { + [sym_variable_name] = ACTIONS(1151), + [anon_sym_esac] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_SEMI_SEMI] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1153), + [anon_sym_PIPE_PIPE] = ACTIONS(1153), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_LT_LPAREN] = ACTIONS(1153), + [anon_sym_GT_LPAREN] = ACTIONS(1153), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), + [sym_word] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_LF] = ACTIONS(1151), + [anon_sym_AMP] = ACTIONS(1153), + }, + [2814] = { + [sym_concatenation] = STATE(2921), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(2921), + [anon_sym_RPAREN] = ACTIONS(6733), + [sym__special_characters] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym_raw_string] = ACTIONS(1163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1163), + }, + [2815] = { + [aux_sym_concatenation_repeat1] = STATE(2655), + [sym__concat] = ACTIONS(6125), + [sym_variable_name] = ACTIONS(1173), + [anon_sym_esac] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_SEMI_SEMI] = ACTIONS(1177), + [anon_sym_PIPE_AMP] = ACTIONS(1177), + [anon_sym_AMP_AMP] = ACTIONS(1177), + [anon_sym_PIPE_PIPE] = ACTIONS(1177), + [sym__special_characters] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1177), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(1177), + [anon_sym_LT_LPAREN] = ACTIONS(1177), + [anon_sym_GT_LPAREN] = ACTIONS(1177), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1177), + [sym_word] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1177), + }, + [2816] = { + [aux_sym_concatenation_repeat1] = STATE(2655), + [sym__concat] = ACTIONS(6125), + [sym_variable_name] = ACTIONS(1151), + [anon_sym_esac] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_SEMI_SEMI] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1153), + [anon_sym_PIPE_PIPE] = ACTIONS(1153), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(1153), + [sym_raw_string] = ACTIONS(1153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_LT_LPAREN] = ACTIONS(1153), + [anon_sym_GT_LPAREN] = ACTIONS(1153), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), + [sym_word] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_LF] = ACTIONS(1151), + [anon_sym_AMP] = ACTIONS(1153), + }, + [2817] = { + [sym__concat] = ACTIONS(1754), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [2818] = { + [aux_sym_concatenation_repeat1] = STATE(2818), + [sym__concat] = ACTIONS(6735), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [2819] = { + [sym__concat] = ACTIONS(1761), + [sym_variable_name] = ACTIONS(1761), + [anon_sym_esac] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1763), + [sym_word] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1763), + }, + [2820] = { + [anon_sym_DQUOTE] = ACTIONS(6738), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [2821] = { + [sym_concatenation] = STATE(2926), + [sym_string] = STATE(2925), + [sym_simple_expansion] = STATE(2925), + [sym_string_expansion] = STATE(2925), + [sym_expansion] = STATE(2925), + [sym_command_substitution] = STATE(2925), + [sym_process_substitution] = STATE(2925), + [anon_sym_RBRACE] = ACTIONS(6740), + [sym__special_characters] = ACTIONS(6742), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(6744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6744), + }, + [2822] = { + [sym__concat] = ACTIONS(1846), + [sym_variable_name] = ACTIONS(1846), + [anon_sym_esac] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = ACTIONS(1848), + [anon_sym_PIPE_AMP] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [sym__special_characters] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), + [anon_sym_BQUOTE] = ACTIONS(1848), + [anon_sym_LT_LPAREN] = ACTIONS(1848), + [anon_sym_GT_LPAREN] = ACTIONS(1848), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1848), + [sym_word] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [2823] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6746), + }, + [2824] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6748), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2825] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(6750), + [sym_comment] = ACTIONS(53), + }, + [2826] = { + [sym_concatenation] = STATE(2932), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2932), + [anon_sym_RBRACE] = ACTIONS(6752), + [anon_sym_EQ] = ACTIONS(6754), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6758), + [anon_sym_COLON] = ACTIONS(6754), + [anon_sym_COLON_QMARK] = ACTIONS(6754), + [anon_sym_COLON_DASH] = ACTIONS(6754), + [anon_sym_PERCENT] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2827] = { + [sym_concatenation] = STATE(2935), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2935), + [anon_sym_RBRACE] = ACTIONS(6760), + [anon_sym_EQ] = ACTIONS(6762), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6766), + [anon_sym_COLON] = ACTIONS(6762), + [anon_sym_COLON_QMARK] = ACTIONS(6762), + [anon_sym_COLON_DASH] = ACTIONS(6762), + [anon_sym_PERCENT] = ACTIONS(6762), + [anon_sym_DASH] = ACTIONS(6762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2828] = { + [sym_concatenation] = STATE(2937), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2937), + [anon_sym_RBRACE] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(6768), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6772), + [anon_sym_COLON] = ACTIONS(6768), + [anon_sym_COLON_QMARK] = ACTIONS(6768), + [anon_sym_COLON_DASH] = ACTIONS(6768), + [anon_sym_PERCENT] = ACTIONS(6768), + [anon_sym_DASH] = ACTIONS(6768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2829] = { + [sym__concat] = ACTIONS(1914), + [sym_variable_name] = ACTIONS(1914), + [anon_sym_esac] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(1916), + [anon_sym_AMP_AMP] = ACTIONS(1916), + [anon_sym_PIPE_PIPE] = ACTIONS(1916), + [sym__special_characters] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_LT_LPAREN] = ACTIONS(1916), + [anon_sym_GT_LPAREN] = ACTIONS(1916), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1916), + [sym_word] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1916), + }, + [2830] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6774), + }, + [2831] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6776), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2832] = { + [sym__concat] = ACTIONS(1922), + [sym_variable_name] = ACTIONS(1922), + [anon_sym_esac] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1924), + [sym_word] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1924), + }, + [2833] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6778), + }, + [2834] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2835] = { + [sym__concat] = ACTIONS(2066), + [sym_variable_name] = ACTIONS(2066), + [anon_sym_esac] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_SEMI_SEMI] = ACTIONS(2068), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [sym__special_characters] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), + [anon_sym_BQUOTE] = ACTIONS(2068), + [anon_sym_LT_LPAREN] = ACTIONS(2068), + [anon_sym_GT_LPAREN] = ACTIONS(2068), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), + [sym_word] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_LF] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2068), + }, + [2836] = { + [sym__concat] = ACTIONS(2132), + [sym_variable_name] = ACTIONS(2132), + [anon_sym_esac] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_SEMI_SEMI] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), + [anon_sym_BQUOTE] = ACTIONS(2134), + [anon_sym_LT_LPAREN] = ACTIONS(2134), + [anon_sym_GT_LPAREN] = ACTIONS(2134), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), + [sym_word] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + }, + [2837] = { + [sym__concat] = ACTIONS(1754), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [2838] = { + [aux_sym_concatenation_repeat1] = STATE(2838), + [sym__concat] = ACTIONS(6780), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [2839] = { + [sym__concat] = ACTIONS(1761), + [anon_sym_esac] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1763), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1763), + [sym_word] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1763), + }, + [2840] = { + [anon_sym_DQUOTE] = ACTIONS(6783), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + }, + [2841] = { + [sym_concatenation] = STATE(2945), + [sym_string] = STATE(2944), + [sym_simple_expansion] = STATE(2944), + [sym_string_expansion] = STATE(2944), + [sym_expansion] = STATE(2944), + [sym_command_substitution] = STATE(2944), + [sym_process_substitution] = STATE(2944), + [anon_sym_RBRACE] = ACTIONS(6785), + [sym__special_characters] = ACTIONS(6787), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(6789), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6789), + }, + [2842] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_esac] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = ACTIONS(1848), + [anon_sym_PIPE_AMP] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [sym__special_characters] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), + [anon_sym_BQUOTE] = ACTIONS(1848), + [anon_sym_LT_LPAREN] = ACTIONS(1848), + [anon_sym_GT_LPAREN] = ACTIONS(1848), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1848), + [sym_word] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [2843] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6791), + }, + [2844] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6793), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2845] = { + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(6795), + [sym_comment] = ACTIONS(53), + }, + [2846] = { + [sym_concatenation] = STATE(2951), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2951), + [anon_sym_RBRACE] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6799), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_COLON_QMARK] = ACTIONS(6799), + [anon_sym_COLON_DASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6799), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2847] = { + [sym_concatenation] = STATE(2954), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2954), + [anon_sym_RBRACE] = ACTIONS(6805), + [anon_sym_EQ] = ACTIONS(6807), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_COLON_QMARK] = ACTIONS(6807), + [anon_sym_COLON_DASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2848] = { + [sym_concatenation] = STATE(2956), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2956), + [anon_sym_RBRACE] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6813), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(6817), + [anon_sym_COLON] = ACTIONS(6813), + [anon_sym_COLON_QMARK] = ACTIONS(6813), + [anon_sym_COLON_DASH] = ACTIONS(6813), + [anon_sym_PERCENT] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2849] = { + [sym__concat] = ACTIONS(1914), + [anon_sym_esac] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(1916), + [anon_sym_AMP_AMP] = ACTIONS(1916), + [anon_sym_PIPE_PIPE] = ACTIONS(1916), + [sym__special_characters] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_LT_LPAREN] = ACTIONS(1916), + [anon_sym_GT_LPAREN] = ACTIONS(1916), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1916), + [sym_word] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1916), + }, + [2850] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6819), + }, + [2851] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6821), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2852] = { + [sym__concat] = ACTIONS(1922), + [anon_sym_esac] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1924), + [sym_word] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1924), + }, + [2853] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6823), + }, + [2854] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2855] = { + [sym__concat] = ACTIONS(2066), + [anon_sym_esac] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_SEMI_SEMI] = ACTIONS(2068), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [sym__special_characters] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(2068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), + [anon_sym_BQUOTE] = ACTIONS(2068), + [anon_sym_LT_LPAREN] = ACTIONS(2068), + [anon_sym_GT_LPAREN] = ACTIONS(2068), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), + [sym_word] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_LF] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2068), + }, + [2856] = { + [sym__concat] = ACTIONS(2132), + [anon_sym_esac] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_SEMI_SEMI] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), + [anon_sym_BQUOTE] = ACTIONS(2134), + [anon_sym_LT_LPAREN] = ACTIONS(2134), + [anon_sym_GT_LPAREN] = ACTIONS(2134), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), + [sym_word] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + }, + [2857] = { + [sym_file_redirect] = STATE(1520), + [sym_file_descriptor] = ACTIONS(6412), + [anon_sym_esac] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_SEMI_SEMI] = ACTIONS(2544), + [anon_sym_PIPE_AMP] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_LT] = ACTIONS(6414), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_GT_GT] = ACTIONS(6414), + [anon_sym_AMP_GT] = ACTIONS(6414), + [anon_sym_AMP_GT_GT] = ACTIONS(6414), + [anon_sym_LT_AMP] = ACTIONS(6414), + [anon_sym_GT_AMP] = ACTIONS(6414), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_LF] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), + }, + [2858] = { + [aux_sym_concatenation_repeat1] = STATE(2860), + [sym__simple_heredoc_body] = ACTIONS(1133), + [sym__heredoc_body_beginning] = ACTIONS(1133), + [sym_file_descriptor] = ACTIONS(1133), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(1135), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(1135), + [anon_sym_PIPE_AMP] = ACTIONS(1135), + [anon_sym_AMP_AMP] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1135), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1135), + [anon_sym_AMP_GT] = ACTIONS(1135), + [anon_sym_AMP_GT_GT] = ACTIONS(1135), + [anon_sym_LT_AMP] = ACTIONS(1135), + [anon_sym_GT_AMP] = ACTIONS(1135), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_LT_LT_DASH] = ACTIONS(1135), + [anon_sym_LT_LT_LT] = ACTIONS(1135), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), + }, + [2859] = { + [aux_sym_concatenation_repeat1] = STATE(2860), + [sym__simple_heredoc_body] = ACTIONS(1137), + [sym__heredoc_body_beginning] = ACTIONS(1137), + [sym_file_descriptor] = ACTIONS(1137), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_SEMI_SEMI] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1139), + [anon_sym_LT_AMP] = ACTIONS(1139), + [anon_sym_GT_AMP] = ACTIONS(1139), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1139), + [anon_sym_LT_LT_LT] = ACTIONS(1139), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + }, + [2860] = { + [aux_sym_concatenation_repeat1] = STATE(2960), + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_LT_LT_LT] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [2861] = { + [sym_file_redirect] = STATE(2705), + [sym_heredoc_redirect] = STATE(2705), + [sym_heredoc_body] = STATE(1536), + [sym_herestring_redirect] = STATE(2705), + [aux_sym_while_statement_repeat1] = STATE(2705), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5679), + [anon_sym_esac] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3525), + [anon_sym_SEMI_SEMI] = ACTIONS(3525), + [anon_sym_PIPE_AMP] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5683), + [anon_sym_GT_GT] = ACTIONS(5683), + [anon_sym_AMP_GT] = ACTIONS(5683), + [anon_sym_AMP_GT_GT] = ACTIONS(5683), + [anon_sym_LT_AMP] = ACTIONS(5683), + [anon_sym_GT_AMP] = ACTIONS(5683), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(5685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3525), + [anon_sym_LF] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + }, + [2862] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_esac] = ACTIONS(6825), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(6827), + [anon_sym_DQUOTE] = ACTIONS(6829), + [anon_sym_DOLLAR] = ACTIONS(6827), + [sym_raw_string] = ACTIONS(6829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6829), + [anon_sym_BQUOTE] = ACTIONS(6829), + [anon_sym_LT_LPAREN] = ACTIONS(6829), + [anon_sym_GT_LPAREN] = ACTIONS(6829), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6827), + }, + [2863] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_esac] = ACTIONS(6831), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(6833), + [anon_sym_DQUOTE] = ACTIONS(6835), + [anon_sym_DOLLAR] = ACTIONS(6833), + [sym_raw_string] = ACTIONS(6835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6835), + [anon_sym_BQUOTE] = ACTIONS(6835), + [anon_sym_LT_LPAREN] = ACTIONS(6835), + [anon_sym_GT_LPAREN] = ACTIONS(6835), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6833), + }, + [2864] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(6181), + [anon_sym_DQUOTE] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6181), + [sym_raw_string] = ACTIONS(6183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6183), + [anon_sym_BQUOTE] = ACTIONS(6183), + [anon_sym_LT_LPAREN] = ACTIONS(6183), + [anon_sym_GT_LPAREN] = ACTIONS(6183), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6181), + }, + [2865] = { + [sym__special_characters] = ACTIONS(6183), + [anon_sym_DQUOTE] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6181), + [sym_raw_string] = ACTIONS(6183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6183), + [anon_sym_BQUOTE] = ACTIONS(6183), + [anon_sym_LT_LPAREN] = ACTIONS(6183), + [anon_sym_GT_LPAREN] = ACTIONS(6183), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6183), + }, + [2866] = { + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(6837), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), + }, + [2867] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(6837), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), + }, + [2868] = { + [sym__terminated_statement] = STATE(2868), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2868), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(1043), + [sym_variable_name] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_SEMI_SEMI] = ACTIONS(1049), + [anon_sym_function] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_typeset] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_readonly] = ACTIONS(1078), + [anon_sym_local] = ACTIONS(1078), + [anon_sym_unset] = ACTIONS(1081), + [anon_sym_unsetenv] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1084), + [anon_sym_GT_GT] = ACTIONS(1087), + [anon_sym_AMP_GT] = ACTIONS(1084), + [anon_sym_AMP_GT_GT] = ACTIONS(1087), + [anon_sym_LT_AMP] = ACTIONS(1087), + [anon_sym_GT_AMP] = ACTIONS(1087), + [sym__special_characters] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1096), + [sym_raw_string] = ACTIONS(1099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1111), + [anon_sym_GT_LPAREN] = ACTIONS(1111), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1114), }, [2869] = { - [sym__concat] = ACTIONS(4036), - [anon_sym_esac] = ACTIONS(4038), - [anon_sym_PIPE] = ACTIONS(4038), - [anon_sym_SEMI_SEMI] = ACTIONS(4038), - [anon_sym_PIPE_AMP] = ACTIONS(4038), - [anon_sym_AMP_AMP] = ACTIONS(4038), - [anon_sym_PIPE_PIPE] = ACTIONS(4038), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4038), + [sym__terminated_statement] = STATE(2868), + [sym_for_statement] = STATE(2963), + [sym_c_style_for_statement] = STATE(2963), + [sym_while_statement] = STATE(2963), + [sym_if_statement] = STATE(2963), + [sym_case_statement] = STATE(2963), + [sym_function_definition] = STATE(2963), + [sym_subshell] = STATE(2963), + [sym_pipeline] = STATE(2963), + [sym_list] = STATE(2963), + [sym_negated_command] = STATE(2963), + [sym_test_command] = STATE(2963), + [sym_declaration_command] = STATE(2963), + [sym_unset_command] = STATE(2963), + [sym_command] = STATE(2963), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2964), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2868), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(6839), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [2870] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6681), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(6207), + [anon_sym_DQUOTE] = ACTIONS(6209), + [anon_sym_DOLLAR] = ACTIONS(6207), + [sym_raw_string] = ACTIONS(6209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6209), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6209), + [anon_sym_BQUOTE] = ACTIONS(6209), + [anon_sym_LT_LPAREN] = ACTIONS(6209), + [anon_sym_GT_LPAREN] = ACTIONS(6209), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6207), }, [2871] = { - [sym__concat] = ACTIONS(4042), - [anon_sym_esac] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4044), + [sym__special_characters] = ACTIONS(6209), + [anon_sym_DQUOTE] = ACTIONS(6209), + [anon_sym_DOLLAR] = ACTIONS(6207), + [sym_raw_string] = ACTIONS(6209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6209), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6209), + [anon_sym_BQUOTE] = ACTIONS(6209), + [anon_sym_LT_LPAREN] = ACTIONS(6209), + [anon_sym_GT_LPAREN] = ACTIONS(6209), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6209), }, [2872] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6683), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(6841), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2873] = { - [sym__concat] = ACTIONS(4831), - [anon_sym_esac] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_SEMI_SEMI] = ACTIONS(4833), - [anon_sym_PIPE_AMP] = ACTIONS(4833), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4833), - [anon_sym_LF] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4833), + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(6841), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), }, [2874] = { - [sym__concat] = ACTIONS(4835), - [anon_sym_esac] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_SEMI_SEMI] = ACTIONS(4837), - [anon_sym_PIPE_AMP] = ACTIONS(4837), - [anon_sym_AMP_AMP] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4837), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym_LF] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), + [sym__terminated_statement] = STATE(2868), + [sym_for_statement] = STATE(2967), + [sym_c_style_for_statement] = STATE(2967), + [sym_while_statement] = STATE(2967), + [sym_if_statement] = STATE(2967), + [sym_case_statement] = STATE(2967), + [sym_function_definition] = STATE(2967), + [sym_subshell] = STATE(2967), + [sym_pipeline] = STATE(2967), + [sym_list] = STATE(2967), + [sym_negated_command] = STATE(2967), + [sym_test_command] = STATE(2967), + [sym_declaration_command] = STATE(2967), + [sym_unset_command] = STATE(2967), + [sym_command] = STATE(2967), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2968), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(32), + [sym_concatenation] = STATE(30), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2868), + [aux_sym_command_repeat1] = STATE(32), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(6843), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [2875] = { - [sym__concat] = ACTIONS(4839), - [anon_sym_esac] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_SEMI_SEMI] = ACTIONS(4841), - [anon_sym_PIPE_AMP] = ACTIONS(4841), - [anon_sym_AMP_AMP] = ACTIONS(4841), - [anon_sym_PIPE_PIPE] = ACTIONS(4841), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_LF] = ACTIONS(4839), - [anon_sym_AMP] = ACTIONS(4841), + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [anon_sym_esac] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5204), + [anon_sym_PIPE_AMP] = ACTIONS(5204), + [anon_sym_AMP_AMP] = ACTIONS(5204), + [anon_sym_PIPE_PIPE] = ACTIONS(5204), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5204), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5204), + [anon_sym_LT_AMP] = ACTIONS(5204), + [anon_sym_GT_AMP] = ACTIONS(5204), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_LT_LT_DASH] = ACTIONS(5204), + [anon_sym_LT_LT_LT] = ACTIONS(5204), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), }, [2876] = { - [sym__concat] = ACTIONS(4843), - [anon_sym_esac] = ACTIONS(4845), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_SEMI_SEMI] = ACTIONS(4845), - [anon_sym_PIPE_AMP] = ACTIONS(4845), - [anon_sym_AMP_AMP] = ACTIONS(4845), - [anon_sym_PIPE_PIPE] = ACTIONS(4845), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4845), - [anon_sym_LF] = ACTIONS(4843), - [anon_sym_AMP] = ACTIONS(4845), + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [anon_sym_esac] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5208), + [anon_sym_PIPE_AMP] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5208), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5208), + [anon_sym_LT_AMP] = ACTIONS(5208), + [anon_sym_GT_AMP] = ACTIONS(5208), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_LT_LT_DASH] = ACTIONS(5208), + [anon_sym_LT_LT_LT] = ACTIONS(5208), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), }, [2877] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6685), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(5210), + [sym__concat] = ACTIONS(5210), + [anon_sym_esac] = ACTIONS(5212), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5212), + [anon_sym_SEMI_SEMI] = ACTIONS(5212), + [anon_sym_PIPE_AMP] = ACTIONS(5212), + [anon_sym_AMP_AMP] = ACTIONS(5212), + [anon_sym_PIPE_PIPE] = ACTIONS(5212), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), + [anon_sym_AMP_GT] = ACTIONS(5212), + [anon_sym_AMP_GT_GT] = ACTIONS(5212), + [anon_sym_LT_AMP] = ACTIONS(5212), + [anon_sym_GT_AMP] = ACTIONS(5212), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_LT_LT_DASH] = ACTIONS(5212), + [anon_sym_LT_LT_LT] = ACTIONS(5212), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5212), + [anon_sym_LF] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5212), }, [2878] = { - [sym__concat] = ACTIONS(4849), - [anon_sym_esac] = ACTIONS(4851), - [anon_sym_PIPE] = ACTIONS(4851), - [anon_sym_SEMI_SEMI] = ACTIONS(4851), - [anon_sym_PIPE_AMP] = ACTIONS(4851), - [anon_sym_AMP_AMP] = ACTIONS(4851), - [anon_sym_PIPE_PIPE] = ACTIONS(4851), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4851), - [anon_sym_LF] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4851), + [sym_file_descriptor] = ACTIONS(5214), + [sym__concat] = ACTIONS(5214), + [anon_sym_esac] = ACTIONS(5216), + [anon_sym_PIPE] = ACTIONS(5216), + [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(5216), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5216), + [anon_sym_AMP_GT] = ACTIONS(5216), + [anon_sym_AMP_GT_GT] = ACTIONS(5216), + [anon_sym_LT_AMP] = ACTIONS(5216), + [anon_sym_GT_AMP] = ACTIONS(5216), + [anon_sym_LT_LT] = ACTIONS(5216), + [anon_sym_LT_LT_DASH] = ACTIONS(5216), + [anon_sym_LT_LT_LT] = ACTIONS(5216), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5216), + [anon_sym_LF] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5216), }, [2879] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6687), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6845), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2880] = { - [sym__concat] = ACTIONS(4855), - [anon_sym_esac] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_SEMI_SEMI] = ACTIONS(4857), - [anon_sym_PIPE_AMP] = ACTIONS(4857), - [anon_sym_AMP_AMP] = ACTIONS(4857), - [anon_sym_PIPE_PIPE] = ACTIONS(4857), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4857), - [anon_sym_LF] = ACTIONS(4855), - [anon_sym_AMP] = ACTIONS(4857), + [sym_file_descriptor] = ACTIONS(5220), + [sym__concat] = ACTIONS(5220), + [anon_sym_esac] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_SEMI_SEMI] = ACTIONS(5222), + [anon_sym_PIPE_AMP] = ACTIONS(5222), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5222), + [anon_sym_GT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5222), + [anon_sym_AMP_GT] = ACTIONS(5222), + [anon_sym_AMP_GT_GT] = ACTIONS(5222), + [anon_sym_LT_AMP] = ACTIONS(5222), + [anon_sym_GT_AMP] = ACTIONS(5222), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_LT_LT_DASH] = ACTIONS(5222), + [anon_sym_LT_LT_LT] = ACTIONS(5222), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LF] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5222), }, [2881] = { - [sym_concatenation] = STATE(847), - [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), - [aux_sym_expansion_repeat1] = STATE(847), - [anon_sym_RBRACE] = ACTIONS(6689), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(779), - [anon_sym_GT_LPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(781), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6847), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2882] = { - [sym__concat] = ACTIONS(4861), - [anon_sym_esac] = ACTIONS(4863), - [anon_sym_PIPE] = ACTIONS(4863), - [anon_sym_SEMI_SEMI] = ACTIONS(4863), - [anon_sym_PIPE_AMP] = ACTIONS(4863), - [anon_sym_AMP_AMP] = ACTIONS(4863), - [anon_sym_PIPE_PIPE] = ACTIONS(4863), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4863), + [sym_file_descriptor] = ACTIONS(5226), + [sym__concat] = ACTIONS(5226), + [anon_sym_esac] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5228), + [anon_sym_SEMI_SEMI] = ACTIONS(5228), + [anon_sym_PIPE_AMP] = ACTIONS(5228), + [anon_sym_AMP_AMP] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_AMP_GT] = ACTIONS(5228), + [anon_sym_AMP_GT_GT] = ACTIONS(5228), + [anon_sym_LT_AMP] = ACTIONS(5228), + [anon_sym_GT_AMP] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5228), + [anon_sym_LT_LT_DASH] = ACTIONS(5228), + [anon_sym_LT_LT_LT] = ACTIONS(5228), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5228), + [anon_sym_LF] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), }, [2883] = { - [sym__concat] = ACTIONS(4865), - [anon_sym_esac] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_SEMI_SEMI] = ACTIONS(4867), - [anon_sym_PIPE_AMP] = ACTIONS(4867), - [anon_sym_AMP_AMP] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4867), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_LF] = ACTIONS(4865), - [anon_sym_AMP] = ACTIONS(4867), + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6849), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), }, [2884] = { - [sym__concat] = ACTIONS(5419), - [anon_sym_esac] = ACTIONS(5421), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_SEMI_SEMI] = ACTIONS(5421), - [anon_sym_PIPE_AMP] = ACTIONS(5421), - [anon_sym_AMP_AMP] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5421), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5421), - [anon_sym_LF] = ACTIONS(5419), - [anon_sym_AMP] = ACTIONS(5421), + [sym_file_descriptor] = ACTIONS(5232), + [sym__concat] = ACTIONS(5232), + [anon_sym_esac] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_SEMI_SEMI] = ACTIONS(5234), + [anon_sym_PIPE_AMP] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_GT] = ACTIONS(5234), + [anon_sym_AMP_GT] = ACTIONS(5234), + [anon_sym_AMP_GT_GT] = ACTIONS(5234), + [anon_sym_LT_AMP] = ACTIONS(5234), + [anon_sym_GT_AMP] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5234), + [anon_sym_LT_LT_DASH] = ACTIONS(5234), + [anon_sym_LT_LT_LT] = ACTIONS(5234), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LF] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5234), }, [2885] = { - [sym__concat] = ACTIONS(5423), - [anon_sym_esac] = ACTIONS(5425), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_SEMI_SEMI] = ACTIONS(5425), - [anon_sym_PIPE_AMP] = ACTIONS(5425), - [anon_sym_AMP_AMP] = ACTIONS(5425), - [anon_sym_PIPE_PIPE] = ACTIONS(5425), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5425), - [anon_sym_LF] = ACTIONS(5423), - [anon_sym_AMP] = ACTIONS(5425), + [sym_file_descriptor] = ACTIONS(5236), + [sym__concat] = ACTIONS(5236), + [anon_sym_esac] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_SEMI_SEMI] = ACTIONS(5238), + [anon_sym_PIPE_AMP] = ACTIONS(5238), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_AMP_GT] = ACTIONS(5238), + [anon_sym_AMP_GT_GT] = ACTIONS(5238), + [anon_sym_LT_AMP] = ACTIONS(5238), + [anon_sym_GT_AMP] = ACTIONS(5238), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_LT_LT_DASH] = ACTIONS(5238), + [anon_sym_LT_LT_LT] = ACTIONS(5238), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LF] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), }, [2886] = { - [sym__concat] = ACTIONS(5427), - [anon_sym_esac] = ACTIONS(5429), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_SEMI_SEMI] = ACTIONS(5429), - [anon_sym_PIPE_AMP] = ACTIONS(5429), - [anon_sym_AMP_AMP] = ACTIONS(5429), - [anon_sym_PIPE_PIPE] = ACTIONS(5429), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5427), - [anon_sym_AMP] = ACTIONS(5429), + [sym__concat] = ACTIONS(5879), + [anon_sym_RBRACE] = ACTIONS(5879), + [sym_comment] = ACTIONS(53), + }, + [2887] = { + [sym__concat] = ACTIONS(5883), + [anon_sym_RBRACE] = ACTIONS(5883), + [sym_comment] = ACTIONS(53), + }, + [2888] = { + [sym__concat] = ACTIONS(5887), + [anon_sym_RBRACE] = ACTIONS(5887), + [sym_comment] = ACTIONS(53), + }, + [2889] = { + [anon_sym_PIPE] = ACTIONS(6406), + [anon_sym_RPAREN] = ACTIONS(6408), + [anon_sym_PIPE_AMP] = ACTIONS(6408), + [anon_sym_AMP_AMP] = ACTIONS(6408), + [anon_sym_PIPE_PIPE] = ACTIONS(6408), + [anon_sym_BQUOTE] = ACTIONS(6408), + [sym_comment] = ACTIONS(53), + }, + [2890] = { + [sym_file_descriptor] = ACTIONS(4164), + [sym__concat] = ACTIONS(4164), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_PIPE_AMP] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4164), + [anon_sym_AMP_GT] = ACTIONS(4166), + [anon_sym_AMP_GT_GT] = ACTIONS(4164), + [anon_sym_LT_AMP] = ACTIONS(4164), + [anon_sym_GT_AMP] = ACTIONS(4164), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_LT_LT_DASH] = ACTIONS(4164), + [anon_sym_LT_LT_LT] = ACTIONS(4164), + [anon_sym_BQUOTE] = ACTIONS(4164), + [sym_comment] = ACTIONS(53), + }, + [2891] = { + [sym_file_descriptor] = ACTIONS(4172), + [sym__concat] = ACTIONS(4172), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_PIPE_AMP] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4172), + [anon_sym_AMP_GT] = ACTIONS(4174), + [anon_sym_AMP_GT_GT] = ACTIONS(4172), + [anon_sym_LT_AMP] = ACTIONS(4172), + [anon_sym_GT_AMP] = ACTIONS(4172), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_LT_LT_DASH] = ACTIONS(4172), + [anon_sym_LT_LT_LT] = ACTIONS(4172), + [anon_sym_BQUOTE] = ACTIONS(4172), + [sym_comment] = ACTIONS(53), + }, + [2892] = { + [sym_file_descriptor] = ACTIONS(4259), + [sym__concat] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_RPAREN] = 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(53), + }, + [2893] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6851), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2894] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6853), + [sym_comment] = ACTIONS(53), + }, + [2895] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6855), + [sym_comment] = ACTIONS(53), + }, + [2896] = { + [anon_sym_RBRACE] = ACTIONS(6855), + [sym_comment] = ACTIONS(53), + }, + [2897] = { + [sym_concatenation] = STATE(2976), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2976), + [anon_sym_RBRACE] = ACTIONS(6857), + [anon_sym_EQ] = ACTIONS(6859), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6859), + [anon_sym_COLON_QMARK] = ACTIONS(6859), + [anon_sym_COLON_DASH] = ACTIONS(6859), + [anon_sym_PERCENT] = ACTIONS(6859), + [anon_sym_DASH] = ACTIONS(6859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2898] = { + [sym_file_descriptor] = ACTIONS(4275), + [sym__concat] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4275), + [anon_sym_PIPE_AMP] = ACTIONS(4275), + [anon_sym_AMP_AMP] = ACTIONS(4275), + [anon_sym_PIPE_PIPE] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4277), + [anon_sym_GT_GT] = ACTIONS(4275), + [anon_sym_AMP_GT] = ACTIONS(4277), + [anon_sym_AMP_GT_GT] = ACTIONS(4275), + [anon_sym_LT_AMP] = ACTIONS(4275), + [anon_sym_GT_AMP] = ACTIONS(4275), + [anon_sym_LT_LT] = ACTIONS(4277), + [anon_sym_LT_LT_DASH] = ACTIONS(4275), + [anon_sym_LT_LT_LT] = ACTIONS(4275), + [anon_sym_BQUOTE] = ACTIONS(4275), + [sym_comment] = ACTIONS(53), + }, + [2899] = { + [sym_concatenation] = STATE(2978), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2978), + [anon_sym_RBRACE] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6865), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6865), + [anon_sym_COLON_QMARK] = ACTIONS(6865), + [anon_sym_COLON_DASH] = ACTIONS(6865), + [anon_sym_PERCENT] = ACTIONS(6865), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2900] = { + [sym_file_descriptor] = ACTIONS(4285), + [sym__concat] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4285), + [anon_sym_PIPE_AMP] = ACTIONS(4285), + [anon_sym_AMP_AMP] = ACTIONS(4285), + [anon_sym_PIPE_PIPE] = ACTIONS(4285), + [anon_sym_LT] = ACTIONS(4287), + [anon_sym_GT] = ACTIONS(4287), + [anon_sym_GT_GT] = ACTIONS(4285), + [anon_sym_AMP_GT] = ACTIONS(4287), + [anon_sym_AMP_GT_GT] = ACTIONS(4285), + [anon_sym_LT_AMP] = ACTIONS(4285), + [anon_sym_GT_AMP] = ACTIONS(4285), + [anon_sym_LT_LT] = ACTIONS(4287), + [anon_sym_LT_LT_DASH] = ACTIONS(4285), + [anon_sym_LT_LT_LT] = ACTIONS(4285), + [anon_sym_BQUOTE] = ACTIONS(4285), + [sym_comment] = ACTIONS(53), + }, + [2901] = { + [sym_concatenation] = STATE(2980), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2980), + [anon_sym_RBRACE] = ACTIONS(6869), + [anon_sym_EQ] = ACTIONS(6871), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6871), + [anon_sym_COLON_QMARK] = ACTIONS(6871), + [anon_sym_COLON_DASH] = ACTIONS(6871), + [anon_sym_PERCENT] = ACTIONS(6871), + [anon_sym_DASH] = ACTIONS(6871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2902] = { + [sym_file_descriptor] = ACTIONS(4295), + [sym__concat] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_PIPE_AMP] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_GT_GT] = ACTIONS(4295), + [anon_sym_AMP_GT] = ACTIONS(4297), + [anon_sym_AMP_GT_GT] = ACTIONS(4295), + [anon_sym_LT_AMP] = ACTIONS(4295), + [anon_sym_GT_AMP] = ACTIONS(4295), + [anon_sym_LT_LT] = ACTIONS(4297), + [anon_sym_LT_LT_DASH] = ACTIONS(4295), + [anon_sym_LT_LT_LT] = ACTIONS(4295), + [anon_sym_BQUOTE] = ACTIONS(4295), + [sym_comment] = ACTIONS(53), + }, + [2903] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6875), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2904] = { + [sym_file_descriptor] = ACTIONS(4301), + [sym__concat] = ACTIONS(4301), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_PIPE_AMP] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_GT_GT] = ACTIONS(4301), + [anon_sym_AMP_GT] = ACTIONS(4303), + [anon_sym_AMP_GT_GT] = ACTIONS(4301), + [anon_sym_LT_AMP] = ACTIONS(4301), + [anon_sym_GT_AMP] = ACTIONS(4301), + [anon_sym_LT_LT] = ACTIONS(4303), + [anon_sym_LT_LT_DASH] = ACTIONS(4301), + [anon_sym_LT_LT_LT] = ACTIONS(4301), + [anon_sym_BQUOTE] = ACTIONS(4301), + [sym_comment] = ACTIONS(53), + }, + [2905] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6877), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2906] = { + [sym__concat] = ACTIONS(5879), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5879), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [anon_sym_EQ_TILDE] = ACTIONS(5879), + [anon_sym_EQ_EQ] = ACTIONS(5879), + [anon_sym_EQ] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5879), + [anon_sym_GT] = ACTIONS(5879), + [anon_sym_BANG_EQ] = ACTIONS(5879), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5879), + }, + [2907] = { + [sym__concat] = ACTIONS(5883), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5883), + [anon_sym_AMP_AMP] = ACTIONS(5883), + [anon_sym_PIPE_PIPE] = ACTIONS(5883), + [anon_sym_EQ_TILDE] = ACTIONS(5883), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_EQ] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5883), + [anon_sym_GT] = ACTIONS(5883), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5883), + }, + [2908] = { + [sym__concat] = ACTIONS(5887), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [anon_sym_EQ_TILDE] = ACTIONS(5887), + [anon_sym_EQ_EQ] = ACTIONS(5887), + [anon_sym_EQ] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5887), + [anon_sym_GT] = ACTIONS(5887), + [anon_sym_BANG_EQ] = ACTIONS(5887), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5887), + }, + [2909] = { + [aux_sym_concatenation_repeat1] = STATE(2909), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(3611), + [sym_variable_name] = ACTIONS(1754), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1756), + [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [2910] = { + [sym_file_redirect] = STATE(1663), + [sym_file_descriptor] = ACTIONS(6412), + [anon_sym_esac] = ACTIONS(3854), + [anon_sym_PIPE] = ACTIONS(3854), + [anon_sym_SEMI_SEMI] = ACTIONS(3854), + [anon_sym_PIPE_AMP] = ACTIONS(3854), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3854), + [anon_sym_LT] = ACTIONS(6414), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_GT_GT] = ACTIONS(6414), + [anon_sym_AMP_GT] = ACTIONS(6414), + [anon_sym_AMP_GT_GT] = ACTIONS(6414), + [anon_sym_LT_AMP] = ACTIONS(6414), + [anon_sym_GT_AMP] = ACTIONS(6414), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3854), + [anon_sym_LF] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), + }, + [2911] = { + [sym_concatenation] = STATE(1666), + [sym_string] = STATE(2984), + [sym_simple_expansion] = STATE(2984), + [sym_string_expansion] = STATE(2984), + [sym_expansion] = STATE(2984), + [sym_command_substitution] = STATE(2984), + [sym_process_substitution] = STATE(2984), + [sym__special_characters] = ACTIONS(6879), + [anon_sym_DQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(417), + [sym_raw_string] = ACTIONS(6881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), + [anon_sym_BQUOTE] = ACTIONS(1217), + [anon_sym_LT_LPAREN] = ACTIONS(1219), + [anon_sym_GT_LPAREN] = ACTIONS(1219), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6881), + }, + [2912] = { + [aux_sym_concatenation_repeat1] = STATE(2985), + [sym__concat] = ACTIONS(1223), + [anon_sym_esac] = ACTIONS(701), + [anon_sym_PIPE] = 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), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(701), + }, + [2913] = { + [aux_sym_concatenation_repeat1] = STATE(2985), + [sym__concat] = ACTIONS(1223), + [anon_sym_esac] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(717), + [anon_sym_PIPE_PIPE] = ACTIONS(717), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [2914] = { + [sym_concatenation] = STATE(1699), + [sym_string] = STATE(2987), + [sym_simple_expansion] = STATE(2987), + [sym_string_expansion] = STATE(2987), + [sym_expansion] = STATE(2987), + [sym_command_substitution] = STATE(2987), + [sym_process_substitution] = STATE(2987), + [sym__special_characters] = ACTIONS(6883), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(2672), + [sym_raw_string] = ACTIONS(6885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), + [anon_sym_BQUOTE] = ACTIONS(2680), + [anon_sym_LT_LPAREN] = ACTIONS(2682), + [anon_sym_GT_LPAREN] = ACTIONS(2682), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6885), + }, + [2915] = { + [aux_sym_concatenation_repeat1] = STATE(2988), + [sym_file_descriptor] = ACTIONS(697), + [sym__concat] = ACTIONS(3932), + [anon_sym_esac] = ACTIONS(701), + [anon_sym_PIPE] = 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(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(701), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(701), + [anon_sym_LT_AMP] = ACTIONS(701), + [anon_sym_GT_AMP] = ACTIONS(701), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(701), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(701), + }, + [2916] = { + [aux_sym_concatenation_repeat1] = STATE(2988), + [sym_file_descriptor] = ACTIONS(715), + [sym__concat] = ACTIONS(3932), + [anon_sym_esac] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(717), + [anon_sym_PIPE_AMP] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(717), + [anon_sym_PIPE_PIPE] = ACTIONS(717), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(717), + [anon_sym_AMP_GT] = ACTIONS(717), + [anon_sym_AMP_GT_GT] = ACTIONS(717), + [anon_sym_LT_AMP] = ACTIONS(717), + [anon_sym_GT_AMP] = ACTIONS(717), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_LT_LT_DASH] = ACTIONS(717), + [anon_sym_LT_LT_LT] = ACTIONS(717), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [2917] = { + [aux_sym_concatenation_repeat1] = STATE(2988), + [sym_file_descriptor] = ACTIONS(2184), + [sym__concat] = ACTIONS(3932), + [anon_sym_esac] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_SEMI_SEMI] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(2186), + [anon_sym_AMP_AMP] = ACTIONS(2186), + [anon_sym_PIPE_PIPE] = ACTIONS(2186), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_GT] = ACTIONS(2186), + [anon_sym_GT_GT] = ACTIONS(2186), + [anon_sym_AMP_GT] = ACTIONS(2186), + [anon_sym_AMP_GT_GT] = ACTIONS(2186), + [anon_sym_LT_AMP] = ACTIONS(2186), + [anon_sym_GT_AMP] = ACTIONS(2186), + [anon_sym_LT_LT] = ACTIONS(2186), + [anon_sym_LT_LT_DASH] = ACTIONS(2186), + [anon_sym_LT_LT_LT] = ACTIONS(2186), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_LF] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + }, + [2918] = { + [aux_sym_concatenation_repeat1] = STATE(2988), + [sym_file_descriptor] = ACTIONS(2188), + [sym__concat] = ACTIONS(3932), + [anon_sym_esac] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_SEMI_SEMI] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2190), + [anon_sym_LT_LT_LT] = ACTIONS(2190), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2190), + }, + [2919] = { + [sym_file_redirect] = STATE(2919), + [sym_heredoc_redirect] = STATE(2919), + [sym_herestring_redirect] = STATE(2919), + [aux_sym_while_statement_repeat1] = STATE(2919), + [sym_file_descriptor] = ACTIONS(6887), + [anon_sym_esac] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_SEMI_SEMI] = ACTIONS(2201), + [anon_sym_PIPE_AMP] = ACTIONS(2201), + [anon_sym_AMP_AMP] = ACTIONS(2201), + [anon_sym_PIPE_PIPE] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(6890), + [anon_sym_GT] = ACTIONS(6890), + [anon_sym_GT_GT] = ACTIONS(6890), + [anon_sym_AMP_GT] = ACTIONS(6890), + [anon_sym_AMP_GT_GT] = ACTIONS(6890), + [anon_sym_LT_AMP] = ACTIONS(6890), + [anon_sym_GT_AMP] = ACTIONS(6890), + [anon_sym_LT_LT] = ACTIONS(3962), + [anon_sym_LT_LT_DASH] = ACTIONS(3962), + [anon_sym_LT_LT_LT] = ACTIONS(6893), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2201), + }, + [2920] = { + [sym_variable_name] = ACTIONS(2253), + [anon_sym_esac] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_SEMI_SEMI] = ACTIONS(2255), + [anon_sym_PIPE_AMP] = ACTIONS(2255), + [anon_sym_AMP_AMP] = ACTIONS(2255), + [anon_sym_PIPE_PIPE] = ACTIONS(2255), + [sym__special_characters] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_DOLLAR] = ACTIONS(2255), + [sym_raw_string] = ACTIONS(2255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2255), + [anon_sym_BQUOTE] = ACTIONS(2255), + [anon_sym_LT_LPAREN] = ACTIONS(2255), + [anon_sym_GT_LPAREN] = ACTIONS(2255), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2255), + [sym_word] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_LF] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(2255), + }, + [2921] = { + [sym_concatenation] = STATE(1075), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1075), + [anon_sym_RPAREN] = ACTIONS(6896), + [sym__special_characters] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym_raw_string] = ACTIONS(1163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1163), + }, + [2922] = { + [sym__concat] = ACTIONS(2920), + [sym_variable_name] = ACTIONS(2920), + [anon_sym_esac] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [anon_sym_PIPE_AMP] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [sym__special_characters] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), + [anon_sym_BQUOTE] = ACTIONS(2922), + [anon_sym_LT_LPAREN] = ACTIONS(2922), + [anon_sym_GT_LPAREN] = ACTIONS(2922), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2922), + [sym_word] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2922), + }, + [2923] = { + [sym__concat] = ACTIONS(2934), + [sym_variable_name] = ACTIONS(2934), + [anon_sym_esac] = ACTIONS(2936), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_SEMI_SEMI] = ACTIONS(2936), + [anon_sym_PIPE_AMP] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [sym__special_characters] = ACTIONS(2936), + [anon_sym_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2936), + [sym_raw_string] = ACTIONS(2936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), + [anon_sym_BQUOTE] = ACTIONS(2936), + [anon_sym_LT_LPAREN] = ACTIONS(2936), + [anon_sym_GT_LPAREN] = ACTIONS(2936), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), + [sym_word] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_LF] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2936), + }, + [2924] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6898), + [sym_comment] = ACTIONS(53), + }, + [2925] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6900), + [sym_comment] = ACTIONS(53), + }, + [2926] = { + [anon_sym_RBRACE] = ACTIONS(6900), + [sym_comment] = ACTIONS(53), + }, + [2927] = { + [sym_concatenation] = STATE(2993), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(2993), + [anon_sym_RBRACE] = ACTIONS(6902), + [anon_sym_EQ] = ACTIONS(6904), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6904), + [anon_sym_COLON_QMARK] = ACTIONS(6904), + [anon_sym_COLON_DASH] = ACTIONS(6904), + [anon_sym_PERCENT] = ACTIONS(6904), + [anon_sym_DASH] = ACTIONS(6904), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2928] = { + [sym__concat] = ACTIONS(3016), + [sym_variable_name] = ACTIONS(3016), + [anon_sym_esac] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_SEMI_SEMI] = ACTIONS(3018), + [anon_sym_PIPE_AMP] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [sym__special_characters] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), + [anon_sym_BQUOTE] = ACTIONS(3018), + [anon_sym_LT_LPAREN] = ACTIONS(3018), + [anon_sym_GT_LPAREN] = ACTIONS(3018), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3018), + [sym_word] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3018), + }, + [2929] = { + [sym_concatenation] = STATE(2996), + [sym_string] = STATE(2995), + [sym_simple_expansion] = STATE(2995), + [sym_string_expansion] = STATE(2995), + [sym_expansion] = STATE(2995), + [sym_command_substitution] = STATE(2995), + [sym_process_substitution] = STATE(2995), + [anon_sym_RBRACE] = ACTIONS(6900), + [sym__special_characters] = ACTIONS(6908), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(6910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6910), + }, + [2930] = { + [sym__concat] = ACTIONS(3059), + [sym_variable_name] = ACTIONS(3059), + [anon_sym_esac] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_SEMI_SEMI] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), + [anon_sym_BQUOTE] = ACTIONS(3061), + [anon_sym_LT_LPAREN] = ACTIONS(3061), + [anon_sym_GT_LPAREN] = ACTIONS(3061), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), + [sym_word] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + }, + [2931] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6912), + }, + [2932] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6914), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2933] = { + [sym__concat] = ACTIONS(3067), + [sym_variable_name] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_SEMI_SEMI] = ACTIONS(3069), + [anon_sym_PIPE_AMP] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [sym__special_characters] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), + [anon_sym_BQUOTE] = ACTIONS(3069), + [anon_sym_LT_LPAREN] = ACTIONS(3069), + [anon_sym_GT_LPAREN] = ACTIONS(3069), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), + [sym_word] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3069), + }, + [2934] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6916), + }, + [2935] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6918), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2936] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6920), + }, + [2937] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6900), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2938] = { + [sym_concatenation] = STATE(3003), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(3003), + [anon_sym_RBRACE] = ACTIONS(6922), + [anon_sym_EQ] = ACTIONS(6924), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6926), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6924), + [anon_sym_COLON_QMARK] = ACTIONS(6924), + [anon_sym_COLON_DASH] = ACTIONS(6924), + [anon_sym_PERCENT] = ACTIONS(6924), + [anon_sym_DASH] = ACTIONS(6924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2939] = { + [sym__concat] = ACTIONS(3083), + [sym_variable_name] = ACTIONS(3083), + [anon_sym_esac] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_SEMI_SEMI] = ACTIONS(3085), + [anon_sym_PIPE_AMP] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [sym__special_characters] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), + [anon_sym_BQUOTE] = ACTIONS(3085), + [anon_sym_LT_LPAREN] = ACTIONS(3085), + [anon_sym_GT_LPAREN] = ACTIONS(3085), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3085), + [sym_word] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + }, + [2940] = { + [sym_concatenation] = STATE(3005), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(3005), + [anon_sym_RBRACE] = ACTIONS(6928), + [anon_sym_EQ] = ACTIONS(6930), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6930), + [anon_sym_COLON_QMARK] = ACTIONS(6930), + [anon_sym_COLON_DASH] = ACTIONS(6930), + [anon_sym_PERCENT] = ACTIONS(6930), + [anon_sym_DASH] = ACTIONS(6930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2941] = { + [sym__concat] = ACTIONS(2920), + [anon_sym_esac] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [anon_sym_PIPE_AMP] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [sym__special_characters] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2922), + [sym_raw_string] = ACTIONS(2922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), + [anon_sym_BQUOTE] = ACTIONS(2922), + [anon_sym_LT_LPAREN] = ACTIONS(2922), + [anon_sym_GT_LPAREN] = ACTIONS(2922), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2922), + [sym_word] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2922), + }, + [2942] = { + [sym__concat] = ACTIONS(2934), + [anon_sym_esac] = ACTIONS(2936), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_SEMI_SEMI] = ACTIONS(2936), + [anon_sym_PIPE_AMP] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [sym__special_characters] = ACTIONS(2936), + [anon_sym_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2936), + [sym_raw_string] = ACTIONS(2936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), + [anon_sym_BQUOTE] = ACTIONS(2936), + [anon_sym_LT_LPAREN] = ACTIONS(2936), + [anon_sym_GT_LPAREN] = ACTIONS(2936), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), + [sym_word] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_LF] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2936), + }, + [2943] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6934), + [sym_comment] = ACTIONS(53), + }, + [2944] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6936), + [sym_comment] = ACTIONS(53), + }, + [2945] = { + [anon_sym_RBRACE] = ACTIONS(6936), + [sym_comment] = ACTIONS(53), + }, + [2946] = { + [sym_concatenation] = STATE(3009), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(3009), + [anon_sym_RBRACE] = ACTIONS(6938), + [anon_sym_EQ] = ACTIONS(6940), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6940), + [anon_sym_COLON_QMARK] = ACTIONS(6940), + [anon_sym_COLON_DASH] = ACTIONS(6940), + [anon_sym_PERCENT] = ACTIONS(6940), + [anon_sym_DASH] = ACTIONS(6940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2947] = { + [sym__concat] = ACTIONS(3016), + [anon_sym_esac] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_SEMI_SEMI] = ACTIONS(3018), + [anon_sym_PIPE_AMP] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [sym__special_characters] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_DOLLAR] = ACTIONS(3018), + [sym_raw_string] = ACTIONS(3018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), + [anon_sym_BQUOTE] = ACTIONS(3018), + [anon_sym_LT_LPAREN] = ACTIONS(3018), + [anon_sym_GT_LPAREN] = ACTIONS(3018), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3018), + [sym_word] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3018), + }, + [2948] = { + [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(6936), + [sym__special_characters] = ACTIONS(6944), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(6946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6946), + }, + [2949] = { + [sym__concat] = ACTIONS(3059), + [anon_sym_esac] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_SEMI_SEMI] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(3061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), + [anon_sym_BQUOTE] = ACTIONS(3061), + [anon_sym_LT_LPAREN] = ACTIONS(3061), + [anon_sym_GT_LPAREN] = ACTIONS(3061), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), + [sym_word] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + }, + [2950] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6948), + }, + [2951] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6950), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2952] = { + [sym__concat] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_SEMI_SEMI] = ACTIONS(3069), + [anon_sym_PIPE_AMP] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [sym__special_characters] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_DOLLAR] = ACTIONS(3069), + [sym_raw_string] = ACTIONS(3069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), + [anon_sym_BQUOTE] = ACTIONS(3069), + [anon_sym_LT_LPAREN] = ACTIONS(3069), + [anon_sym_GT_LPAREN] = ACTIONS(3069), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), + [sym_word] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3069), + }, + [2953] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6952), + }, + [2954] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6954), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2955] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6956), + }, + [2956] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6936), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2957] = { + [sym_concatenation] = STATE(3019), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(3019), + [anon_sym_RBRACE] = ACTIONS(6958), + [anon_sym_EQ] = ACTIONS(6960), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6960), + [anon_sym_COLON_QMARK] = ACTIONS(6960), + [anon_sym_COLON_DASH] = ACTIONS(6960), + [anon_sym_PERCENT] = ACTIONS(6960), + [anon_sym_DASH] = ACTIONS(6960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2958] = { + [sym__concat] = ACTIONS(3083), + [anon_sym_esac] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_SEMI_SEMI] = ACTIONS(3085), + [anon_sym_PIPE_AMP] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [sym__special_characters] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_DOLLAR] = ACTIONS(3085), + [sym_raw_string] = ACTIONS(3085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), + [anon_sym_BQUOTE] = ACTIONS(3085), + [anon_sym_LT_LPAREN] = ACTIONS(3085), + [anon_sym_GT_LPAREN] = ACTIONS(3085), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3085), + [sym_word] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + }, + [2959] = { + [sym_concatenation] = STATE(3021), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(3021), + [anon_sym_RBRACE] = ACTIONS(6964), + [anon_sym_EQ] = ACTIONS(6966), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6966), + [anon_sym_COLON_QMARK] = ACTIONS(6966), + [anon_sym_COLON_DASH] = ACTIONS(6966), + [anon_sym_PERCENT] = ACTIONS(6966), + [anon_sym_DASH] = ACTIONS(6966), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2960] = { + [aux_sym_concatenation_repeat1] = STATE(2960), + [sym__simple_heredoc_body] = ACTIONS(1754), + [sym__heredoc_body_beginning] = ACTIONS(1754), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(1758), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1756), + [anon_sym_LT_LT_LT] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [2961] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(6615), + [anon_sym_DQUOTE] = ACTIONS(6617), + [anon_sym_DOLLAR] = ACTIONS(6615), + [sym_raw_string] = ACTIONS(6617), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6617), + [anon_sym_BQUOTE] = ACTIONS(6617), + [anon_sym_LT_LPAREN] = ACTIONS(6617), + [anon_sym_GT_LPAREN] = ACTIONS(6617), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6615), + }, + [2962] = { + [sym__special_characters] = ACTIONS(6617), + [anon_sym_DQUOTE] = ACTIONS(6617), + [anon_sym_DOLLAR] = ACTIONS(6615), + [sym_raw_string] = ACTIONS(6617), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6617), + [anon_sym_BQUOTE] = ACTIONS(6617), + [anon_sym_LT_LPAREN] = ACTIONS(6617), + [anon_sym_GT_LPAREN] = ACTIONS(6617), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6617), + }, + [2963] = { + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(6970), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), + }, + [2964] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(6970), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), + }, + [2965] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(6623), + [anon_sym_DQUOTE] = ACTIONS(6625), + [anon_sym_DOLLAR] = ACTIONS(6623), + [sym_raw_string] = ACTIONS(6625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6625), + [anon_sym_BQUOTE] = ACTIONS(6625), + [anon_sym_LT_LPAREN] = ACTIONS(6625), + [anon_sym_GT_LPAREN] = ACTIONS(6625), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6623), + }, + [2966] = { + [sym__special_characters] = ACTIONS(6625), + [anon_sym_DQUOTE] = ACTIONS(6625), + [anon_sym_DOLLAR] = ACTIONS(6623), + [sym_raw_string] = ACTIONS(6625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6625), + [anon_sym_BQUOTE] = ACTIONS(6625), + [anon_sym_LT_LPAREN] = ACTIONS(6625), + [anon_sym_GT_LPAREN] = ACTIONS(6625), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6625), + }, + [2967] = { + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(6972), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), + }, + [2968] = { + [sym_file_descriptor] = ACTIONS(371), + [sym_variable_name] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(6972), + [anon_sym_PIPE_AMP] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LF] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(333), + }, + [2969] = { + [sym_file_descriptor] = ACTIONS(5879), + [sym__concat] = ACTIONS(5879), + [anon_sym_esac] = ACTIONS(5881), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_RPAREN] = ACTIONS(5881), + [anon_sym_SEMI_SEMI] = ACTIONS(5881), + [anon_sym_PIPE_AMP] = ACTIONS(5881), + [anon_sym_AMP_AMP] = ACTIONS(5881), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_GT_GT] = ACTIONS(5881), + [anon_sym_AMP_GT] = ACTIONS(5881), + [anon_sym_AMP_GT_GT] = ACTIONS(5881), + [anon_sym_LT_AMP] = ACTIONS(5881), + [anon_sym_GT_AMP] = ACTIONS(5881), + [anon_sym_LT_LT] = ACTIONS(5881), + [anon_sym_LT_LT_DASH] = ACTIONS(5881), + [anon_sym_LT_LT_LT] = ACTIONS(5881), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5881), + [anon_sym_LF] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), + }, + [2970] = { + [sym_file_descriptor] = ACTIONS(5883), + [sym__concat] = ACTIONS(5883), + [anon_sym_esac] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5885), + [anon_sym_SEMI_SEMI] = ACTIONS(5885), + [anon_sym_PIPE_AMP] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_GT_GT] = ACTIONS(5885), + [anon_sym_AMP_GT] = ACTIONS(5885), + [anon_sym_AMP_GT_GT] = ACTIONS(5885), + [anon_sym_LT_AMP] = ACTIONS(5885), + [anon_sym_GT_AMP] = ACTIONS(5885), + [anon_sym_LT_LT] = ACTIONS(5885), + [anon_sym_LT_LT_DASH] = ACTIONS(5885), + [anon_sym_LT_LT_LT] = ACTIONS(5885), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5885), + [anon_sym_LF] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + }, + [2971] = { + [sym_file_descriptor] = ACTIONS(5887), + [sym__concat] = ACTIONS(5887), + [anon_sym_esac] = ACTIONS(5889), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5889), + [anon_sym_SEMI_SEMI] = ACTIONS(5889), + [anon_sym_PIPE_AMP] = ACTIONS(5889), + [anon_sym_AMP_AMP] = ACTIONS(5889), + [anon_sym_PIPE_PIPE] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_GT_GT] = ACTIONS(5889), + [anon_sym_AMP_GT] = ACTIONS(5889), + [anon_sym_AMP_GT_GT] = ACTIONS(5889), + [anon_sym_LT_AMP] = ACTIONS(5889), + [anon_sym_GT_AMP] = ACTIONS(5889), + [anon_sym_LT_LT] = ACTIONS(5889), + [anon_sym_LT_LT_DASH] = ACTIONS(5889), + [anon_sym_LT_LT_LT] = ACTIONS(5889), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5889), + [anon_sym_LF] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), + }, + [2972] = { + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5202), + [anon_sym_LT_AMP] = ACTIONS(5202), + [anon_sym_GT_AMP] = ACTIONS(5202), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_LT_LT_DASH] = ACTIONS(5202), + [anon_sym_LT_LT_LT] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [sym_comment] = ACTIONS(53), + }, + [2973] = { + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5206), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5206), + [anon_sym_LT_AMP] = ACTIONS(5206), + [anon_sym_GT_AMP] = ACTIONS(5206), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_LT_LT_DASH] = ACTIONS(5206), + [anon_sym_LT_LT_LT] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [sym_comment] = ACTIONS(53), + }, + [2974] = { + [sym_file_descriptor] = ACTIONS(5210), + [sym__concat] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5210), + [anon_sym_PIPE_AMP] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5210), + [anon_sym_AMP_GT] = ACTIONS(5212), + [anon_sym_AMP_GT_GT] = ACTIONS(5210), + [anon_sym_LT_AMP] = ACTIONS(5210), + [anon_sym_GT_AMP] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_LT_LT_DASH] = ACTIONS(5210), + [anon_sym_LT_LT_LT] = ACTIONS(5210), + [anon_sym_BQUOTE] = ACTIONS(5210), + [sym_comment] = ACTIONS(53), + }, + [2975] = { + [sym_file_descriptor] = ACTIONS(5214), + [sym__concat] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5214), + [anon_sym_PIPE_AMP] = ACTIONS(5214), + [anon_sym_AMP_AMP] = ACTIONS(5214), + [anon_sym_PIPE_PIPE] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5216), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5214), + [anon_sym_AMP_GT] = ACTIONS(5216), + [anon_sym_AMP_GT_GT] = ACTIONS(5214), + [anon_sym_LT_AMP] = ACTIONS(5214), + [anon_sym_GT_AMP] = ACTIONS(5214), + [anon_sym_LT_LT] = ACTIONS(5216), + [anon_sym_LT_LT_DASH] = ACTIONS(5214), + [anon_sym_LT_LT_LT] = ACTIONS(5214), + [anon_sym_BQUOTE] = ACTIONS(5214), + [sym_comment] = ACTIONS(53), + }, + [2976] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6974), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2977] = { + [sym_file_descriptor] = ACTIONS(5220), + [sym__concat] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_RPAREN] = 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), + [anon_sym_BQUOTE] = ACTIONS(5220), + [sym_comment] = ACTIONS(53), + }, + [2978] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6976), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2979] = { + [sym_file_descriptor] = ACTIONS(5226), + [sym__concat] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_PIPE_AMP] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5226), + [anon_sym_AMP_GT] = ACTIONS(5228), + [anon_sym_AMP_GT_GT] = ACTIONS(5226), + [anon_sym_LT_AMP] = ACTIONS(5226), + [anon_sym_GT_AMP] = ACTIONS(5226), + [anon_sym_LT_LT] = ACTIONS(5228), + [anon_sym_LT_LT_DASH] = ACTIONS(5226), + [anon_sym_LT_LT_LT] = ACTIONS(5226), + [anon_sym_BQUOTE] = ACTIONS(5226), + [sym_comment] = ACTIONS(53), + }, + [2980] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6978), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2981] = { + [sym_file_descriptor] = ACTIONS(5232), + [sym__concat] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5232), + [anon_sym_PIPE_AMP] = ACTIONS(5232), + [anon_sym_AMP_AMP] = ACTIONS(5232), + [anon_sym_PIPE_PIPE] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_GT] = ACTIONS(5232), + [anon_sym_AMP_GT] = ACTIONS(5234), + [anon_sym_AMP_GT_GT] = ACTIONS(5232), + [anon_sym_LT_AMP] = ACTIONS(5232), + [anon_sym_GT_AMP] = ACTIONS(5232), + [anon_sym_LT_LT] = ACTIONS(5234), + [anon_sym_LT_LT_DASH] = ACTIONS(5232), + [anon_sym_LT_LT_LT] = ACTIONS(5232), + [anon_sym_BQUOTE] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), + }, + [2982] = { + [sym_file_descriptor] = ACTIONS(5236), + [sym__concat] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5236), + [anon_sym_PIPE_AMP] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_AMP_GT] = ACTIONS(5238), + [anon_sym_AMP_GT_GT] = ACTIONS(5236), + [anon_sym_LT_AMP] = ACTIONS(5236), + [anon_sym_GT_AMP] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_LT_LT_DASH] = ACTIONS(5236), + [anon_sym_LT_LT_LT] = ACTIONS(5236), + [anon_sym_BQUOTE] = ACTIONS(5236), + [sym_comment] = ACTIONS(53), + }, + [2983] = { + [aux_sym_concatenation_repeat1] = STATE(2985), + [sym__concat] = ACTIONS(1223), + [anon_sym_esac] = ACTIONS(1135), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(1135), + [anon_sym_PIPE_AMP] = ACTIONS(1135), + [anon_sym_AMP_AMP] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1135), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), + }, + [2984] = { + [aux_sym_concatenation_repeat1] = STATE(2985), + [sym__concat] = ACTIONS(1223), + [anon_sym_esac] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_SEMI_SEMI] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + }, + [2985] = { + [aux_sym_concatenation_repeat1] = STATE(3027), + [sym__concat] = ACTIONS(1223), + [anon_sym_esac] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [2986] = { + [aux_sym_concatenation_repeat1] = STATE(2988), + [sym_file_descriptor] = ACTIONS(1133), + [sym__concat] = ACTIONS(3932), + [anon_sym_esac] = ACTIONS(1135), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(1135), + [anon_sym_PIPE_AMP] = ACTIONS(1135), + [anon_sym_AMP_AMP] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1135), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1135), + [anon_sym_AMP_GT] = ACTIONS(1135), + [anon_sym_AMP_GT_GT] = ACTIONS(1135), + [anon_sym_LT_AMP] = ACTIONS(1135), + [anon_sym_GT_AMP] = ACTIONS(1135), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_LT_LT_DASH] = ACTIONS(1135), + [anon_sym_LT_LT_LT] = ACTIONS(1135), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), + }, + [2987] = { + [aux_sym_concatenation_repeat1] = STATE(2988), + [sym_file_descriptor] = ACTIONS(1137), + [sym__concat] = ACTIONS(3932), + [anon_sym_esac] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_SEMI_SEMI] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_AMP_GT] = ACTIONS(1139), + [anon_sym_AMP_GT_GT] = ACTIONS(1139), + [anon_sym_LT_AMP] = ACTIONS(1139), + [anon_sym_GT_AMP] = ACTIONS(1139), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LT_LT_DASH] = ACTIONS(1139), + [anon_sym_LT_LT_LT] = ACTIONS(1139), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + }, + [2988] = { + [aux_sym_concatenation_repeat1] = STATE(3028), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(3932), + [anon_sym_esac] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_LT_LT_LT] = ACTIONS(733), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [2989] = { + [sym_variable_name] = ACTIONS(3581), + [anon_sym_esac] = ACTIONS(3583), + [anon_sym_PIPE] = ACTIONS(3583), + [anon_sym_SEMI_SEMI] = ACTIONS(3583), + [anon_sym_PIPE_AMP] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_PIPE_PIPE] = ACTIONS(3583), + [sym__special_characters] = ACTIONS(3583), + [anon_sym_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3583), + [sym_raw_string] = ACTIONS(3583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3583), + [anon_sym_BQUOTE] = ACTIONS(3583), + [anon_sym_LT_LPAREN] = ACTIONS(3583), + [anon_sym_GT_LPAREN] = ACTIONS(3583), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3583), + [sym_word] = ACTIONS(3583), + [anon_sym_SEMI] = ACTIONS(3583), + [anon_sym_LF] = ACTIONS(3581), + [anon_sym_AMP] = ACTIONS(3583), + }, + [2990] = { + [sym__concat] = ACTIONS(4164), + [sym_variable_name] = ACTIONS(4164), + [anon_sym_esac] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_SEMI_SEMI] = ACTIONS(4166), + [anon_sym_PIPE_AMP] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [sym__special_characters] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), + [anon_sym_BQUOTE] = ACTIONS(4166), + [anon_sym_LT_LPAREN] = ACTIONS(4166), + [anon_sym_GT_LPAREN] = ACTIONS(4166), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4166), + [sym_word] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_LF] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4166), + }, + [2991] = { + [sym__concat] = ACTIONS(4172), + [sym_variable_name] = ACTIONS(4172), + [anon_sym_esac] = ACTIONS(4174), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_SEMI_SEMI] = ACTIONS(4174), + [anon_sym_PIPE_AMP] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4174), + [sym__special_characters] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), + [anon_sym_BQUOTE] = ACTIONS(4174), + [anon_sym_LT_LPAREN] = ACTIONS(4174), + [anon_sym_GT_LPAREN] = ACTIONS(4174), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4174), + [sym_word] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym_LF] = ACTIONS(4172), + [anon_sym_AMP] = ACTIONS(4174), + }, + [2992] = { + [sym__concat] = ACTIONS(4259), + [sym_variable_name] = ACTIONS(4259), + [anon_sym_esac] = ACTIONS(4261), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_SEMI_SEMI] = ACTIONS(4261), + [anon_sym_PIPE_AMP] = ACTIONS(4261), + [anon_sym_AMP_AMP] = ACTIONS(4261), + [anon_sym_PIPE_PIPE] = ACTIONS(4261), + [sym__special_characters] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4261), + [anon_sym_LT_LPAREN] = ACTIONS(4261), + [anon_sym_GT_LPAREN] = ACTIONS(4261), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4261), + [sym_word] = ACTIONS(4261), + [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_LF] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + }, + [2993] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(6980), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2994] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6982), + [sym_comment] = ACTIONS(53), + }, + [2995] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(6984), + [sym_comment] = ACTIONS(53), + }, + [2996] = { + [anon_sym_RBRACE] = ACTIONS(6984), + [sym_comment] = ACTIONS(53), + }, + [2997] = { + [sym_concatenation] = STATE(3033), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(3033), + [anon_sym_RBRACE] = ACTIONS(6986), + [anon_sym_EQ] = ACTIONS(6988), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6990), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6988), + [anon_sym_COLON_QMARK] = ACTIONS(6988), + [anon_sym_COLON_DASH] = ACTIONS(6988), + [anon_sym_PERCENT] = ACTIONS(6988), + [anon_sym_DASH] = ACTIONS(6988), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [2998] = { + [sym__concat] = ACTIONS(4275), + [sym_variable_name] = ACTIONS(4275), + [anon_sym_esac] = ACTIONS(4277), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_SEMI_SEMI] = ACTIONS(4277), + [anon_sym_PIPE_AMP] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [sym__special_characters] = ACTIONS(4277), + [anon_sym_DQUOTE] = ACTIONS(4277), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4277), + [anon_sym_LT_LPAREN] = ACTIONS(4277), + [anon_sym_GT_LPAREN] = ACTIONS(4277), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), + [sym_word] = ACTIONS(4277), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_LF] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + }, + [2999] = { + [sym_concatenation] = STATE(3035), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(3035), + [anon_sym_RBRACE] = ACTIONS(6992), + [anon_sym_EQ] = ACTIONS(6994), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(6996), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(6994), + [anon_sym_COLON_QMARK] = ACTIONS(6994), + [anon_sym_COLON_DASH] = ACTIONS(6994), + [anon_sym_PERCENT] = ACTIONS(6994), + [anon_sym_DASH] = ACTIONS(6994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3000] = { + [sym__concat] = ACTIONS(4285), + [sym_variable_name] = ACTIONS(4285), + [anon_sym_esac] = ACTIONS(4287), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_SEMI_SEMI] = ACTIONS(4287), + [anon_sym_PIPE_AMP] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [sym__special_characters] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), + [anon_sym_BQUOTE] = ACTIONS(4287), + [anon_sym_LT_LPAREN] = ACTIONS(4287), + [anon_sym_GT_LPAREN] = ACTIONS(4287), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4287), + [sym_word] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_LF] = ACTIONS(4285), + [anon_sym_AMP] = ACTIONS(4287), + }, + [3001] = { + [sym_concatenation] = STATE(3037), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(3037), + [anon_sym_RBRACE] = ACTIONS(6998), + [anon_sym_EQ] = ACTIONS(7000), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(7002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(7000), + [anon_sym_COLON_QMARK] = ACTIONS(7000), + [anon_sym_COLON_DASH] = ACTIONS(7000), + [anon_sym_PERCENT] = ACTIONS(7000), + [anon_sym_DASH] = ACTIONS(7000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3002] = { + [sym__concat] = ACTIONS(4295), + [sym_variable_name] = ACTIONS(4295), + [anon_sym_esac] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4297), + [anon_sym_PIPE_AMP] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [sym__special_characters] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LT_LPAREN] = ACTIONS(4297), + [anon_sym_GT_LPAREN] = ACTIONS(4297), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4297), + [sym_word] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_LF] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4297), + }, + [3003] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(7004), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3004] = { + [sym__concat] = ACTIONS(4301), + [sym_variable_name] = ACTIONS(4301), + [anon_sym_esac] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [anon_sym_PIPE_AMP] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_PIPE_PIPE] = ACTIONS(4303), + [sym__special_characters] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LT_LPAREN] = ACTIONS(4303), + [anon_sym_GT_LPAREN] = ACTIONS(4303), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4303), + [sym_word] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4303), + }, + [3005] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(7006), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3006] = { + [sym__concat] = ACTIONS(4164), + [anon_sym_esac] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_SEMI_SEMI] = ACTIONS(4166), + [anon_sym_PIPE_AMP] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [sym__special_characters] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [anon_sym_DOLLAR] = ACTIONS(4166), + [sym_raw_string] = ACTIONS(4166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), + [anon_sym_BQUOTE] = ACTIONS(4166), + [anon_sym_LT_LPAREN] = ACTIONS(4166), + [anon_sym_GT_LPAREN] = ACTIONS(4166), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4166), + [sym_word] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_LF] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4166), + }, + [3007] = { + [sym__concat] = ACTIONS(4172), + [anon_sym_esac] = ACTIONS(4174), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_SEMI_SEMI] = ACTIONS(4174), + [anon_sym_PIPE_AMP] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4174), + [sym__special_characters] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(4174), + [sym_raw_string] = ACTIONS(4174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), + [anon_sym_BQUOTE] = ACTIONS(4174), + [anon_sym_LT_LPAREN] = ACTIONS(4174), + [anon_sym_GT_LPAREN] = ACTIONS(4174), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4174), + [sym_word] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym_LF] = ACTIONS(4172), + [anon_sym_AMP] = ACTIONS(4174), + }, + [3008] = { + [sym__concat] = ACTIONS(4259), + [anon_sym_esac] = ACTIONS(4261), + [anon_sym_PIPE] = ACTIONS(4261), + [anon_sym_SEMI_SEMI] = ACTIONS(4261), + [anon_sym_PIPE_AMP] = ACTIONS(4261), + [anon_sym_AMP_AMP] = ACTIONS(4261), + [anon_sym_PIPE_PIPE] = ACTIONS(4261), + [sym__special_characters] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4261), + [sym_raw_string] = ACTIONS(4261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4261), + [anon_sym_LT_LPAREN] = ACTIONS(4261), + [anon_sym_GT_LPAREN] = ACTIONS(4261), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4261), + [sym_word] = ACTIONS(4261), + [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_LF] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + }, + [3009] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(7008), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3010] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(7010), + [sym_comment] = ACTIONS(53), + }, + [3011] = { + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(7012), + [sym_comment] = ACTIONS(53), + }, + [3012] = { + [anon_sym_RBRACE] = ACTIONS(7012), + [sym_comment] = ACTIONS(53), + }, + [3013] = { + [sym_concatenation] = STATE(3044), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(3044), + [anon_sym_RBRACE] = ACTIONS(7014), + [anon_sym_EQ] = ACTIONS(7016), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(7016), + [anon_sym_COLON_QMARK] = ACTIONS(7016), + [anon_sym_COLON_DASH] = ACTIONS(7016), + [anon_sym_PERCENT] = ACTIONS(7016), + [anon_sym_DASH] = ACTIONS(7016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3014] = { + [sym__concat] = ACTIONS(4275), + [anon_sym_esac] = ACTIONS(4277), + [anon_sym_PIPE] = ACTIONS(4277), + [anon_sym_SEMI_SEMI] = ACTIONS(4277), + [anon_sym_PIPE_AMP] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [sym__special_characters] = ACTIONS(4277), + [anon_sym_DQUOTE] = ACTIONS(4277), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4277), + [anon_sym_LT_LPAREN] = ACTIONS(4277), + [anon_sym_GT_LPAREN] = ACTIONS(4277), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), + [sym_word] = ACTIONS(4277), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_LF] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + }, + [3015] = { + [sym_concatenation] = STATE(3046), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(3046), + [anon_sym_RBRACE] = ACTIONS(7020), + [anon_sym_EQ] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(7022), + [anon_sym_COLON_QMARK] = ACTIONS(7022), + [anon_sym_COLON_DASH] = ACTIONS(7022), + [anon_sym_PERCENT] = ACTIONS(7022), + [anon_sym_DASH] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3016] = { + [sym__concat] = ACTIONS(4285), + [anon_sym_esac] = ACTIONS(4287), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_SEMI_SEMI] = ACTIONS(4287), + [anon_sym_PIPE_AMP] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [sym__special_characters] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), + [anon_sym_BQUOTE] = ACTIONS(4287), + [anon_sym_LT_LPAREN] = ACTIONS(4287), + [anon_sym_GT_LPAREN] = ACTIONS(4287), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4287), + [sym_word] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_LF] = ACTIONS(4285), + [anon_sym_AMP] = ACTIONS(4287), + }, + [3017] = { + [sym_concatenation] = STATE(3048), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(3048), + [anon_sym_RBRACE] = ACTIONS(7026), + [anon_sym_EQ] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(7030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(7028), + [anon_sym_COLON_QMARK] = ACTIONS(7028), + [anon_sym_COLON_DASH] = ACTIONS(7028), + [anon_sym_PERCENT] = ACTIONS(7028), + [anon_sym_DASH] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3018] = { + [sym__concat] = ACTIONS(4295), + [anon_sym_esac] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4297), + [anon_sym_PIPE_AMP] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [sym__special_characters] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [sym_raw_string] = ACTIONS(4297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LT_LPAREN] = ACTIONS(4297), + [anon_sym_GT_LPAREN] = ACTIONS(4297), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4297), + [sym_word] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_LF] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4297), + }, + [3019] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(7032), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3020] = { + [sym__concat] = ACTIONS(4301), + [anon_sym_esac] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [anon_sym_PIPE_AMP] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_PIPE_PIPE] = ACTIONS(4303), + [sym__special_characters] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [sym_raw_string] = ACTIONS(4303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LT_LPAREN] = ACTIONS(4303), + [anon_sym_GT_LPAREN] = ACTIONS(4303), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4303), + [sym_word] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4303), + }, + [3021] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(7034), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3022] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(6827), + [anon_sym_DQUOTE] = ACTIONS(6829), + [anon_sym_DOLLAR] = ACTIONS(6827), + [sym_raw_string] = ACTIONS(6829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6829), + [anon_sym_BQUOTE] = ACTIONS(6829), + [anon_sym_LT_LPAREN] = ACTIONS(6829), + [anon_sym_GT_LPAREN] = ACTIONS(6829), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6827), + }, + [3023] = { + [sym_file_descriptor] = ACTIONS(995), + [sym_variable_name] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_function] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(995), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_typeset] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_readonly] = ACTIONS(997), + [anon_sym_local] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [anon_sym_unsetenv] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(997), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(6833), + [anon_sym_DQUOTE] = ACTIONS(6835), + [anon_sym_DOLLAR] = ACTIONS(6833), + [sym_raw_string] = ACTIONS(6835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6835), + [anon_sym_BQUOTE] = ACTIONS(6835), + [anon_sym_LT_LPAREN] = ACTIONS(6835), + [anon_sym_GT_LPAREN] = ACTIONS(6835), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6833), + }, + [3024] = { + [sym_file_descriptor] = ACTIONS(5879), + [sym__concat] = ACTIONS(5879), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_PIPE_AMP] = ACTIONS(5879), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_GT_GT] = ACTIONS(5879), + [anon_sym_AMP_GT] = ACTIONS(5881), + [anon_sym_AMP_GT_GT] = ACTIONS(5879), + [anon_sym_LT_AMP] = ACTIONS(5879), + [anon_sym_GT_AMP] = ACTIONS(5879), + [anon_sym_LT_LT] = ACTIONS(5881), + [anon_sym_LT_LT_DASH] = ACTIONS(5879), + [anon_sym_LT_LT_LT] = ACTIONS(5879), + [anon_sym_BQUOTE] = ACTIONS(5879), + [sym_comment] = ACTIONS(53), + }, + [3025] = { + [sym_file_descriptor] = ACTIONS(5883), + [sym__concat] = ACTIONS(5883), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5883), + [anon_sym_PIPE_AMP] = ACTIONS(5883), + [anon_sym_AMP_AMP] = ACTIONS(5883), + [anon_sym_PIPE_PIPE] = ACTIONS(5883), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_GT_GT] = ACTIONS(5883), + [anon_sym_AMP_GT] = ACTIONS(5885), + [anon_sym_AMP_GT_GT] = ACTIONS(5883), + [anon_sym_LT_AMP] = ACTIONS(5883), + [anon_sym_GT_AMP] = ACTIONS(5883), + [anon_sym_LT_LT] = ACTIONS(5885), + [anon_sym_LT_LT_DASH] = ACTIONS(5883), + [anon_sym_LT_LT_LT] = ACTIONS(5883), + [anon_sym_BQUOTE] = ACTIONS(5883), + [sym_comment] = ACTIONS(53), + }, + [3026] = { + [sym_file_descriptor] = ACTIONS(5887), + [sym__concat] = ACTIONS(5887), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_PIPE_AMP] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_GT_GT] = ACTIONS(5887), + [anon_sym_AMP_GT] = ACTIONS(5889), + [anon_sym_AMP_GT_GT] = ACTIONS(5887), + [anon_sym_LT_AMP] = ACTIONS(5887), + [anon_sym_GT_AMP] = ACTIONS(5887), + [anon_sym_LT_LT] = ACTIONS(5889), + [anon_sym_LT_LT_DASH] = ACTIONS(5887), + [anon_sym_LT_LT_LT] = ACTIONS(5887), + [anon_sym_BQUOTE] = ACTIONS(5887), + [sym_comment] = ACTIONS(53), + }, + [3027] = { + [aux_sym_concatenation_repeat1] = STATE(3027), + [sym__concat] = ACTIONS(3690), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [3028] = { + [aux_sym_concatenation_repeat1] = STATE(3028), + [sym_file_descriptor] = ACTIONS(1754), + [sym__concat] = ACTIONS(5736), + [anon_sym_esac] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_AMP_GT] = ACTIONS(1756), + [anon_sym_AMP_GT_GT] = ACTIONS(1756), + [anon_sym_LT_AMP] = ACTIONS(1756), + [anon_sym_GT_AMP] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_LT_LT_DASH] = ACTIONS(1756), + [anon_sym_LT_LT_LT] = ACTIONS(1756), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + }, + [3029] = { + [sym__concat] = ACTIONS(5202), + [sym_variable_name] = ACTIONS(5202), + [anon_sym_esac] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5204), + [anon_sym_PIPE_AMP] = ACTIONS(5204), + [anon_sym_AMP_AMP] = ACTIONS(5204), + [anon_sym_PIPE_PIPE] = ACTIONS(5204), + [sym__special_characters] = ACTIONS(5204), + [anon_sym_DQUOTE] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), + [anon_sym_BQUOTE] = ACTIONS(5204), + [anon_sym_LT_LPAREN] = ACTIONS(5204), + [anon_sym_GT_LPAREN] = ACTIONS(5204), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), + [sym_word] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + }, + [3030] = { + [sym__concat] = ACTIONS(5206), + [sym_variable_name] = ACTIONS(5206), + [anon_sym_esac] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5208), + [anon_sym_PIPE_AMP] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [sym__special_characters] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), + [anon_sym_BQUOTE] = ACTIONS(5208), + [anon_sym_LT_LPAREN] = ACTIONS(5208), + [anon_sym_GT_LPAREN] = ACTIONS(5208), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), + [sym_word] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + }, + [3031] = { + [sym__concat] = ACTIONS(5210), + [sym_variable_name] = ACTIONS(5210), + [anon_sym_esac] = ACTIONS(5212), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_SEMI_SEMI] = ACTIONS(5212), + [anon_sym_PIPE_AMP] = ACTIONS(5212), + [anon_sym_AMP_AMP] = ACTIONS(5212), + [anon_sym_PIPE_PIPE] = ACTIONS(5212), + [sym__special_characters] = ACTIONS(5212), + [anon_sym_DQUOTE] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), + [anon_sym_BQUOTE] = ACTIONS(5212), + [anon_sym_LT_LPAREN] = ACTIONS(5212), + [anon_sym_GT_LPAREN] = ACTIONS(5212), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5212), + [sym_word] = ACTIONS(5212), + [anon_sym_SEMI] = ACTIONS(5212), + [anon_sym_LF] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5212), + }, + [3032] = { + [sym__concat] = ACTIONS(5214), + [sym_variable_name] = ACTIONS(5214), + [anon_sym_esac] = ACTIONS(5216), + [anon_sym_PIPE] = 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), + [sym__special_characters] = ACTIONS(5216), + [anon_sym_DQUOTE] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5216), + [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(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5216), + [sym_word] = ACTIONS(5216), + [anon_sym_SEMI] = ACTIONS(5216), + [anon_sym_LF] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5216), + }, + [3033] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(7036), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3034] = { + [sym__concat] = ACTIONS(5220), + [sym_variable_name] = ACTIONS(5220), + [anon_sym_esac] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_SEMI_SEMI] = ACTIONS(5222), + [anon_sym_PIPE_AMP] = ACTIONS(5222), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [sym__special_characters] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5222), + [sym_raw_string] = ACTIONS(5222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), + [anon_sym_BQUOTE] = ACTIONS(5222), + [anon_sym_LT_LPAREN] = ACTIONS(5222), + [anon_sym_GT_LPAREN] = ACTIONS(5222), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), + [sym_word] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LF] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5222), + }, + [3035] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(7038), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3036] = { + [sym__concat] = ACTIONS(5226), + [sym_variable_name] = ACTIONS(5226), + [anon_sym_esac] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_SEMI_SEMI] = ACTIONS(5228), + [anon_sym_PIPE_AMP] = ACTIONS(5228), + [anon_sym_AMP_AMP] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5228), + [sym__special_characters] = ACTIONS(5228), + [anon_sym_DQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), + [anon_sym_BQUOTE] = ACTIONS(5228), + [anon_sym_LT_LPAREN] = ACTIONS(5228), + [anon_sym_GT_LPAREN] = ACTIONS(5228), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5228), + [sym_word] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(5228), + [anon_sym_LF] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), + }, + [3037] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(7040), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3038] = { + [sym__concat] = ACTIONS(5232), + [sym_variable_name] = ACTIONS(5232), + [anon_sym_esac] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_SEMI_SEMI] = ACTIONS(5234), + [anon_sym_PIPE_AMP] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [sym__special_characters] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), + [anon_sym_BQUOTE] = ACTIONS(5234), + [anon_sym_LT_LPAREN] = ACTIONS(5234), + [anon_sym_GT_LPAREN] = ACTIONS(5234), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5234), + [sym_word] = ACTIONS(5234), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LF] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5234), + }, + [3039] = { + [sym__concat] = ACTIONS(5236), + [sym_variable_name] = ACTIONS(5236), + [anon_sym_esac] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_SEMI_SEMI] = ACTIONS(5238), + [anon_sym_PIPE_AMP] = ACTIONS(5238), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [sym__special_characters] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), + [anon_sym_BQUOTE] = ACTIONS(5238), + [anon_sym_LT_LPAREN] = ACTIONS(5238), + [anon_sym_GT_LPAREN] = ACTIONS(5238), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5238), + [sym_word] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LF] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), + }, + [3040] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_esac] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5204), + [anon_sym_PIPE_AMP] = ACTIONS(5204), + [anon_sym_AMP_AMP] = ACTIONS(5204), + [anon_sym_PIPE_PIPE] = ACTIONS(5204), + [sym__special_characters] = ACTIONS(5204), + [anon_sym_DQUOTE] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), + [anon_sym_BQUOTE] = ACTIONS(5204), + [anon_sym_LT_LPAREN] = ACTIONS(5204), + [anon_sym_GT_LPAREN] = ACTIONS(5204), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), + [sym_word] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + }, + [3041] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_esac] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5208), + [anon_sym_PIPE_AMP] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [sym__special_characters] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), + [anon_sym_BQUOTE] = ACTIONS(5208), + [anon_sym_LT_LPAREN] = ACTIONS(5208), + [anon_sym_GT_LPAREN] = ACTIONS(5208), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), + [sym_word] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + }, + [3042] = { + [sym__concat] = ACTIONS(5210), + [anon_sym_esac] = ACTIONS(5212), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_SEMI_SEMI] = ACTIONS(5212), + [anon_sym_PIPE_AMP] = ACTIONS(5212), + [anon_sym_AMP_AMP] = ACTIONS(5212), + [anon_sym_PIPE_PIPE] = ACTIONS(5212), + [sym__special_characters] = ACTIONS(5212), + [anon_sym_DQUOTE] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5212), + [sym_raw_string] = ACTIONS(5212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), + [anon_sym_BQUOTE] = ACTIONS(5212), + [anon_sym_LT_LPAREN] = ACTIONS(5212), + [anon_sym_GT_LPAREN] = ACTIONS(5212), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5212), + [sym_word] = ACTIONS(5212), + [anon_sym_SEMI] = ACTIONS(5212), + [anon_sym_LF] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5212), + }, + [3043] = { + [sym__concat] = ACTIONS(5214), + [anon_sym_esac] = ACTIONS(5216), + [anon_sym_PIPE] = 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), + [sym__special_characters] = ACTIONS(5216), + [anon_sym_DQUOTE] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5216), + [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(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5216), + [sym_word] = ACTIONS(5216), + [anon_sym_SEMI] = ACTIONS(5216), + [anon_sym_LF] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5216), + }, + [3044] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(7042), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3045] = { + [sym__concat] = ACTIONS(5220), + [anon_sym_esac] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_SEMI_SEMI] = ACTIONS(5222), + [anon_sym_PIPE_AMP] = ACTIONS(5222), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [sym__special_characters] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5222), + [sym_raw_string] = ACTIONS(5222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), + [anon_sym_BQUOTE] = ACTIONS(5222), + [anon_sym_LT_LPAREN] = ACTIONS(5222), + [anon_sym_GT_LPAREN] = ACTIONS(5222), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), + [sym_word] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LF] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5222), + }, + [3046] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(7044), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3047] = { + [sym__concat] = ACTIONS(5226), + [anon_sym_esac] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_SEMI_SEMI] = ACTIONS(5228), + [anon_sym_PIPE_AMP] = ACTIONS(5228), + [anon_sym_AMP_AMP] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5228), + [sym__special_characters] = ACTIONS(5228), + [anon_sym_DQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR] = ACTIONS(5228), + [sym_raw_string] = ACTIONS(5228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), + [anon_sym_BQUOTE] = ACTIONS(5228), + [anon_sym_LT_LPAREN] = ACTIONS(5228), + [anon_sym_GT_LPAREN] = ACTIONS(5228), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5228), + [sym_word] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(5228), + [anon_sym_LF] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), + }, + [3048] = { + [sym_concatenation] = STATE(889), + [sym_string] = STATE(434), + [sym_simple_expansion] = STATE(434), + [sym_string_expansion] = STATE(434), + [sym_expansion] = STATE(434), + [sym_command_substitution] = STATE(434), + [sym_process_substitution] = STATE(434), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(7046), + [anon_sym_EQ] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym_raw_string] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(805), + [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(807), + }, + [3049] = { + [sym__concat] = ACTIONS(5232), + [anon_sym_esac] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_SEMI_SEMI] = ACTIONS(5234), + [anon_sym_PIPE_AMP] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [sym__special_characters] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5234), + [sym_raw_string] = ACTIONS(5234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), + [anon_sym_BQUOTE] = ACTIONS(5234), + [anon_sym_LT_LPAREN] = ACTIONS(5234), + [anon_sym_GT_LPAREN] = ACTIONS(5234), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5234), + [sym_word] = ACTIONS(5234), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LF] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5234), + }, + [3050] = { + [sym__concat] = ACTIONS(5236), + [anon_sym_esac] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_SEMI_SEMI] = ACTIONS(5238), + [anon_sym_PIPE_AMP] = ACTIONS(5238), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [sym__special_characters] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(5238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), + [anon_sym_BQUOTE] = ACTIONS(5238), + [anon_sym_LT_LPAREN] = ACTIONS(5238), + [anon_sym_GT_LPAREN] = ACTIONS(5238), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5238), + [sym_word] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LF] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), + }, + [3051] = { + [sym__concat] = ACTIONS(5879), + [sym_variable_name] = ACTIONS(5879), + [anon_sym_esac] = ACTIONS(5881), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_SEMI_SEMI] = ACTIONS(5881), + [anon_sym_PIPE_AMP] = ACTIONS(5881), + [anon_sym_AMP_AMP] = ACTIONS(5881), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [sym__special_characters] = ACTIONS(5881), + [anon_sym_DQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), + [anon_sym_BQUOTE] = ACTIONS(5881), + [anon_sym_LT_LPAREN] = ACTIONS(5881), + [anon_sym_GT_LPAREN] = ACTIONS(5881), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5881), + [sym_word] = ACTIONS(5881), + [anon_sym_SEMI] = ACTIONS(5881), + [anon_sym_LF] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), + }, + [3052] = { + [sym__concat] = ACTIONS(5883), + [sym_variable_name] = ACTIONS(5883), + [anon_sym_esac] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_SEMI_SEMI] = ACTIONS(5885), + [anon_sym_PIPE_AMP] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [sym__special_characters] = ACTIONS(5885), + [anon_sym_DQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), + [anon_sym_BQUOTE] = ACTIONS(5885), + [anon_sym_LT_LPAREN] = ACTIONS(5885), + [anon_sym_GT_LPAREN] = ACTIONS(5885), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5885), + [sym_word] = ACTIONS(5885), + [anon_sym_SEMI] = ACTIONS(5885), + [anon_sym_LF] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + }, + [3053] = { + [sym__concat] = ACTIONS(5887), + [sym_variable_name] = ACTIONS(5887), + [anon_sym_esac] = ACTIONS(5889), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_SEMI_SEMI] = ACTIONS(5889), + [anon_sym_PIPE_AMP] = ACTIONS(5889), + [anon_sym_AMP_AMP] = ACTIONS(5889), + [anon_sym_PIPE_PIPE] = ACTIONS(5889), + [sym__special_characters] = ACTIONS(5889), + [anon_sym_DQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), + [anon_sym_BQUOTE] = ACTIONS(5889), + [anon_sym_LT_LPAREN] = ACTIONS(5889), + [anon_sym_GT_LPAREN] = ACTIONS(5889), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5889), + [sym_word] = ACTIONS(5889), + [anon_sym_SEMI] = ACTIONS(5889), + [anon_sym_LF] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), + }, + [3054] = { + [sym__concat] = ACTIONS(5879), + [anon_sym_esac] = ACTIONS(5881), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_SEMI_SEMI] = ACTIONS(5881), + [anon_sym_PIPE_AMP] = ACTIONS(5881), + [anon_sym_AMP_AMP] = ACTIONS(5881), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [sym__special_characters] = ACTIONS(5881), + [anon_sym_DQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR] = ACTIONS(5881), + [sym_raw_string] = ACTIONS(5881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), + [anon_sym_BQUOTE] = ACTIONS(5881), + [anon_sym_LT_LPAREN] = ACTIONS(5881), + [anon_sym_GT_LPAREN] = ACTIONS(5881), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5881), + [sym_word] = ACTIONS(5881), + [anon_sym_SEMI] = ACTIONS(5881), + [anon_sym_LF] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), + }, + [3055] = { + [sym__concat] = ACTIONS(5883), + [anon_sym_esac] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_SEMI_SEMI] = ACTIONS(5885), + [anon_sym_PIPE_AMP] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [sym__special_characters] = ACTIONS(5885), + [anon_sym_DQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), + [anon_sym_BQUOTE] = ACTIONS(5885), + [anon_sym_LT_LPAREN] = ACTIONS(5885), + [anon_sym_GT_LPAREN] = ACTIONS(5885), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5885), + [sym_word] = ACTIONS(5885), + [anon_sym_SEMI] = ACTIONS(5885), + [anon_sym_LF] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + }, + [3056] = { + [sym__concat] = ACTIONS(5887), + [anon_sym_esac] = ACTIONS(5889), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_SEMI_SEMI] = ACTIONS(5889), + [anon_sym_PIPE_AMP] = ACTIONS(5889), + [anon_sym_AMP_AMP] = ACTIONS(5889), + [anon_sym_PIPE_PIPE] = ACTIONS(5889), + [sym__special_characters] = ACTIONS(5889), + [anon_sym_DQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR] = ACTIONS(5889), + [sym_raw_string] = ACTIONS(5889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), + [anon_sym_BQUOTE] = ACTIONS(5889), + [anon_sym_LT_LPAREN] = ACTIONS(5889), + [anon_sym_GT_LPAREN] = ACTIONS(5889), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5889), + [sym_word] = ACTIONS(5889), + [anon_sym_SEMI] = ACTIONS(5889), + [anon_sym_LF] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), }, }; @@ -71734,71 +76119,71 @@ static TSParseActionEntry ts_parse_actions[] = { [51] = {.count = 1, .reusable = true}, SHIFT(23), [53] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), [55] = {.count = 1, .reusable = false}, SHIFT(24), - [57] = {.count = 1, .reusable = false}, SHIFT(34), - [59] = {.count = 1, .reusable = true}, SHIFT(34), - [61] = {.count = 1, .reusable = true}, SHIFT(35), - [63] = {.count = 1, .reusable = true}, SHIFT(36), - [65] = {.count = 1, .reusable = true}, SHIFT(37), - [67] = {.count = 1, .reusable = true}, SHIFT(42), - [69] = {.count = 1, .reusable = true}, SHIFT(43), - [71] = {.count = 1, .reusable = false}, SHIFT(44), - [73] = {.count = 1, .reusable = true}, SHIFT(45), - [75] = {.count = 1, .reusable = true}, SHIFT(46), - [77] = {.count = 1, .reusable = true}, SHIFT(47), - [79] = {.count = 1, .reusable = true}, SHIFT(48), - [81] = {.count = 1, .reusable = true}, SHIFT(49), - [83] = {.count = 1, .reusable = true}, SHIFT(51), - [85] = {.count = 1, .reusable = true}, SHIFT(52), - [87] = {.count = 1, .reusable = false}, SHIFT(53), - [89] = {.count = 1, .reusable = false}, SHIFT(54), - [91] = {.count = 1, .reusable = false}, SHIFT(55), - [93] = {.count = 1, .reusable = false}, SHIFT(56), - [95] = {.count = 1, .reusable = true}, SHIFT(57), - [97] = {.count = 1, .reusable = false}, SHIFT(58), - [99] = {.count = 1, .reusable = false}, SHIFT(59), - [101] = {.count = 1, .reusable = false}, SHIFT(60), - [103] = {.count = 1, .reusable = true}, SHIFT(61), - [105] = {.count = 1, .reusable = false}, SHIFT(62), - [107] = {.count = 1, .reusable = true}, SHIFT(69), - [109] = {.count = 1, .reusable = true}, SHIFT(72), - [111] = {.count = 1, .reusable = false}, SHIFT(73), - [113] = {.count = 1, .reusable = true}, SHIFT(74), - [115] = {.count = 1, .reusable = true}, SHIFT(75), - [117] = {.count = 1, .reusable = false}, SHIFT(76), - [119] = {.count = 1, .reusable = true}, SHIFT(77), - [121] = {.count = 1, .reusable = true}, SHIFT(78), - [123] = {.count = 1, .reusable = true}, SHIFT(79), - [125] = {.count = 1, .reusable = true}, SHIFT(80), - [127] = {.count = 1, .reusable = true}, SHIFT(81), - [129] = {.count = 1, .reusable = false}, SHIFT(77), - [131] = {.count = 1, .reusable = true}, SHIFT(73), - [133] = {.count = 1, .reusable = true}, SHIFT(83), - [135] = {.count = 1, .reusable = false}, SHIFT(84), - [137] = {.count = 1, .reusable = true}, SHIFT(85), - [139] = {.count = 1, .reusable = true}, SHIFT(86), - [141] = {.count = 1, .reusable = false}, SHIFT(87), - [143] = {.count = 1, .reusable = true}, SHIFT(88), - [145] = {.count = 1, .reusable = true}, SHIFT(89), - [147] = {.count = 1, .reusable = true}, SHIFT(90), - [149] = {.count = 1, .reusable = true}, SHIFT(91), - [151] = {.count = 1, .reusable = true}, SHIFT(92), - [153] = {.count = 1, .reusable = false}, SHIFT(88), - [155] = {.count = 1, .reusable = true}, SHIFT(84), - [157] = {.count = 1, .reusable = true}, SHIFT(94), - [159] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), - [161] = {.count = 1, .reusable = false}, SHIFT(95), - [163] = {.count = 1, .reusable = false}, SHIFT(96), - [165] = {.count = 1, .reusable = false}, SHIFT(97), - [167] = {.count = 1, .reusable = false}, SHIFT(98), - [169] = {.count = 1, .reusable = false}, SHIFT(99), - [171] = {.count = 1, .reusable = false}, SHIFT(100), - [173] = {.count = 1, .reusable = false}, SHIFT(101), - [175] = {.count = 1, .reusable = false}, SHIFT(102), - [177] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [179] = {.count = 1, .reusable = false}, SHIFT(103), - [181] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), - [183] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), - [185] = {.count = 1, .reusable = false}, SHIFT(106), + [57] = {.count = 1, .reusable = false}, SHIFT(33), + [59] = {.count = 1, .reusable = true}, SHIFT(33), + [61] = {.count = 1, .reusable = true}, SHIFT(34), + [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(42), + [71] = {.count = 1, .reusable = true}, SHIFT(43), + [73] = {.count = 1, .reusable = false}, SHIFT(44), + [75] = {.count = 1, .reusable = true}, SHIFT(45), + [77] = {.count = 1, .reusable = true}, SHIFT(46), + [79] = {.count = 1, .reusable = true}, SHIFT(47), + [81] = {.count = 1, .reusable = true}, SHIFT(48), + [83] = {.count = 1, .reusable = true}, SHIFT(49), + [85] = {.count = 1, .reusable = true}, SHIFT(51), + [87] = {.count = 1, .reusable = true}, SHIFT(52), + [89] = {.count = 1, .reusable = false}, SHIFT(53), + [91] = {.count = 1, .reusable = false}, SHIFT(54), + [93] = {.count = 1, .reusable = false}, SHIFT(55), + [95] = {.count = 1, .reusable = false}, SHIFT(56), + [97] = {.count = 1, .reusable = true}, SHIFT(57), + [99] = {.count = 1, .reusable = false}, SHIFT(58), + [101] = {.count = 1, .reusable = false}, SHIFT(59), + [103] = {.count = 1, .reusable = false}, SHIFT(60), + [105] = {.count = 1, .reusable = true}, SHIFT(61), + [107] = {.count = 1, .reusable = false}, SHIFT(62), + [109] = {.count = 1, .reusable = true}, SHIFT(69), + [111] = {.count = 1, .reusable = true}, SHIFT(72), + [113] = {.count = 1, .reusable = false}, SHIFT(73), + [115] = {.count = 1, .reusable = true}, SHIFT(74), + [117] = {.count = 1, .reusable = true}, SHIFT(75), + [119] = {.count = 1, .reusable = false}, SHIFT(76), + [121] = {.count = 1, .reusable = true}, SHIFT(77), + [123] = {.count = 1, .reusable = true}, SHIFT(78), + [125] = {.count = 1, .reusable = true}, SHIFT(79), + [127] = {.count = 1, .reusable = true}, SHIFT(80), + [129] = {.count = 1, .reusable = true}, SHIFT(81), + [131] = {.count = 1, .reusable = false}, SHIFT(77), + [133] = {.count = 1, .reusable = true}, SHIFT(73), + [135] = {.count = 1, .reusable = true}, SHIFT(83), + [137] = {.count = 1, .reusable = false}, SHIFT(84), + [139] = {.count = 1, .reusable = true}, SHIFT(85), + [141] = {.count = 1, .reusable = true}, SHIFT(86), + [143] = {.count = 1, .reusable = false}, SHIFT(87), + [145] = {.count = 1, .reusable = true}, SHIFT(88), + [147] = {.count = 1, .reusable = true}, SHIFT(89), + [149] = {.count = 1, .reusable = true}, SHIFT(90), + [151] = {.count = 1, .reusable = true}, SHIFT(91), + [153] = {.count = 1, .reusable = true}, SHIFT(92), + [155] = {.count = 1, .reusable = false}, SHIFT(88), + [157] = {.count = 1, .reusable = true}, SHIFT(84), + [159] = {.count = 1, .reusable = true}, SHIFT(94), + [161] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), + [163] = {.count = 1, .reusable = false}, SHIFT(95), + [165] = {.count = 1, .reusable = false}, SHIFT(96), + [167] = {.count = 1, .reusable = false}, SHIFT(97), + [169] = {.count = 1, .reusable = false}, SHIFT(98), + [171] = {.count = 1, .reusable = false}, SHIFT(99), + [173] = {.count = 1, .reusable = false}, SHIFT(100), + [175] = {.count = 1, .reusable = false}, SHIFT(101), + [177] = {.count = 1, .reusable = false}, SHIFT(102), + [179] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [181] = {.count = 1, .reusable = false}, SHIFT(103), + [183] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), + [185] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), [187] = {.count = 1, .reusable = false}, SHIFT(107), [189] = {.count = 1, .reusable = false}, SHIFT(108), [191] = {.count = 1, .reusable = false}, SHIFT(109), @@ -71807,3134 +76192,3312 @@ static TSParseActionEntry ts_parse_actions[] = { [197] = {.count = 1, .reusable = false}, SHIFT(112), [199] = {.count = 1, .reusable = false}, SHIFT(113), [201] = {.count = 1, .reusable = false}, SHIFT(114), - [203] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), - [205] = {.count = 1, .reusable = true}, SHIFT(116), + [203] = {.count = 1, .reusable = false}, SHIFT(115), + [205] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), [207] = {.count = 1, .reusable = true}, SHIFT(117), - [209] = {.count = 1, .reusable = false}, SHIFT(118), - [211] = {.count = 1, .reusable = true}, SHIFT(119), + [209] = {.count = 1, .reusable = true}, SHIFT(118), + [211] = {.count = 1, .reusable = false}, SHIFT(119), [213] = {.count = 1, .reusable = true}, SHIFT(120), [215] = {.count = 1, .reusable = true}, SHIFT(121), [217] = {.count = 1, .reusable = true}, SHIFT(122), [219] = {.count = 1, .reusable = true}, SHIFT(123), - [221] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [223] = {.count = 1, .reusable = true}, SHIFT(125), - [225] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [227] = {.count = 1, .reusable = false}, SHIFT(127), + [221] = {.count = 1, .reusable = true}, SHIFT(124), + [223] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [225] = {.count = 1, .reusable = true}, SHIFT(126), + [227] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), [229] = {.count = 1, .reusable = false}, SHIFT(128), - [231] = {.count = 1, .reusable = true}, SHIFT(129), - [233] = {.count = 1, .reusable = false}, SHIFT(130), + [231] = {.count = 1, .reusable = false}, SHIFT(129), + [233] = {.count = 1, .reusable = true}, SHIFT(130), [235] = {.count = 1, .reusable = false}, SHIFT(131), [237] = {.count = 1, .reusable = false}, SHIFT(132), - [239] = {.count = 1, .reusable = true}, SHIFT(134), + [239] = {.count = 1, .reusable = false}, SHIFT(133), [241] = {.count = 1, .reusable = true}, SHIFT(135), - [243] = {.count = 1, .reusable = false}, SHIFT(136), - [245] = {.count = 1, .reusable = false}, SHIFT(134), - [247] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), - [249] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), - [251] = {.count = 1, .reusable = true}, SHIFT(137), + [243] = {.count = 1, .reusable = true}, SHIFT(136), + [245] = {.count = 1, .reusable = false}, SHIFT(137), + [247] = {.count = 1, .reusable = false}, SHIFT(135), + [249] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), + [251] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), [253] = {.count = 1, .reusable = true}, SHIFT(138), [255] = {.count = 1, .reusable = true}, SHIFT(139), - [257] = {.count = 1, .reusable = false}, SHIFT(140), - [259] = {.count = 1, .reusable = false}, SHIFT(138), - [261] = {.count = 1, .reusable = true}, SHIFT(142), - [263] = {.count = 1, .reusable = false}, SHIFT(143), + [257] = {.count = 1, .reusable = true}, SHIFT(140), + [259] = {.count = 1, .reusable = false}, SHIFT(141), + [261] = {.count = 1, .reusable = false}, SHIFT(139), + [263] = {.count = 1, .reusable = true}, SHIFT(143), [265] = {.count = 1, .reusable = false}, SHIFT(144), [267] = {.count = 1, .reusable = false}, SHIFT(145), [269] = {.count = 1, .reusable = false}, SHIFT(146), [271] = {.count = 1, .reusable = false}, SHIFT(147), - [273] = {.count = 1, .reusable = true}, SHIFT(148), - [275] = {.count = 1, .reusable = false}, SHIFT(149), + [273] = {.count = 1, .reusable = false}, SHIFT(148), + [275] = {.count = 1, .reusable = true}, SHIFT(149), [277] = {.count = 1, .reusable = false}, SHIFT(150), - [279] = {.count = 1, .reusable = true}, SHIFT(151), - [281] = {.count = 1, .reusable = false}, SHIFT(152), + [279] = {.count = 1, .reusable = false}, SHIFT(151), + [281] = {.count = 1, .reusable = true}, SHIFT(152), [283] = {.count = 1, .reusable = false}, SHIFT(153), [285] = {.count = 1, .reusable = false}, SHIFT(154), - [287] = {.count = 1, .reusable = true}, SHIFT(155), - [289] = {.count = 1, .reusable = false}, SHIFT(156), - [291] = {.count = 1, .reusable = true}, SHIFT(157), + [287] = {.count = 1, .reusable = false}, SHIFT(155), + [289] = {.count = 1, .reusable = true}, SHIFT(156), + [291] = {.count = 1, .reusable = false}, SHIFT(157), [293] = {.count = 1, .reusable = true}, SHIFT(158), [295] = {.count = 1, .reusable = true}, SHIFT(159), [297] = {.count = 1, .reusable = true}, SHIFT(160), [299] = {.count = 1, .reusable = true}, SHIFT(161), - [301] = {.count = 1, .reusable = false}, SHIFT(162), - [303] = {.count = 1, .reusable = true}, SHIFT(169), - [305] = {.count = 1, .reusable = false}, SHIFT(170), + [301] = {.count = 1, .reusable = true}, SHIFT(162), + [303] = {.count = 1, .reusable = false}, SHIFT(163), + [305] = {.count = 1, .reusable = true}, SHIFT(170), [307] = {.count = 1, .reusable = false}, SHIFT(171), [309] = {.count = 1, .reusable = false}, SHIFT(172), [311] = {.count = 1, .reusable = false}, SHIFT(173), - [313] = {.count = 1, .reusable = true}, SHIFT(174), - [315] = {.count = 1, .reusable = false}, SHIFT(175), + [313] = {.count = 1, .reusable = false}, SHIFT(174), + [315] = {.count = 1, .reusable = true}, SHIFT(175), [317] = {.count = 1, .reusable = false}, SHIFT(176), [319] = {.count = 1, .reusable = false}, SHIFT(177), - [321] = {.count = 1, .reusable = true}, SHIFT(178), - [323] = {.count = 1, .reusable = false}, SHIFT(179), - [325] = {.count = 1, .reusable = false}, SHIFT(187), - [327] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [329] = {.count = 1, .reusable = false}, SHIFT(188), + [321] = {.count = 1, .reusable = false}, SHIFT(178), + [323] = {.count = 1, .reusable = true}, SHIFT(179), + [325] = {.count = 1, .reusable = false}, SHIFT(180), + [327] = {.count = 1, .reusable = false}, SHIFT(188), + [329] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), [331] = {.count = 1, .reusable = false}, SHIFT(189), [333] = {.count = 1, .reusable = false}, SHIFT(190), - [335] = {.count = 1, .reusable = true}, SHIFT(189), - [337] = {.count = 1, .reusable = true}, SHIFT(191), + [335] = {.count = 1, .reusable = false}, SHIFT(191), + [337] = {.count = 1, .reusable = true}, SHIFT(190), [339] = {.count = 1, .reusable = true}, SHIFT(192), [341] = {.count = 1, .reusable = true}, SHIFT(193), - [343] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), - [345] = {.count = 1, .reusable = false}, SHIFT(194), + [343] = {.count = 1, .reusable = true}, SHIFT(194), + [345] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), [347] = {.count = 1, .reusable = false}, SHIFT(195), [349] = {.count = 1, .reusable = false}, SHIFT(196), [351] = {.count = 1, .reusable = false}, SHIFT(197), [353] = {.count = 1, .reusable = false}, SHIFT(198), - [355] = {.count = 1, .reusable = false}, SHIFT(17), - [357] = {.count = 1, .reusable = false}, SHIFT(199), - [359] = {.count = 1, .reusable = false}, SHIFT(20), - [361] = {.count = 1, .reusable = false}, SHIFT(21), - [363] = {.count = 1, .reusable = false}, SHIFT(22), - [365] = {.count = 1, .reusable = false}, SHIFT(23), - [367] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), - [369] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), - [371] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), - [373] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), - [375] = {.count = 1, .reusable = true}, SHIFT(16), - [377] = {.count = 1, .reusable = true}, SHIFT(206), - [379] = {.count = 1, .reusable = true}, SHIFT(207), + [355] = {.count = 1, .reusable = false}, SHIFT(199), + [357] = {.count = 1, .reusable = false}, SHIFT(17), + [359] = {.count = 1, .reusable = false}, SHIFT(200), + [361] = {.count = 1, .reusable = false}, SHIFT(20), + [363] = {.count = 1, .reusable = false}, SHIFT(21), + [365] = {.count = 1, .reusable = false}, SHIFT(22), + [367] = {.count = 1, .reusable = false}, SHIFT(23), + [369] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), + [371] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), + [373] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), + [375] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), + [377] = {.count = 1, .reusable = true}, SHIFT(16), + [379] = {.count = 1, .reusable = true}, SHIFT(208), [381] = {.count = 1, .reusable = true}, SHIFT(209), - [383] = {.count = 1, .reusable = true}, SHIFT(210), + [383] = {.count = 1, .reusable = true}, SHIFT(211), [385] = {.count = 1, .reusable = true}, SHIFT(212), - [387] = {.count = 1, .reusable = true}, SHIFT(213), - [389] = {.count = 1, .reusable = true}, SHIFT(214), - [391] = {.count = 1, .reusable = true}, SHIFT(215), - [393] = {.count = 1, .reusable = false}, SHIFT(216), - [395] = {.count = 1, .reusable = true}, SHIFT(217), - [397] = {.count = 1, .reusable = true}, SHIFT(218), - [399] = {.count = 1, .reusable = true}, SHIFT(219), - [401] = {.count = 1, .reusable = true}, SHIFT(220), - [403] = {.count = 1, .reusable = true}, SHIFT(221), - [405] = {.count = 1, .reusable = false}, SHIFT(222), - [407] = {.count = 1, .reusable = false}, SHIFT(223), - [409] = {.count = 1, .reusable = true}, SHIFT(223), - [411] = {.count = 1, .reusable = true}, SHIFT(224), - [413] = {.count = 1, .reusable = false}, SHIFT(226), - [415] = {.count = 1, .reusable = true}, SHIFT(226), - [417] = {.count = 1, .reusable = true}, SHIFT(227), - [419] = {.count = 1, .reusable = true}, SHIFT(228), - [421] = {.count = 1, .reusable = false}, SHIFT(229), - [423] = {.count = 1, .reusable = false}, SHIFT(230), - [425] = {.count = 1, .reusable = true}, SHIFT(230), - [427] = {.count = 1, .reusable = false}, SHIFT(232), - [429] = {.count = 1, .reusable = false}, SHIFT(233), - [431] = {.count = 1, .reusable = true}, SHIFT(235), - [433] = {.count = 1, .reusable = true}, SHIFT(236), - [435] = {.count = 1, .reusable = false}, SHIFT(237), - [437] = {.count = 1, .reusable = false}, SHIFT(235), - [439] = {.count = 1, .reusable = false}, SHIFT(238), - [441] = {.count = 1, .reusable = false}, SHIFT(239), - [443] = {.count = 1, .reusable = true}, SHIFT(239), - [445] = {.count = 1, .reusable = true}, SHIFT(240), - [447] = {.count = 1, .reusable = true}, SHIFT(241), - [449] = {.count = 1, .reusable = true}, SHIFT(242), - [451] = {.count = 1, .reusable = false}, SHIFT(243), - [453] = {.count = 1, .reusable = false}, SHIFT(241), - [455] = {.count = 1, .reusable = true}, SHIFT(251), - [457] = {.count = 1, .reusable = true}, SHIFT(252), - [459] = {.count = 1, .reusable = true}, SHIFT(254), - [461] = {.count = 1, .reusable = true}, SHIFT(256), - [463] = {.count = 1, .reusable = true}, SHIFT(259), - [465] = {.count = 1, .reusable = false}, SHIFT(260), - [467] = {.count = 1, .reusable = false}, SHIFT(261), - [469] = {.count = 1, .reusable = false}, SHIFT(264), - [471] = {.count = 1, .reusable = false}, SHIFT(265), - [473] = {.count = 1, .reusable = false}, SHIFT(268), - [475] = {.count = 1, .reusable = false}, SHIFT(269), - [477] = {.count = 1, .reusable = false}, SHIFT(270), - [479] = {.count = 1, .reusable = false}, SHIFT(271), - [481] = {.count = 1, .reusable = false}, SHIFT(272), - [483] = {.count = 1, .reusable = true}, SHIFT(271), - [485] = {.count = 1, .reusable = true}, SHIFT(273), - [487] = {.count = 1, .reusable = false}, SHIFT(274), - [489] = {.count = 1, .reusable = false}, SHIFT(275), - [491] = {.count = 1, .reusable = false}, SHIFT(276), - [493] = {.count = 1, .reusable = false}, SHIFT(277), + [387] = {.count = 1, .reusable = true}, SHIFT(214), + [389] = {.count = 1, .reusable = true}, SHIFT(215), + [391] = {.count = 1, .reusable = true}, SHIFT(216), + [393] = {.count = 1, .reusable = true}, SHIFT(217), + [395] = {.count = 1, .reusable = false}, SHIFT(218), + [397] = {.count = 1, .reusable = true}, SHIFT(219), + [399] = {.count = 1, .reusable = true}, SHIFT(220), + [401] = {.count = 1, .reusable = true}, SHIFT(221), + [403] = {.count = 1, .reusable = true}, SHIFT(222), + [405] = {.count = 1, .reusable = true}, SHIFT(223), + [407] = {.count = 1, .reusable = false}, SHIFT(224), + [409] = {.count = 1, .reusable = false}, SHIFT(225), + [411] = {.count = 1, .reusable = false}, SHIFT(226), + [413] = {.count = 1, .reusable = false}, SHIFT(227), + [415] = {.count = 1, .reusable = false}, SHIFT(228), + [417] = {.count = 1, .reusable = false}, SHIFT(229), + [419] = {.count = 1, .reusable = false}, SHIFT(230), + [421] = {.count = 1, .reusable = false}, SHIFT(231), + [423] = {.count = 1, .reusable = false}, SHIFT(232), + [425] = {.count = 1, .reusable = false}, SHIFT(233), + [427] = {.count = 1, .reusable = false}, SHIFT(234), + [429] = {.count = 1, .reusable = true}, SHIFT(224), + [431] = {.count = 1, .reusable = false}, SHIFT(236), + [433] = {.count = 1, .reusable = false}, SHIFT(237), + [435] = {.count = 1, .reusable = true}, SHIFT(237), + [437] = {.count = 1, .reusable = true}, SHIFT(238), + [439] = {.count = 1, .reusable = false}, SHIFT(240), + [441] = {.count = 1, .reusable = true}, SHIFT(240), + [443] = {.count = 1, .reusable = true}, SHIFT(241), + [445] = {.count = 1, .reusable = true}, SHIFT(242), + [447] = {.count = 1, .reusable = false}, SHIFT(243), + [449] = {.count = 1, .reusable = false}, SHIFT(244), + [451] = {.count = 1, .reusable = true}, SHIFT(244), + [453] = {.count = 1, .reusable = false}, SHIFT(246), + [455] = {.count = 1, .reusable = false}, SHIFT(247), + [457] = {.count = 1, .reusable = true}, SHIFT(249), + [459] = {.count = 1, .reusable = true}, SHIFT(250), + [461] = {.count = 1, .reusable = false}, SHIFT(251), + [463] = {.count = 1, .reusable = false}, SHIFT(249), + [465] = {.count = 1, .reusable = false}, SHIFT(252), + [467] = {.count = 1, .reusable = false}, SHIFT(253), + [469] = {.count = 1, .reusable = true}, SHIFT(253), + [471] = {.count = 1, .reusable = true}, SHIFT(254), + [473] = {.count = 1, .reusable = true}, SHIFT(255), + [475] = {.count = 1, .reusable = true}, SHIFT(256), + [477] = {.count = 1, .reusable = false}, SHIFT(257), + [479] = {.count = 1, .reusable = false}, SHIFT(255), + [481] = {.count = 1, .reusable = true}, SHIFT(265), + [483] = {.count = 1, .reusable = true}, SHIFT(266), + [485] = {.count = 1, .reusable = true}, SHIFT(268), + [487] = {.count = 1, .reusable = true}, SHIFT(270), + [489] = {.count = 1, .reusable = true}, SHIFT(273), + [491] = {.count = 1, .reusable = false}, SHIFT(274), + [493] = {.count = 1, .reusable = false}, SHIFT(275), [495] = {.count = 1, .reusable = false}, SHIFT(278), - [497] = {.count = 1, .reusable = true}, SHIFT(60), - [499] = {.count = 1, .reusable = true}, SHIFT(285), - [501] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), - [503] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), - [505] = {.count = 1, .reusable = false}, SHIFT(286), - [507] = {.count = 1, .reusable = true}, SHIFT(287), - [509] = {.count = 1, .reusable = true}, SHIFT(288), - [511] = {.count = 1, .reusable = false}, SHIFT(288), - [513] = {.count = 1, .reusable = true}, SHIFT(286), - [515] = {.count = 1, .reusable = true}, SHIFT(291), - [517] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), - [519] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), - [521] = {.count = 1, .reusable = false}, SHIFT(293), - [523] = {.count = 1, .reusable = false}, SHIFT(294), - [525] = {.count = 1, .reusable = true}, SHIFT(296), - [527] = {.count = 1, .reusable = true}, SHIFT(297), - [529] = {.count = 1, .reusable = false}, SHIFT(298), - [531] = {.count = 1, .reusable = false}, SHIFT(296), - [533] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [535] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [537] = {.count = 1, .reusable = true}, SHIFT(299), + [497] = {.count = 1, .reusable = false}, SHIFT(279), + [499] = {.count = 1, .reusable = false}, SHIFT(282), + [501] = {.count = 1, .reusable = false}, SHIFT(283), + [503] = {.count = 1, .reusable = false}, SHIFT(284), + [505] = {.count = 1, .reusable = false}, SHIFT(285), + [507] = {.count = 1, .reusable = false}, SHIFT(286), + [509] = {.count = 1, .reusable = true}, SHIFT(285), + [511] = {.count = 1, .reusable = true}, SHIFT(287), + [513] = {.count = 1, .reusable = false}, SHIFT(288), + [515] = {.count = 1, .reusable = false}, SHIFT(289), + [517] = {.count = 1, .reusable = false}, SHIFT(290), + [519] = {.count = 1, .reusable = false}, SHIFT(291), + [521] = {.count = 1, .reusable = false}, SHIFT(292), + [523] = {.count = 1, .reusable = true}, SHIFT(60), + [525] = {.count = 1, .reusable = true}, SHIFT(299), + [527] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), + [529] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), + [531] = {.count = 1, .reusable = false}, SHIFT(300), + [533] = {.count = 1, .reusable = true}, SHIFT(301), + [535] = {.count = 1, .reusable = true}, SHIFT(302), + [537] = {.count = 1, .reusable = false}, SHIFT(302), [539] = {.count = 1, .reusable = true}, SHIFT(300), - [541] = {.count = 1, .reusable = true}, SHIFT(301), - [543] = {.count = 1, .reusable = false}, SHIFT(302), - [545] = {.count = 1, .reusable = false}, SHIFT(300), - [547] = {.count = 1, .reusable = true}, SHIFT(310), - [549] = {.count = 1, .reusable = true}, SHIFT(311), - [551] = {.count = 1, .reusable = true}, SHIFT(312), - [553] = {.count = 1, .reusable = false}, SHIFT(310), - [555] = {.count = 1, .reusable = true}, SHIFT(315), - [557] = {.count = 1, .reusable = false}, SHIFT(317), - [559] = {.count = 1, .reusable = false}, SHIFT(318), - [561] = {.count = 1, .reusable = true}, SHIFT(320), - [563] = {.count = 1, .reusable = true}, SHIFT(321), - [565] = {.count = 1, .reusable = false}, SHIFT(322), - [567] = {.count = 1, .reusable = false}, SHIFT(320), - [569] = {.count = 1, .reusable = true}, SHIFT(323), - [571] = {.count = 1, .reusable = true}, SHIFT(324), - [573] = {.count = 1, .reusable = true}, SHIFT(325), - [575] = {.count = 1, .reusable = false}, SHIFT(326), - [577] = {.count = 1, .reusable = false}, SHIFT(324), - [579] = {.count = 1, .reusable = true}, SHIFT(334), - [581] = {.count = 1, .reusable = true}, SHIFT(335), - [583] = {.count = 1, .reusable = false}, SHIFT(334), - [585] = {.count = 1, .reusable = true}, SHIFT(336), - [587] = {.count = 1, .reusable = true}, SHIFT(337), - [589] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [591] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [593] = {.count = 1, .reusable = false}, SHIFT(339), - [595] = {.count = 1, .reusable = false}, SHIFT(340), - [597] = {.count = 1, .reusable = true}, SHIFT(96), - [599] = {.count = 1, .reusable = true}, SHIFT(342), - [601] = {.count = 1, .reusable = true}, SHIFT(343), - [603] = {.count = 1, .reusable = false}, SHIFT(344), - [605] = {.count = 1, .reusable = false}, SHIFT(342), - [607] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [609] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [611] = {.count = 1, .reusable = true}, SHIFT(345), - [613] = {.count = 1, .reusable = true}, SHIFT(346), - [615] = {.count = 1, .reusable = true}, SHIFT(347), - [617] = {.count = 1, .reusable = false}, SHIFT(348), - [619] = {.count = 1, .reusable = false}, SHIFT(346), - [621] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [623] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [625] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), - [627] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), - [629] = {.count = 1, .reusable = true}, SHIFT(357), - [631] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [633] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [635] = {.count = 1, .reusable = false}, SHIFT(359), - [637] = {.count = 1, .reusable = false}, SHIFT(360), - [639] = {.count = 1, .reusable = true}, SHIFT(107), - [641] = {.count = 1, .reusable = true}, SHIFT(362), - [643] = {.count = 1, .reusable = true}, SHIFT(363), - [645] = {.count = 1, .reusable = false}, SHIFT(364), - [647] = {.count = 1, .reusable = false}, SHIFT(362), - [649] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [651] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), - [653] = {.count = 1, .reusable = true}, SHIFT(365), - [655] = {.count = 1, .reusable = true}, SHIFT(366), - [657] = {.count = 1, .reusable = true}, SHIFT(367), - [659] = {.count = 1, .reusable = false}, SHIFT(368), - [661] = {.count = 1, .reusable = false}, SHIFT(366), - [663] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [665] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [667] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), - [669] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), - [671] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [673] = {.count = 1, .reusable = true}, SHIFT(377), - [675] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [677] = {.count = 1, .reusable = false}, SHIFT(379), - [679] = {.count = 1, .reusable = false}, SHIFT(380), - [681] = {.count = 1, .reusable = true}, SHIFT(382), - [683] = {.count = 1, .reusable = true}, SHIFT(383), - [685] = {.count = 1, .reusable = false}, SHIFT(384), - [687] = {.count = 1, .reusable = false}, SHIFT(382), - [689] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), - [691] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), - [693] = {.count = 1, .reusable = true}, SHIFT(385), - [695] = {.count = 1, .reusable = true}, SHIFT(386), - [697] = {.count = 1, .reusable = true}, SHIFT(387), - [699] = {.count = 1, .reusable = false}, SHIFT(388), - [701] = {.count = 1, .reusable = false}, SHIFT(386), - [703] = {.count = 1, .reusable = true}, SHIFT(396), - [705] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), - [707] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), - [709] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), - [711] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), - [713] = {.count = 1, .reusable = false}, SHIFT(398), - [715] = {.count = 1, .reusable = false}, SHIFT(399), - [717] = {.count = 1, .reusable = false}, SHIFT(400), + [541] = {.count = 1, .reusable = true}, SHIFT(305), + [543] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [545] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [547] = {.count = 1, .reusable = false}, SHIFT(307), + [549] = {.count = 1, .reusable = false}, SHIFT(308), + [551] = {.count = 1, .reusable = true}, SHIFT(310), + [553] = {.count = 1, .reusable = true}, SHIFT(311), + [555] = {.count = 1, .reusable = false}, SHIFT(312), + [557] = {.count = 1, .reusable = false}, SHIFT(310), + [559] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [561] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [563] = {.count = 1, .reusable = true}, SHIFT(313), + [565] = {.count = 1, .reusable = true}, SHIFT(314), + [567] = {.count = 1, .reusable = true}, SHIFT(315), + [569] = {.count = 1, .reusable = false}, SHIFT(316), + [571] = {.count = 1, .reusable = false}, SHIFT(314), + [573] = {.count = 1, .reusable = true}, SHIFT(324), + [575] = {.count = 1, .reusable = true}, SHIFT(325), + [577] = {.count = 1, .reusable = true}, SHIFT(326), + [579] = {.count = 1, .reusable = false}, SHIFT(324), + [581] = {.count = 1, .reusable = true}, SHIFT(329), + [583] = {.count = 1, .reusable = false}, SHIFT(331), + [585] = {.count = 1, .reusable = false}, SHIFT(332), + [587] = {.count = 1, .reusable = true}, SHIFT(334), + [589] = {.count = 1, .reusable = true}, SHIFT(335), + [591] = {.count = 1, .reusable = false}, SHIFT(336), + [593] = {.count = 1, .reusable = false}, SHIFT(334), + [595] = {.count = 1, .reusable = true}, SHIFT(337), + [597] = {.count = 1, .reusable = true}, SHIFT(338), + [599] = {.count = 1, .reusable = true}, SHIFT(339), + [601] = {.count = 1, .reusable = false}, SHIFT(340), + [603] = {.count = 1, .reusable = false}, SHIFT(338), + [605] = {.count = 1, .reusable = true}, SHIFT(348), + [607] = {.count = 1, .reusable = true}, SHIFT(349), + [609] = {.count = 1, .reusable = false}, SHIFT(348), + [611] = {.count = 1, .reusable = true}, SHIFT(350), + [613] = {.count = 1, .reusable = true}, SHIFT(351), + [615] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [617] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [619] = {.count = 1, .reusable = false}, SHIFT(353), + [621] = {.count = 1, .reusable = false}, SHIFT(354), + [623] = {.count = 1, .reusable = true}, SHIFT(96), + [625] = {.count = 1, .reusable = true}, SHIFT(356), + [627] = {.count = 1, .reusable = true}, SHIFT(357), + [629] = {.count = 1, .reusable = false}, SHIFT(358), + [631] = {.count = 1, .reusable = false}, SHIFT(356), + [633] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [635] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [637] = {.count = 1, .reusable = true}, SHIFT(359), + [639] = {.count = 1, .reusable = true}, SHIFT(360), + [641] = {.count = 1, .reusable = true}, SHIFT(361), + [643] = {.count = 1, .reusable = false}, SHIFT(362), + [645] = {.count = 1, .reusable = false}, SHIFT(360), + [647] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [649] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [651] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), + [653] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), + [655] = {.count = 1, .reusable = true}, SHIFT(371), + [657] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [659] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [661] = {.count = 1, .reusable = false}, SHIFT(373), + [663] = {.count = 1, .reusable = false}, SHIFT(374), + [665] = {.count = 1, .reusable = true}, SHIFT(108), + [667] = {.count = 1, .reusable = true}, SHIFT(376), + [669] = {.count = 1, .reusable = true}, SHIFT(377), + [671] = {.count = 1, .reusable = false}, SHIFT(378), + [673] = {.count = 1, .reusable = false}, SHIFT(376), + [675] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [677] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [679] = {.count = 1, .reusable = true}, SHIFT(379), + [681] = {.count = 1, .reusable = true}, SHIFT(380), + [683] = {.count = 1, .reusable = true}, SHIFT(381), + [685] = {.count = 1, .reusable = false}, SHIFT(382), + [687] = {.count = 1, .reusable = false}, SHIFT(380), + [689] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [691] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [693] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), + [695] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), + [697] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [699] = {.count = 1, .reusable = true}, SHIFT(391), + [701] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [703] = {.count = 1, .reusable = false}, SHIFT(393), + [705] = {.count = 1, .reusable = false}, SHIFT(394), + [707] = {.count = 1, .reusable = true}, SHIFT(396), + [709] = {.count = 1, .reusable = true}, SHIFT(397), + [711] = {.count = 1, .reusable = false}, SHIFT(398), + [713] = {.count = 1, .reusable = false}, SHIFT(396), + [715] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), + [717] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), [719] = {.count = 1, .reusable = true}, SHIFT(399), - [721] = {.count = 1, .reusable = false}, SHIFT(401), - [723] = {.count = 1, .reusable = true}, SHIFT(402), - [725] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), - [727] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), - [729] = {.count = 1, .reusable = true}, SHIFT(403), - [731] = {.count = 1, .reusable = true}, SHIFT(404), - [733] = {.count = 1, .reusable = true}, SHIFT(405), - [735] = {.count = 1, .reusable = false}, SHIFT(406), - [737] = {.count = 1, .reusable = false}, SHIFT(404), + [721] = {.count = 1, .reusable = true}, SHIFT(400), + [723] = {.count = 1, .reusable = true}, SHIFT(401), + [725] = {.count = 1, .reusable = false}, SHIFT(402), + [727] = {.count = 1, .reusable = false}, SHIFT(400), + [729] = {.count = 1, .reusable = true}, SHIFT(410), + [731] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), + [733] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), + [735] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), + [737] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), [739] = {.count = 1, .reusable = false}, SHIFT(412), - [741] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [743] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [745] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), - [747] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), - [749] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [751] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [753] = {.count = 1, .reusable = true}, SHIFT(414), - [755] = {.count = 1, .reusable = true}, SHIFT(415), - [757] = {.count = 1, .reusable = true}, SHIFT(416), - [759] = {.count = 1, .reusable = false}, SHIFT(426), - [761] = {.count = 1, .reusable = false}, SHIFT(417), - [763] = {.count = 1, .reusable = true}, SHIFT(418), - [765] = {.count = 1, .reusable = false}, SHIFT(419), - [767] = {.count = 1, .reusable = true}, SHIFT(420), - [769] = {.count = 1, .reusable = true}, SHIFT(426), - [771] = {.count = 1, .reusable = true}, SHIFT(421), - [773] = {.count = 1, .reusable = true}, SHIFT(422), - [775] = {.count = 1, .reusable = true}, SHIFT(423), - [777] = {.count = 1, .reusable = true}, SHIFT(424), - [779] = {.count = 1, .reusable = true}, SHIFT(425), - [781] = {.count = 1, .reusable = false}, SHIFT(420), - [783] = {.count = 1, .reusable = true}, SHIFT(427), - [785] = {.count = 1, .reusable = true}, SHIFT(428), - [787] = {.count = 1, .reusable = false}, SHIFT(429), - [789] = {.count = 1, .reusable = false}, SHIFT(428), - [791] = {.count = 1, .reusable = true}, SHIFT(431), - [793] = {.count = 1, .reusable = false}, SHIFT(433), - [795] = {.count = 1, .reusable = true}, SHIFT(433), - [797] = {.count = 1, .reusable = true}, SHIFT(432), - [799] = {.count = 1, .reusable = true}, SHIFT(434), - [801] = {.count = 1, .reusable = false}, SHIFT(436), - [803] = {.count = 1, .reusable = true}, SHIFT(436), - [805] = {.count = 1, .reusable = true}, SHIFT(435), - [807] = {.count = 1, .reusable = true}, SHIFT(437), - [809] = {.count = 1, .reusable = true}, SHIFT(438), - [811] = {.count = 1, .reusable = true}, SHIFT(441), - [813] = {.count = 1, .reusable = true}, SHIFT(442), - [815] = {.count = 1, .reusable = true}, SHIFT(444), - [817] = {.count = 1, .reusable = true}, SHIFT(451), - [819] = {.count = 1, .reusable = true}, SHIFT(452), - [821] = {.count = 1, .reusable = true}, SHIFT(453), - [823] = {.count = 1, .reusable = false}, SHIFT(454), - [825] = {.count = 1, .reusable = true}, SHIFT(455), - [827] = {.count = 1, .reusable = true}, SHIFT(456), - [829] = {.count = 1, .reusable = true}, SHIFT(457), - [831] = {.count = 1, .reusable = true}, SHIFT(458), - [833] = {.count = 1, .reusable = true}, SHIFT(459), - [835] = {.count = 1, .reusable = false}, SHIFT(460), - [837] = {.count = 1, .reusable = false}, SHIFT(455), - [839] = {.count = 1, .reusable = true}, SHIFT(463), - [841] = {.count = 1, .reusable = true}, SHIFT(464), - [843] = {.count = 1, .reusable = false}, SHIFT(465), + [741] = {.count = 1, .reusable = false}, SHIFT(413), + [743] = {.count = 1, .reusable = false}, SHIFT(414), + [745] = {.count = 1, .reusable = true}, SHIFT(413), + [747] = {.count = 1, .reusable = false}, SHIFT(415), + [749] = {.count = 1, .reusable = true}, SHIFT(416), + [751] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), + [753] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), + [755] = {.count = 1, .reusable = true}, SHIFT(417), + [757] = {.count = 1, .reusable = true}, SHIFT(418), + [759] = {.count = 1, .reusable = true}, SHIFT(419), + [761] = {.count = 1, .reusable = false}, SHIFT(420), + [763] = {.count = 1, .reusable = false}, SHIFT(418), + [765] = {.count = 1, .reusable = false}, SHIFT(426), + [767] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [769] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [771] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), + [773] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), + [775] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [777] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [779] = {.count = 1, .reusable = true}, SHIFT(428), + [781] = {.count = 1, .reusable = true}, SHIFT(429), + [783] = {.count = 1, .reusable = true}, SHIFT(430), + [785] = {.count = 1, .reusable = false}, SHIFT(440), + [787] = {.count = 1, .reusable = false}, SHIFT(431), + [789] = {.count = 1, .reusable = true}, SHIFT(432), + [791] = {.count = 1, .reusable = false}, SHIFT(433), + [793] = {.count = 1, .reusable = true}, SHIFT(434), + [795] = {.count = 1, .reusable = true}, SHIFT(440), + [797] = {.count = 1, .reusable = true}, SHIFT(435), + [799] = {.count = 1, .reusable = true}, SHIFT(436), + [801] = {.count = 1, .reusable = true}, SHIFT(437), + [803] = {.count = 1, .reusable = true}, SHIFT(438), + [805] = {.count = 1, .reusable = true}, SHIFT(439), + [807] = {.count = 1, .reusable = false}, SHIFT(434), + [809] = {.count = 1, .reusable = true}, SHIFT(441), + [811] = {.count = 1, .reusable = true}, SHIFT(442), + [813] = {.count = 1, .reusable = false}, SHIFT(443), + [815] = {.count = 1, .reusable = false}, SHIFT(442), + [817] = {.count = 1, .reusable = true}, SHIFT(445), + [819] = {.count = 1, .reusable = false}, SHIFT(447), + [821] = {.count = 1, .reusable = true}, SHIFT(447), + [823] = {.count = 1, .reusable = true}, SHIFT(446), + [825] = {.count = 1, .reusable = true}, SHIFT(448), + [827] = {.count = 1, .reusable = false}, SHIFT(450), + [829] = {.count = 1, .reusable = true}, SHIFT(450), + [831] = {.count = 1, .reusable = true}, SHIFT(449), + [833] = {.count = 1, .reusable = true}, SHIFT(451), + [835] = {.count = 1, .reusable = true}, SHIFT(452), + [837] = {.count = 1, .reusable = true}, SHIFT(453), + [839] = {.count = 1, .reusable = true}, SHIFT(456), + [841] = {.count = 1, .reusable = true}, SHIFT(457), + [843] = {.count = 1, .reusable = true}, SHIFT(459), [845] = {.count = 1, .reusable = true}, SHIFT(466), [847] = {.count = 1, .reusable = true}, SHIFT(467), [849] = {.count = 1, .reusable = true}, SHIFT(468), - [851] = {.count = 1, .reusable = true}, SHIFT(469), + [851] = {.count = 1, .reusable = false}, SHIFT(469), [853] = {.count = 1, .reusable = true}, SHIFT(470), - [855] = {.count = 1, .reusable = false}, SHIFT(471), - [857] = {.count = 1, .reusable = false}, SHIFT(466), + [855] = {.count = 1, .reusable = true}, SHIFT(471), + [857] = {.count = 1, .reusable = true}, SHIFT(472), [859] = {.count = 1, .reusable = true}, SHIFT(473), - [861] = {.count = 1, .reusable = false}, SHIFT(475), - [863] = {.count = 1, .reusable = false}, SHIFT(476), - [865] = {.count = 1, .reusable = true}, SHIFT(478), + [861] = {.count = 1, .reusable = true}, SHIFT(474), + [863] = {.count = 1, .reusable = false}, SHIFT(475), + [865] = {.count = 1, .reusable = false}, SHIFT(470), [867] = {.count = 1, .reusable = true}, SHIFT(479), - [869] = {.count = 1, .reusable = false}, SHIFT(480), - [871] = {.count = 1, .reusable = false}, SHIFT(478), - [873] = {.count = 1, .reusable = true}, SHIFT(481), - [875] = {.count = 1, .reusable = true}, SHIFT(482), - [877] = {.count = 1, .reusable = true}, SHIFT(483), - [879] = {.count = 1, .reusable = false}, SHIFT(484), - [881] = {.count = 1, .reusable = false}, SHIFT(482), - [883] = {.count = 1, .reusable = true}, SHIFT(492), - [885] = {.count = 1, .reusable = false}, SHIFT(493), - [887] = {.count = 1, .reusable = true}, SHIFT(494), - [889] = {.count = 1, .reusable = true}, SHIFT(493), - [891] = {.count = 1, .reusable = true}, SHIFT(495), - [893] = {.count = 1, .reusable = true}, SHIFT(496), - [895] = {.count = 1, .reusable = true}, SHIFT(497), - [897] = {.count = 1, .reusable = true}, SHIFT(498), - [899] = {.count = 1, .reusable = false}, SHIFT(499), - [901] = {.count = 1, .reusable = false}, SHIFT(500), - [903] = {.count = 1, .reusable = true}, SHIFT(500), - [905] = {.count = 1, .reusable = false}, SHIFT(501), - [907] = {.count = 1, .reusable = true}, SHIFT(501), - [909] = {.count = 1, .reusable = true}, SHIFT(502), - [911] = {.count = 1, .reusable = true}, SHIFT(503), - [913] = {.count = 1, .reusable = true}, SHIFT(504), - [915] = {.count = 1, .reusable = false}, SHIFT(504), - [917] = {.count = 1, .reusable = true}, SHIFT(154), - [919] = {.count = 1, .reusable = true}, SHIFT(509), - [921] = {.count = 1, .reusable = true}, SHIFT(511), - [923] = {.count = 1, .reusable = true}, SHIFT(514), - [925] = {.count = 1, .reusable = true}, SHIFT(515), - [927] = {.count = 1, .reusable = true}, SHIFT(516), + [869] = {.count = 1, .reusable = true}, SHIFT(480), + [871] = {.count = 1, .reusable = false}, SHIFT(481), + [873] = {.count = 1, .reusable = true}, SHIFT(482), + [875] = {.count = 1, .reusable = true}, SHIFT(483), + [877] = {.count = 1, .reusable = true}, SHIFT(484), + [879] = {.count = 1, .reusable = true}, SHIFT(485), + [881] = {.count = 1, .reusable = true}, SHIFT(486), + [883] = {.count = 1, .reusable = false}, SHIFT(487), + [885] = {.count = 1, .reusable = false}, SHIFT(482), + [887] = {.count = 1, .reusable = true}, SHIFT(489), + [889] = {.count = 1, .reusable = false}, SHIFT(491), + [891] = {.count = 1, .reusable = false}, SHIFT(492), + [893] = {.count = 1, .reusable = true}, SHIFT(494), + [895] = {.count = 1, .reusable = true}, SHIFT(495), + [897] = {.count = 1, .reusable = false}, SHIFT(496), + [899] = {.count = 1, .reusable = false}, SHIFT(494), + [901] = {.count = 1, .reusable = true}, SHIFT(497), + [903] = {.count = 1, .reusable = true}, SHIFT(498), + [905] = {.count = 1, .reusable = true}, SHIFT(499), + [907] = {.count = 1, .reusable = false}, SHIFT(500), + [909] = {.count = 1, .reusable = false}, SHIFT(498), + [911] = {.count = 1, .reusable = true}, SHIFT(508), + [913] = {.count = 1, .reusable = false}, SHIFT(509), + [915] = {.count = 1, .reusable = true}, SHIFT(510), + [917] = {.count = 1, .reusable = true}, SHIFT(509), + [919] = {.count = 1, .reusable = true}, SHIFT(511), + [921] = {.count = 1, .reusable = true}, SHIFT(512), + [923] = {.count = 1, .reusable = true}, SHIFT(513), + [925] = {.count = 1, .reusable = true}, SHIFT(514), + [927] = {.count = 1, .reusable = false}, SHIFT(515), [929] = {.count = 1, .reusable = false}, SHIFT(516), - [931] = {.count = 1, .reusable = true}, SHIFT(519), - [933] = {.count = 1, .reusable = true}, SHIFT(520), - [935] = {.count = 1, .reusable = false}, SHIFT(520), - [937] = {.count = 1, .reusable = true}, SHIFT(523), - [939] = {.count = 1, .reusable = false}, SHIFT(524), - [941] = {.count = 1, .reusable = true}, SHIFT(524), - [943] = {.count = 1, .reusable = true}, SHIFT(525), - [945] = {.count = 1, .reusable = true}, SHIFT(526), - [947] = {.count = 1, .reusable = false}, SHIFT(527), - [949] = {.count = 1, .reusable = false}, SHIFT(528), - [951] = {.count = 1, .reusable = true}, SHIFT(528), - [953] = {.count = 1, .reusable = true}, SHIFT(529), - [955] = {.count = 1, .reusable = true}, SHIFT(530), - [957] = {.count = 1, .reusable = true}, SHIFT(531), - [959] = {.count = 1, .reusable = false}, SHIFT(531), - [961] = {.count = 1, .reusable = true}, SHIFT(177), - [963] = {.count = 1, .reusable = true}, SHIFT(535), - [965] = {.count = 1, .reusable = true}, SHIFT(536), - [967] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), - [969] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), - [971] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), - [973] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), - [975] = {.count = 1, .reusable = true}, SHIFT(544), - [977] = {.count = 1, .reusable = true}, SHIFT(541), - [979] = {.count = 1, .reusable = false}, SHIFT(542), - [981] = {.count = 1, .reusable = true}, SHIFT(543), - [983] = {.count = 1, .reusable = false}, SHIFT(545), - [985] = {.count = 1, .reusable = true}, SHIFT(545), - [987] = {.count = 1, .reusable = false}, SHIFT(546), - [989] = {.count = 1, .reusable = false}, SHIFT(547), - [991] = {.count = 1, .reusable = false}, SHIFT(548), - [993] = {.count = 1, .reusable = true}, SHIFT(549), - [995] = {.count = 1, .reusable = true}, SHIFT(550), - [997] = {.count = 1, .reusable = true}, SHIFT(552), - [999] = {.count = 1, .reusable = true}, SHIFT(553), - [1001] = {.count = 1, .reusable = true}, SHIFT(554), - [1003] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [1005] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [1007] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), - [1009] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), - [1011] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), - [1013] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), - [1015] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), - [1018] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [1021] = {.count = 1, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), - [1023] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [1026] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [1029] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [1032] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), - [1035] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), - [1038] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), - [1041] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), - [1044] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), - [1047] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), - [1050] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), - [1053] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [1056] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), - [1059] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), - [1062] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), - [1065] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [1068] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), - [1071] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), - [1074] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), - [1077] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), - [1080] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), - [1083] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), - [1086] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(24), - [1089] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), - [1092] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(69), - [1095] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), - [1098] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), - [1101] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), - [1103] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), - [1105] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [1107] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [1109] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), - [1111] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), - [1113] = {.count = 1, .reusable = true}, SHIFT(561), - [1115] = {.count = 1, .reusable = true}, SHIFT(562), - [1117] = {.count = 1, .reusable = true}, SHIFT(564), - [1119] = {.count = 1, .reusable = true}, SHIFT(565), - [1121] = {.count = 1, .reusable = true}, SHIFT(566), - [1123] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), - [1125] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), - [1127] = {.count = 1, .reusable = true}, SHIFT(567), - [1129] = {.count = 1, .reusable = true}, SHIFT(568), - [1131] = {.count = 1, .reusable = true}, SHIFT(569), - [1133] = {.count = 1, .reusable = false}, SHIFT(570), - [1135] = {.count = 1, .reusable = true}, SHIFT(571), - [1137] = {.count = 1, .reusable = true}, SHIFT(572), - [1139] = {.count = 1, .reusable = true}, SHIFT(573), - [1141] = {.count = 1, .reusable = true}, SHIFT(574), - [1143] = {.count = 1, .reusable = true}, SHIFT(575), - [1145] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), - [1147] = {.count = 1, .reusable = true}, SHIFT(577), - [1149] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), - [1151] = {.count = 1, .reusable = false}, SHIFT(579), - [1153] = {.count = 1, .reusable = false}, SHIFT(580), - [1155] = {.count = 1, .reusable = true}, SHIFT(582), - [1157] = {.count = 1, .reusable = true}, SHIFT(583), - [1159] = {.count = 1, .reusable = false}, SHIFT(584), - [1161] = {.count = 1, .reusable = false}, SHIFT(582), - [1163] = {.count = 1, .reusable = true}, SHIFT(585), - [1165] = {.count = 1, .reusable = true}, SHIFT(586), - [1167] = {.count = 1, .reusable = true}, SHIFT(587), - [1169] = {.count = 1, .reusable = false}, SHIFT(588), - [1171] = {.count = 1, .reusable = false}, SHIFT(586), - [1173] = {.count = 1, .reusable = true}, SHIFT(596), - [1175] = {.count = 1, .reusable = true}, SHIFT(597), - [1177] = {.count = 1, .reusable = true}, SHIFT(599), - [1179] = {.count = 1, .reusable = false}, SHIFT(601), - [1181] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1183] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1185] = {.count = 1, .reusable = false}, SHIFT(605), - [1187] = {.count = 1, .reusable = false}, SHIFT(606), - [1189] = {.count = 1, .reusable = false}, SHIFT(607), - [1191] = {.count = 1, .reusable = true}, SHIFT(612), - [1193] = {.count = 1, .reusable = false}, SHIFT(613), - [1195] = {.count = 1, .reusable = true}, SHIFT(613), - [1197] = {.count = 1, .reusable = true}, SHIFT(614), - [1199] = {.count = 1, .reusable = false}, SHIFT(616), - [1201] = {.count = 1, .reusable = false}, SHIFT(617), - [1203] = {.count = 1, .reusable = false}, SHIFT(618), - [1205] = {.count = 1, .reusable = true}, SHIFT(618), - [1207] = {.count = 1, .reusable = true}, SHIFT(619), - [1209] = {.count = 1, .reusable = true}, SHIFT(620), - [1211] = {.count = 1, .reusable = true}, SHIFT(621), - [1213] = {.count = 1, .reusable = false}, SHIFT(623), - [1215] = {.count = 1, .reusable = true}, SHIFT(623), - [1217] = {.count = 1, .reusable = true}, SHIFT(622), - [1219] = {.count = 1, .reusable = true}, SHIFT(624), - [1221] = {.count = 1, .reusable = true}, SHIFT(625), - [1223] = {.count = 1, .reusable = false}, SHIFT(626), - [1225] = {.count = 1, .reusable = false}, SHIFT(625), - [1227] = {.count = 1, .reusable = true}, SHIFT(628), - [1229] = {.count = 1, .reusable = false}, SHIFT(630), - [1231] = {.count = 1, .reusable = true}, SHIFT(630), - [1233] = {.count = 1, .reusable = true}, SHIFT(629), - [1235] = {.count = 1, .reusable = true}, SHIFT(631), - [1237] = {.count = 1, .reusable = false}, SHIFT(633), - [1239] = {.count = 1, .reusable = true}, SHIFT(633), - [1241] = {.count = 1, .reusable = true}, SHIFT(632), - [1243] = {.count = 1, .reusable = true}, SHIFT(634), - [1245] = {.count = 1, .reusable = true}, SHIFT(635), - [1247] = {.count = 1, .reusable = true}, SHIFT(636), - [1249] = {.count = 1, .reusable = true}, SHIFT(637), - [1251] = {.count = 1, .reusable = true}, SHIFT(641), - [1253] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [1255] = {.count = 1, .reusable = false}, SHIFT(642), - [1257] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [1259] = {.count = 1, .reusable = true}, SHIFT(644), - [1261] = {.count = 1, .reusable = true}, SHIFT(645), - [1263] = {.count = 1, .reusable = true}, SHIFT(647), - [1265] = {.count = 1, .reusable = true}, SHIFT(649), - [1267] = {.count = 1, .reusable = true}, SHIFT(650), - [1269] = {.count = 1, .reusable = true}, SHIFT(656), - [1271] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), - [1273] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), - [1275] = {.count = 1, .reusable = true}, SHIFT(657), - [1277] = {.count = 1, .reusable = false}, SHIFT(660), - [1279] = {.count = 1, .reusable = true}, SHIFT(660), - [1281] = {.count = 1, .reusable = false}, SHIFT(661), - [1283] = {.count = 1, .reusable = false}, SHIFT(662), - [1285] = {.count = 1, .reusable = true}, SHIFT(663), - [1287] = {.count = 1, .reusable = true}, SHIFT(664), - [1289] = {.count = 1, .reusable = true}, SHIFT(665), - [1291] = {.count = 1, .reusable = true}, SHIFT(666), - [1293] = {.count = 1, .reusable = false}, SHIFT(657), - [1295] = {.count = 1, .reusable = false}, SHIFT(670), - [1297] = {.count = 1, .reusable = true}, SHIFT(670), - [1299] = {.count = 1, .reusable = true}, SHIFT(672), - [1301] = {.count = 1, .reusable = true}, SHIFT(673), - [1303] = {.count = 1, .reusable = true}, SHIFT(674), - [1305] = {.count = 1, .reusable = true}, SHIFT(675), - [1307] = {.count = 1, .reusable = true}, SHIFT(678), - [1309] = {.count = 1, .reusable = true}, SHIFT(679), - [1311] = {.count = 1, .reusable = true}, SHIFT(680), - [1313] = {.count = 1, .reusable = false}, SHIFT(679), - [1315] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), - [1317] = {.count = 1, .reusable = true}, SHIFT(681), - [1319] = {.count = 1, .reusable = false}, SHIFT(683), - [1321] = {.count = 1, .reusable = false}, SHIFT(684), - [1323] = {.count = 1, .reusable = true}, SHIFT(685), - [1325] = {.count = 1, .reusable = true}, SHIFT(686), - [1327] = {.count = 1, .reusable = false}, SHIFT(688), - [1329] = {.count = 1, .reusable = true}, SHIFT(688), - [1331] = {.count = 1, .reusable = true}, SHIFT(687), - [1333] = {.count = 1, .reusable = true}, SHIFT(689), - [1335] = {.count = 1, .reusable = true}, SHIFT(690), - [1337] = {.count = 1, .reusable = false}, SHIFT(691), - [1339] = {.count = 1, .reusable = false}, SHIFT(690), - [1341] = {.count = 1, .reusable = true}, SHIFT(693), - [1343] = {.count = 1, .reusable = false}, SHIFT(695), - [1345] = {.count = 1, .reusable = true}, SHIFT(695), - [1347] = {.count = 1, .reusable = true}, SHIFT(694), - [1349] = {.count = 1, .reusable = true}, SHIFT(696), - [1351] = {.count = 1, .reusable = false}, SHIFT(698), - [1353] = {.count = 1, .reusable = true}, SHIFT(698), - [1355] = {.count = 1, .reusable = true}, SHIFT(697), + [931] = {.count = 1, .reusable = true}, SHIFT(516), + [933] = {.count = 1, .reusable = false}, SHIFT(517), + [935] = {.count = 1, .reusable = true}, SHIFT(517), + [937] = {.count = 1, .reusable = true}, SHIFT(518), + [939] = {.count = 1, .reusable = true}, SHIFT(519), + [941] = {.count = 1, .reusable = true}, SHIFT(520), + [943] = {.count = 1, .reusable = false}, SHIFT(520), + [945] = {.count = 1, .reusable = true}, SHIFT(155), + [947] = {.count = 1, .reusable = true}, SHIFT(526), + [949] = {.count = 1, .reusable = true}, SHIFT(528), + [951] = {.count = 1, .reusable = true}, SHIFT(531), + [953] = {.count = 1, .reusable = true}, SHIFT(532), + [955] = {.count = 1, .reusable = true}, SHIFT(533), + [957] = {.count = 1, .reusable = false}, SHIFT(533), + [959] = {.count = 1, .reusable = true}, SHIFT(536), + [961] = {.count = 1, .reusable = true}, SHIFT(537), + [963] = {.count = 1, .reusable = false}, SHIFT(537), + [965] = {.count = 1, .reusable = true}, SHIFT(540), + [967] = {.count = 1, .reusable = false}, SHIFT(541), + [969] = {.count = 1, .reusable = true}, SHIFT(541), + [971] = {.count = 1, .reusable = true}, SHIFT(542), + [973] = {.count = 1, .reusable = true}, SHIFT(543), + [975] = {.count = 1, .reusable = false}, SHIFT(544), + [977] = {.count = 1, .reusable = false}, SHIFT(545), + [979] = {.count = 1, .reusable = true}, SHIFT(545), + [981] = {.count = 1, .reusable = true}, SHIFT(546), + [983] = {.count = 1, .reusable = true}, SHIFT(547), + [985] = {.count = 1, .reusable = true}, SHIFT(548), + [987] = {.count = 1, .reusable = false}, SHIFT(548), + [989] = {.count = 1, .reusable = true}, SHIFT(178), + [991] = {.count = 1, .reusable = true}, SHIFT(552), + [993] = {.count = 1, .reusable = true}, SHIFT(553), + [995] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), + [997] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), + [999] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), + [1001] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), + [1003] = {.count = 1, .reusable = true}, SHIFT(561), + [1005] = {.count = 1, .reusable = true}, SHIFT(558), + [1007] = {.count = 1, .reusable = false}, SHIFT(559), + [1009] = {.count = 1, .reusable = true}, SHIFT(560), + [1011] = {.count = 1, .reusable = false}, SHIFT(562), + [1013] = {.count = 1, .reusable = true}, SHIFT(562), + [1015] = {.count = 1, .reusable = false}, SHIFT(563), + [1017] = {.count = 1, .reusable = false}, SHIFT(564), + [1019] = {.count = 1, .reusable = false}, SHIFT(565), + [1021] = {.count = 1, .reusable = true}, SHIFT(566), + [1023] = {.count = 1, .reusable = true}, SHIFT(567), + [1025] = {.count = 1, .reusable = true}, SHIFT(569), + [1027] = {.count = 1, .reusable = true}, SHIFT(570), + [1029] = {.count = 1, .reusable = true}, SHIFT(571), + [1031] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [1033] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [1035] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), + [1037] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), + [1039] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), + [1041] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), + [1043] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), + [1046] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [1049] = {.count = 1, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), + [1051] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [1054] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [1057] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [1060] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [1063] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), + [1066] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), + [1069] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [1072] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [1075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [1078] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), + [1081] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [1084] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [1087] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [1090] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), + [1093] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [1096] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), + [1099] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), + [1102] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), + [1105] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), + [1108] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), + [1111] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), + [1114] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(24), + [1117] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [1120] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(69), + [1123] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), + [1126] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), + [1129] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), + [1131] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), + [1133] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [1135] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [1137] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), + [1139] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), + [1141] = {.count = 1, .reusable = true}, SHIFT(578), + [1143] = {.count = 1, .reusable = true}, SHIFT(579), + [1145] = {.count = 1, .reusable = true}, SHIFT(581), + [1147] = {.count = 1, .reusable = true}, SHIFT(582), + [1149] = {.count = 1, .reusable = true}, SHIFT(583), + [1151] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), + [1153] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), + [1155] = {.count = 1, .reusable = true}, SHIFT(584), + [1157] = {.count = 1, .reusable = true}, SHIFT(585), + [1159] = {.count = 1, .reusable = true}, SHIFT(586), + [1161] = {.count = 1, .reusable = false}, SHIFT(587), + [1163] = {.count = 1, .reusable = true}, SHIFT(588), + [1165] = {.count = 1, .reusable = true}, SHIFT(589), + [1167] = {.count = 1, .reusable = true}, SHIFT(590), + [1169] = {.count = 1, .reusable = true}, SHIFT(591), + [1171] = {.count = 1, .reusable = true}, SHIFT(592), + [1173] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), + [1175] = {.count = 1, .reusable = true}, SHIFT(594), + [1177] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), + [1179] = {.count = 1, .reusable = false}, SHIFT(596), + [1181] = {.count = 1, .reusable = false}, SHIFT(597), + [1183] = {.count = 1, .reusable = true}, SHIFT(599), + [1185] = {.count = 1, .reusable = true}, SHIFT(600), + [1187] = {.count = 1, .reusable = false}, SHIFT(601), + [1189] = {.count = 1, .reusable = false}, SHIFT(599), + [1191] = {.count = 1, .reusable = true}, SHIFT(602), + [1193] = {.count = 1, .reusable = true}, SHIFT(603), + [1195] = {.count = 1, .reusable = true}, SHIFT(604), + [1197] = {.count = 1, .reusable = false}, SHIFT(605), + [1199] = {.count = 1, .reusable = false}, SHIFT(603), + [1201] = {.count = 1, .reusable = false}, SHIFT(613), + [1203] = {.count = 1, .reusable = true}, SHIFT(613), + [1205] = {.count = 1, .reusable = true}, SHIFT(225), + [1207] = {.count = 1, .reusable = true}, SHIFT(227), + [1209] = {.count = 1, .reusable = true}, SHIFT(228), + [1211] = {.count = 1, .reusable = true}, SHIFT(230), + [1213] = {.count = 1, .reusable = true}, SHIFT(231), + [1215] = {.count = 1, .reusable = true}, SHIFT(232), + [1217] = {.count = 1, .reusable = true}, SHIFT(233), + [1219] = {.count = 1, .reusable = true}, SHIFT(234), + [1221] = {.count = 1, .reusable = true}, SHIFT(226), + [1223] = {.count = 1, .reusable = true}, SHIFT(617), + [1225] = {.count = 1, .reusable = false}, SHIFT(619), + [1227] = {.count = 1, .reusable = false}, SHIFT(620), + [1229] = {.count = 1, .reusable = true}, SHIFT(622), + [1231] = {.count = 1, .reusable = true}, SHIFT(623), + [1233] = {.count = 1, .reusable = false}, SHIFT(624), + [1235] = {.count = 1, .reusable = false}, SHIFT(622), + [1237] = {.count = 1, .reusable = true}, SHIFT(625), + [1239] = {.count = 1, .reusable = true}, SHIFT(626), + [1241] = {.count = 1, .reusable = true}, SHIFT(627), + [1243] = {.count = 1, .reusable = false}, SHIFT(628), + [1245] = {.count = 1, .reusable = false}, SHIFT(626), + [1247] = {.count = 1, .reusable = false}, SHIFT(636), + [1249] = {.count = 1, .reusable = false}, SHIFT(637), + [1251] = {.count = 1, .reusable = false}, SHIFT(638), + [1253] = {.count = 1, .reusable = true}, SHIFT(636), + [1255] = {.count = 1, .reusable = true}, SHIFT(639), + [1257] = {.count = 1, .reusable = true}, SHIFT(640), + [1259] = {.count = 1, .reusable = true}, SHIFT(642), + [1261] = {.count = 1, .reusable = false}, SHIFT(644), + [1263] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1265] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1267] = {.count = 1, .reusable = false}, SHIFT(648), + [1269] = {.count = 1, .reusable = false}, SHIFT(649), + [1271] = {.count = 1, .reusable = false}, SHIFT(650), + [1273] = {.count = 1, .reusable = true}, SHIFT(654), + [1275] = {.count = 1, .reusable = false}, SHIFT(655), + [1277] = {.count = 1, .reusable = true}, SHIFT(655), + [1279] = {.count = 1, .reusable = true}, SHIFT(656), + [1281] = {.count = 1, .reusable = false}, SHIFT(658), + [1283] = {.count = 1, .reusable = false}, SHIFT(659), + [1285] = {.count = 1, .reusable = false}, SHIFT(660), + [1287] = {.count = 1, .reusable = true}, SHIFT(660), + [1289] = {.count = 1, .reusable = true}, SHIFT(661), + [1291] = {.count = 1, .reusable = true}, SHIFT(662), + [1293] = {.count = 1, .reusable = true}, SHIFT(663), + [1295] = {.count = 1, .reusable = false}, SHIFT(665), + [1297] = {.count = 1, .reusable = true}, SHIFT(665), + [1299] = {.count = 1, .reusable = true}, SHIFT(664), + [1301] = {.count = 1, .reusable = true}, SHIFT(666), + [1303] = {.count = 1, .reusable = true}, SHIFT(667), + [1305] = {.count = 1, .reusable = false}, SHIFT(668), + [1307] = {.count = 1, .reusable = false}, SHIFT(667), + [1309] = {.count = 1, .reusable = true}, SHIFT(670), + [1311] = {.count = 1, .reusable = false}, SHIFT(672), + [1313] = {.count = 1, .reusable = true}, SHIFT(672), + [1315] = {.count = 1, .reusable = true}, SHIFT(671), + [1317] = {.count = 1, .reusable = true}, SHIFT(673), + [1319] = {.count = 1, .reusable = false}, SHIFT(675), + [1321] = {.count = 1, .reusable = true}, SHIFT(675), + [1323] = {.count = 1, .reusable = true}, SHIFT(674), + [1325] = {.count = 1, .reusable = true}, SHIFT(676), + [1327] = {.count = 1, .reusable = true}, SHIFT(677), + [1329] = {.count = 1, .reusable = true}, SHIFT(678), + [1331] = {.count = 1, .reusable = true}, SHIFT(679), + [1333] = {.count = 1, .reusable = true}, SHIFT(683), + [1335] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1337] = {.count = 1, .reusable = false}, SHIFT(684), + [1339] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1341] = {.count = 1, .reusable = true}, SHIFT(686), + [1343] = {.count = 1, .reusable = true}, SHIFT(687), + [1345] = {.count = 1, .reusable = true}, SHIFT(689), + [1347] = {.count = 1, .reusable = true}, SHIFT(691), + [1349] = {.count = 1, .reusable = true}, SHIFT(692), + [1351] = {.count = 1, .reusable = true}, SHIFT(698), + [1353] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [1355] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), [1357] = {.count = 1, .reusable = true}, SHIFT(699), - [1359] = {.count = 1, .reusable = true}, SHIFT(700), + [1359] = {.count = 1, .reusable = false}, SHIFT(702), [1361] = {.count = 1, .reusable = true}, SHIFT(702), - [1363] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), - [1365] = {.count = 1, .reusable = false}, SHIFT(703), - [1367] = {.count = 1, .reusable = false}, SHIFT(704), - [1369] = {.count = 1, .reusable = false}, SHIFT(705), - [1371] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), - [1373] = {.count = 1, .reusable = false}, SHIFT(72), - [1375] = {.count = 1, .reusable = false}, SHIFT(74), - [1377] = {.count = 1, .reusable = false}, SHIFT(75), - [1379] = {.count = 1, .reusable = false}, SHIFT(78), - [1381] = {.count = 1, .reusable = false}, SHIFT(79), - [1383] = {.count = 1, .reusable = false}, SHIFT(80), - [1385] = {.count = 1, .reusable = false}, SHIFT(81), - [1387] = {.count = 1, .reusable = false}, SHIFT(707), - [1389] = {.count = 1, .reusable = true}, SHIFT(708), - [1391] = {.count = 1, .reusable = true}, SHIFT(709), - [1393] = {.count = 1, .reusable = false}, SHIFT(711), - [1395] = {.count = 1, .reusable = false}, SHIFT(712), - [1397] = {.count = 1, .reusable = true}, SHIFT(713), - [1399] = {.count = 1, .reusable = true}, SHIFT(714), - [1401] = {.count = 1, .reusable = false}, SHIFT(716), - [1403] = {.count = 1, .reusable = true}, SHIFT(716), - [1405] = {.count = 1, .reusable = true}, SHIFT(715), - [1407] = {.count = 1, .reusable = true}, SHIFT(717), - [1409] = {.count = 1, .reusable = true}, SHIFT(718), - [1411] = {.count = 1, .reusable = false}, SHIFT(719), - [1413] = {.count = 1, .reusable = false}, SHIFT(718), - [1415] = {.count = 1, .reusable = true}, SHIFT(721), - [1417] = {.count = 1, .reusable = false}, SHIFT(723), - [1419] = {.count = 1, .reusable = true}, SHIFT(723), - [1421] = {.count = 1, .reusable = true}, SHIFT(722), - [1423] = {.count = 1, .reusable = true}, SHIFT(724), - [1425] = {.count = 1, .reusable = false}, SHIFT(726), - [1427] = {.count = 1, .reusable = true}, SHIFT(726), - [1429] = {.count = 1, .reusable = true}, SHIFT(725), - [1431] = {.count = 1, .reusable = true}, SHIFT(727), - [1433] = {.count = 1, .reusable = true}, SHIFT(728), - [1435] = {.count = 1, .reusable = false}, SHIFT(83), - [1437] = {.count = 1, .reusable = false}, SHIFT(85), - [1439] = {.count = 1, .reusable = false}, SHIFT(86), - [1441] = {.count = 1, .reusable = false}, SHIFT(89), - [1443] = {.count = 1, .reusable = false}, SHIFT(90), - [1445] = {.count = 1, .reusable = false}, SHIFT(91), - [1447] = {.count = 1, .reusable = false}, SHIFT(92), - [1449] = {.count = 1, .reusable = false}, SHIFT(730), - [1451] = {.count = 1, .reusable = true}, SHIFT(731), - [1453] = {.count = 1, .reusable = true}, SHIFT(732), - [1455] = {.count = 1, .reusable = true}, SHIFT(733), - [1457] = {.count = 1, .reusable = true}, SHIFT(734), - [1459] = {.count = 1, .reusable = true}, SHIFT(99), - [1461] = {.count = 1, .reusable = true}, SHIFT(100), - [1463] = {.count = 1, .reusable = true}, SHIFT(101), - [1465] = {.count = 1, .reusable = true}, SHIFT(102), - [1467] = {.count = 1, .reusable = true}, SHIFT(735), - [1469] = {.count = 1, .reusable = false}, SHIFT(737), - [1471] = {.count = 1, .reusable = false}, SHIFT(738), - [1473] = {.count = 1, .reusable = true}, SHIFT(739), - [1475] = {.count = 1, .reusable = true}, SHIFT(740), - [1477] = {.count = 1, .reusable = false}, SHIFT(742), - [1479] = {.count = 1, .reusable = true}, SHIFT(742), - [1481] = {.count = 1, .reusable = true}, SHIFT(741), - [1483] = {.count = 1, .reusable = true}, SHIFT(743), - [1485] = {.count = 1, .reusable = true}, SHIFT(744), - [1487] = {.count = 1, .reusable = false}, SHIFT(745), - [1489] = {.count = 1, .reusable = false}, SHIFT(744), - [1491] = {.count = 1, .reusable = true}, SHIFT(747), - [1493] = {.count = 1, .reusable = false}, SHIFT(749), - [1495] = {.count = 1, .reusable = true}, SHIFT(749), - [1497] = {.count = 1, .reusable = true}, SHIFT(748), - [1499] = {.count = 1, .reusable = true}, SHIFT(750), - [1501] = {.count = 1, .reusable = false}, SHIFT(752), - [1503] = {.count = 1, .reusable = true}, SHIFT(752), - [1505] = {.count = 1, .reusable = true}, SHIFT(751), - [1507] = {.count = 1, .reusable = true}, SHIFT(753), - [1509] = {.count = 1, .reusable = true}, SHIFT(754), - [1511] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(94), - [1514] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1516] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(95), - [1519] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(96), - [1522] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), - [1525] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), - [1528] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), - [1531] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), - [1534] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), - [1537] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), - [1540] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), - [1543] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1545] = {.count = 1, .reusable = true}, SHIFT(755), - [1547] = {.count = 1, .reusable = true}, SHIFT(110), - [1549] = {.count = 1, .reusable = true}, SHIFT(111), - [1551] = {.count = 1, .reusable = true}, SHIFT(112), - [1553] = {.count = 1, .reusable = true}, SHIFT(113), - [1555] = {.count = 1, .reusable = false}, SHIFT(757), - [1557] = {.count = 1, .reusable = false}, SHIFT(758), - [1559] = {.count = 1, .reusable = true}, SHIFT(759), - [1561] = {.count = 1, .reusable = true}, SHIFT(760), - [1563] = {.count = 1, .reusable = false}, SHIFT(762), - [1565] = {.count = 1, .reusable = true}, SHIFT(762), - [1567] = {.count = 1, .reusable = true}, SHIFT(761), - [1569] = {.count = 1, .reusable = true}, SHIFT(763), - [1571] = {.count = 1, .reusable = true}, SHIFT(764), - [1573] = {.count = 1, .reusable = false}, SHIFT(765), - [1575] = {.count = 1, .reusable = false}, SHIFT(764), - [1577] = {.count = 1, .reusable = true}, SHIFT(767), - [1579] = {.count = 1, .reusable = false}, SHIFT(769), - [1581] = {.count = 1, .reusable = true}, SHIFT(769), - [1583] = {.count = 1, .reusable = true}, SHIFT(768), - [1585] = {.count = 1, .reusable = true}, SHIFT(770), - [1587] = {.count = 1, .reusable = false}, SHIFT(772), - [1589] = {.count = 1, .reusable = true}, SHIFT(772), - [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}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1599] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(106), - [1602] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(107), - [1605] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(108), - [1608] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(109), - [1611] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), - [1614] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), - [1617] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), - [1620] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), - [1623] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), - [1626] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1628] = {.count = 1, .reusable = true}, SHIFT(775), - [1630] = {.count = 1, .reusable = false}, SHIFT(777), - [1632] = {.count = 1, .reusable = false}, SHIFT(778), - [1634] = {.count = 1, .reusable = true}, SHIFT(779), - [1636] = {.count = 1, .reusable = true}, SHIFT(780), - [1638] = {.count = 1, .reusable = false}, SHIFT(782), - [1640] = {.count = 1, .reusable = true}, SHIFT(782), - [1642] = {.count = 1, .reusable = true}, SHIFT(781), - [1644] = {.count = 1, .reusable = true}, SHIFT(783), - [1646] = {.count = 1, .reusable = true}, SHIFT(784), - [1648] = {.count = 1, .reusable = false}, SHIFT(785), - [1650] = {.count = 1, .reusable = false}, SHIFT(784), - [1652] = {.count = 1, .reusable = true}, SHIFT(787), - [1654] = {.count = 1, .reusable = false}, SHIFT(789), - [1656] = {.count = 1, .reusable = true}, SHIFT(789), - [1658] = {.count = 1, .reusable = true}, SHIFT(788), - [1660] = {.count = 1, .reusable = true}, SHIFT(790), - [1662] = {.count = 1, .reusable = false}, SHIFT(792), - [1664] = {.count = 1, .reusable = true}, SHIFT(792), - [1666] = {.count = 1, .reusable = true}, SHIFT(791), - [1668] = {.count = 1, .reusable = true}, SHIFT(793), - [1670] = {.count = 1, .reusable = true}, SHIFT(794), - [1672] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1674] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1676] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(125), - [1679] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), - [1681] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), - [1683] = {.count = 1, .reusable = true}, SHIFT(795), - [1685] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), - [1687] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), - [1689] = {.count = 1, .reusable = true}, SHIFT(796), - [1691] = {.count = 1, .reusable = true}, SHIFT(797), - [1693] = {.count = 1, .reusable = false}, SHIFT(799), - [1695] = {.count = 1, .reusable = true}, SHIFT(799), - [1697] = {.count = 1, .reusable = true}, SHIFT(798), - [1699] = {.count = 1, .reusable = true}, SHIFT(800), - [1701] = {.count = 1, .reusable = true}, SHIFT(801), - [1703] = {.count = 1, .reusable = false}, SHIFT(802), - [1705] = {.count = 1, .reusable = false}, SHIFT(801), - [1707] = {.count = 1, .reusable = true}, SHIFT(804), - [1709] = {.count = 1, .reusable = false}, SHIFT(806), - [1711] = {.count = 1, .reusable = true}, SHIFT(806), - [1713] = {.count = 1, .reusable = true}, SHIFT(805), - [1715] = {.count = 1, .reusable = true}, SHIFT(807), - [1717] = {.count = 1, .reusable = false}, SHIFT(809), - [1719] = {.count = 1, .reusable = true}, SHIFT(809), - [1721] = {.count = 1, .reusable = true}, SHIFT(808), - [1723] = {.count = 1, .reusable = true}, SHIFT(810), - [1725] = {.count = 1, .reusable = false}, SHIFT(811), - [1727] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(812), - [1730] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(129), - [1733] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(130), - [1736] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(131), - [1739] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(132), - [1742] = {.count = 1, .reusable = true}, SHIFT(813), - [1744] = {.count = 1, .reusable = true}, SHIFT(814), - [1746] = {.count = 1, .reusable = true}, SHIFT(816), - [1748] = {.count = 1, .reusable = false}, SHIFT(817), - [1750] = {.count = 1, .reusable = true}, SHIFT(818), - [1752] = {.count = 1, .reusable = false}, SHIFT(819), - [1754] = {.count = 1, .reusable = true}, SHIFT(820), - [1756] = {.count = 1, .reusable = true}, SHIFT(821), - [1758] = {.count = 1, .reusable = true}, SHIFT(822), - [1760] = {.count = 1, .reusable = true}, SHIFT(823), - [1762] = {.count = 1, .reusable = true}, SHIFT(824), - [1764] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1766] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1768] = {.count = 1, .reusable = true}, SHIFT(826), - [1770] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1772] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1774] = {.count = 1, .reusable = false}, SHIFT(828), - [1776] = {.count = 1, .reusable = false}, SHIFT(829), - [1778] = {.count = 1, .reusable = true}, SHIFT(831), - [1780] = {.count = 1, .reusable = true}, SHIFT(832), - [1782] = {.count = 1, .reusable = false}, SHIFT(833), - [1784] = {.count = 1, .reusable = false}, SHIFT(831), - [1786] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [1788] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1790] = {.count = 1, .reusable = true}, SHIFT(834), - [1792] = {.count = 1, .reusable = true}, SHIFT(835), - [1794] = {.count = 1, .reusable = true}, SHIFT(836), - [1796] = {.count = 1, .reusable = false}, SHIFT(837), - [1798] = {.count = 1, .reusable = false}, SHIFT(835), - [1800] = {.count = 1, .reusable = true}, SHIFT(839), - [1802] = {.count = 1, .reusable = true}, SHIFT(846), - [1804] = {.count = 1, .reusable = false}, SHIFT(847), - [1806] = {.count = 1, .reusable = true}, SHIFT(847), - [1808] = {.count = 1, .reusable = true}, SHIFT(848), - [1810] = {.count = 1, .reusable = true}, SHIFT(849), - [1812] = {.count = 1, .reusable = false}, SHIFT(851), - [1814] = {.count = 1, .reusable = true}, SHIFT(851), - [1816] = {.count = 1, .reusable = true}, SHIFT(850), - [1818] = {.count = 1, .reusable = true}, SHIFT(852), - [1820] = {.count = 1, .reusable = false}, SHIFT(854), - [1822] = {.count = 1, .reusable = true}, SHIFT(854), - [1824] = {.count = 1, .reusable = true}, SHIFT(853), - [1826] = {.count = 1, .reusable = false}, SHIFT(856), - [1828] = {.count = 1, .reusable = true}, SHIFT(856), - [1830] = {.count = 1, .reusable = true}, SHIFT(855), - [1832] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [1834] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [1836] = {.count = 1, .reusable = true}, SHIFT(857), - [1838] = {.count = 1, .reusable = true}, SHIFT(858), - [1840] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), - [1842] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), - [1844] = {.count = 1, .reusable = true}, SHIFT(859), - [1846] = {.count = 1, .reusable = true}, SHIFT(860), - [1848] = {.count = 1, .reusable = true}, SHIFT(861), - [1850] = {.count = 1, .reusable = false}, SHIFT(862), - [1852] = {.count = 1, .reusable = false}, SHIFT(863), - [1854] = {.count = 1, .reusable = true}, SHIFT(863), - [1856] = {.count = 1, .reusable = true}, SHIFT(864), - [1858] = {.count = 1, .reusable = true}, SHIFT(866), - [1860] = {.count = 1, .reusable = false}, SHIFT(867), - [1862] = {.count = 1, .reusable = false}, SHIFT(868), - [1864] = {.count = 1, .reusable = true}, SHIFT(868), - [1866] = {.count = 1, .reusable = false}, SHIFT(869), - [1868] = {.count = 1, .reusable = false}, SHIFT(870), - [1870] = {.count = 1, .reusable = true}, SHIFT(870), - [1872] = {.count = 1, .reusable = true}, SHIFT(871), - [1874] = {.count = 1, .reusable = true}, SHIFT(872), - [1876] = {.count = 1, .reusable = false}, SHIFT(874), - [1878] = {.count = 1, .reusable = false}, SHIFT(875), - [1880] = {.count = 1, .reusable = true}, SHIFT(875), - [1882] = {.count = 1, .reusable = true}, SHIFT(878), - [1884] = {.count = 1, .reusable = true}, SHIFT(879), - [1886] = {.count = 1, .reusable = true}, SHIFT(880), - [1888] = {.count = 1, .reusable = false}, SHIFT(882), - [1890] = {.count = 1, .reusable = false}, SHIFT(883), - [1892] = {.count = 1, .reusable = true}, SHIFT(885), - [1894] = {.count = 1, .reusable = true}, SHIFT(886), - [1896] = {.count = 1, .reusable = false}, SHIFT(887), - [1898] = {.count = 1, .reusable = false}, SHIFT(885), - [1900] = {.count = 1, .reusable = true}, SHIFT(888), - [1902] = {.count = 1, .reusable = true}, SHIFT(889), - [1904] = {.count = 1, .reusable = true}, SHIFT(890), - [1906] = {.count = 1, .reusable = false}, SHIFT(891), - [1908] = {.count = 1, .reusable = false}, SHIFT(889), - [1910] = {.count = 1, .reusable = true}, SHIFT(900), - [1912] = {.count = 1, .reusable = false}, SHIFT(902), - [1914] = {.count = 1, .reusable = false}, SHIFT(903), - [1916] = {.count = 1, .reusable = true}, SHIFT(905), - [1918] = {.count = 1, .reusable = true}, SHIFT(906), - [1920] = {.count = 1, .reusable = false}, SHIFT(907), - [1922] = {.count = 1, .reusable = false}, SHIFT(905), - [1924] = {.count = 1, .reusable = true}, SHIFT(908), - [1926] = {.count = 1, .reusable = true}, SHIFT(909), - [1928] = {.count = 1, .reusable = true}, SHIFT(910), - [1930] = {.count = 1, .reusable = false}, SHIFT(911), - [1932] = {.count = 1, .reusable = false}, SHIFT(909), - [1934] = {.count = 1, .reusable = true}, SHIFT(920), - [1936] = {.count = 1, .reusable = false}, SHIFT(922), - [1938] = {.count = 1, .reusable = false}, SHIFT(923), - [1940] = {.count = 1, .reusable = true}, SHIFT(924), - [1942] = {.count = 1, .reusable = true}, SHIFT(925), - [1944] = {.count = 1, .reusable = false}, SHIFT(927), - [1946] = {.count = 1, .reusable = true}, SHIFT(927), - [1948] = {.count = 1, .reusable = true}, SHIFT(926), - [1950] = {.count = 1, .reusable = true}, SHIFT(928), - [1952] = {.count = 1, .reusable = true}, SHIFT(929), - [1954] = {.count = 1, .reusable = false}, SHIFT(930), - [1956] = {.count = 1, .reusable = false}, SHIFT(929), - [1958] = {.count = 1, .reusable = true}, SHIFT(932), - [1960] = {.count = 1, .reusable = false}, SHIFT(934), - [1962] = {.count = 1, .reusable = true}, SHIFT(934), - [1964] = {.count = 1, .reusable = true}, SHIFT(933), - [1966] = {.count = 1, .reusable = true}, SHIFT(935), - [1968] = {.count = 1, .reusable = false}, SHIFT(937), - [1970] = {.count = 1, .reusable = true}, SHIFT(937), - [1972] = {.count = 1, .reusable = true}, SHIFT(936), - [1974] = {.count = 1, .reusable = true}, SHIFT(938), - [1976] = {.count = 1, .reusable = true}, SHIFT(939), - [1978] = {.count = 1, .reusable = true}, SHIFT(940), - [1980] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), - [1982] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), - [1984] = {.count = 1, .reusable = true}, SHIFT(946), - [1986] = {.count = 1, .reusable = true}, SHIFT(945), - [1988] = {.count = 1, .reusable = false}, SHIFT(947), - [1990] = {.count = 1, .reusable = true}, SHIFT(947), - [1992] = {.count = 1, .reusable = false}, SHIFT(948), - [1994] = {.count = 1, .reusable = false}, SHIFT(155), - [1996] = {.count = 1, .reusable = false}, SHIFT(949), - [1998] = {.count = 1, .reusable = false}, SHIFT(158), - [2000] = {.count = 1, .reusable = false}, SHIFT(159), - [2002] = {.count = 1, .reusable = false}, SHIFT(160), - [2004] = {.count = 1, .reusable = false}, SHIFT(161), - [2006] = {.count = 1, .reusable = false}, SHIFT(950), - [2008] = {.count = 1, .reusable = true}, SHIFT(951), + [1363] = {.count = 1, .reusable = false}, SHIFT(703), + [1365] = {.count = 1, .reusable = false}, SHIFT(704), + [1367] = {.count = 1, .reusable = true}, SHIFT(705), + [1369] = {.count = 1, .reusable = true}, SHIFT(706), + [1371] = {.count = 1, .reusable = true}, SHIFT(707), + [1373] = {.count = 1, .reusable = true}, SHIFT(708), + [1375] = {.count = 1, .reusable = false}, SHIFT(699), + [1377] = {.count = 1, .reusable = false}, SHIFT(712), + [1379] = {.count = 1, .reusable = true}, SHIFT(712), + [1381] = {.count = 1, .reusable = true}, SHIFT(714), + [1383] = {.count = 1, .reusable = true}, SHIFT(715), + [1385] = {.count = 1, .reusable = true}, SHIFT(716), + [1387] = {.count = 1, .reusable = true}, SHIFT(717), + [1389] = {.count = 1, .reusable = true}, SHIFT(720), + [1391] = {.count = 1, .reusable = true}, SHIFT(721), + [1393] = {.count = 1, .reusable = true}, SHIFT(722), + [1395] = {.count = 1, .reusable = false}, SHIFT(721), + [1397] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), + [1399] = {.count = 1, .reusable = true}, SHIFT(723), + [1401] = {.count = 1, .reusable = false}, SHIFT(725), + [1403] = {.count = 1, .reusable = false}, SHIFT(726), + [1405] = {.count = 1, .reusable = true}, SHIFT(727), + [1407] = {.count = 1, .reusable = true}, SHIFT(728), + [1409] = {.count = 1, .reusable = false}, SHIFT(730), + [1411] = {.count = 1, .reusable = true}, SHIFT(730), + [1413] = {.count = 1, .reusable = true}, SHIFT(729), + [1415] = {.count = 1, .reusable = true}, SHIFT(731), + [1417] = {.count = 1, .reusable = true}, SHIFT(732), + [1419] = {.count = 1, .reusable = false}, SHIFT(733), + [1421] = {.count = 1, .reusable = false}, SHIFT(732), + [1423] = {.count = 1, .reusable = true}, SHIFT(735), + [1425] = {.count = 1, .reusable = false}, SHIFT(737), + [1427] = {.count = 1, .reusable = true}, SHIFT(737), + [1429] = {.count = 1, .reusable = true}, SHIFT(736), + [1431] = {.count = 1, .reusable = true}, SHIFT(738), + [1433] = {.count = 1, .reusable = false}, SHIFT(740), + [1435] = {.count = 1, .reusable = true}, SHIFT(740), + [1437] = {.count = 1, .reusable = true}, SHIFT(739), + [1439] = {.count = 1, .reusable = true}, SHIFT(741), + [1441] = {.count = 1, .reusable = true}, SHIFT(742), + [1443] = {.count = 1, .reusable = true}, SHIFT(744), + [1445] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), + [1447] = {.count = 1, .reusable = false}, SHIFT(745), + [1449] = {.count = 1, .reusable = false}, SHIFT(746), + [1451] = {.count = 1, .reusable = false}, SHIFT(747), + [1453] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), + [1455] = {.count = 1, .reusable = false}, SHIFT(72), + [1457] = {.count = 1, .reusable = false}, SHIFT(74), + [1459] = {.count = 1, .reusable = false}, SHIFT(75), + [1461] = {.count = 1, .reusable = false}, SHIFT(78), + [1463] = {.count = 1, .reusable = false}, SHIFT(79), + [1465] = {.count = 1, .reusable = false}, SHIFT(80), + [1467] = {.count = 1, .reusable = false}, SHIFT(81), + [1469] = {.count = 1, .reusable = false}, SHIFT(749), + [1471] = {.count = 1, .reusable = true}, SHIFT(750), + [1473] = {.count = 1, .reusable = true}, SHIFT(751), + [1475] = {.count = 1, .reusable = false}, SHIFT(753), + [1477] = {.count = 1, .reusable = false}, SHIFT(754), + [1479] = {.count = 1, .reusable = true}, SHIFT(755), + [1481] = {.count = 1, .reusable = true}, SHIFT(756), + [1483] = {.count = 1, .reusable = false}, SHIFT(758), + [1485] = {.count = 1, .reusable = true}, SHIFT(758), + [1487] = {.count = 1, .reusable = true}, SHIFT(757), + [1489] = {.count = 1, .reusable = true}, SHIFT(759), + [1491] = {.count = 1, .reusable = true}, SHIFT(760), + [1493] = {.count = 1, .reusable = false}, SHIFT(761), + [1495] = {.count = 1, .reusable = false}, SHIFT(760), + [1497] = {.count = 1, .reusable = true}, SHIFT(763), + [1499] = {.count = 1, .reusable = false}, SHIFT(765), + [1501] = {.count = 1, .reusable = true}, SHIFT(765), + [1503] = {.count = 1, .reusable = true}, SHIFT(764), + [1505] = {.count = 1, .reusable = true}, SHIFT(766), + [1507] = {.count = 1, .reusable = false}, SHIFT(768), + [1509] = {.count = 1, .reusable = true}, SHIFT(768), + [1511] = {.count = 1, .reusable = true}, SHIFT(767), + [1513] = {.count = 1, .reusable = true}, SHIFT(769), + [1515] = {.count = 1, .reusable = true}, SHIFT(770), + [1517] = {.count = 1, .reusable = false}, SHIFT(83), + [1519] = {.count = 1, .reusable = false}, SHIFT(85), + [1521] = {.count = 1, .reusable = false}, SHIFT(86), + [1523] = {.count = 1, .reusable = false}, SHIFT(89), + [1525] = {.count = 1, .reusable = false}, SHIFT(90), + [1527] = {.count = 1, .reusable = false}, SHIFT(91), + [1529] = {.count = 1, .reusable = false}, SHIFT(92), + [1531] = {.count = 1, .reusable = false}, SHIFT(772), + [1533] = {.count = 1, .reusable = true}, SHIFT(773), + [1535] = {.count = 1, .reusable = true}, SHIFT(774), + [1537] = {.count = 1, .reusable = true}, SHIFT(775), + [1539] = {.count = 1, .reusable = true}, SHIFT(776), + [1541] = {.count = 1, .reusable = true}, SHIFT(99), + [1543] = {.count = 1, .reusable = true}, SHIFT(100), + [1545] = {.count = 1, .reusable = true}, SHIFT(101), + [1547] = {.count = 1, .reusable = true}, SHIFT(102), + [1549] = {.count = 1, .reusable = true}, SHIFT(777), + [1551] = {.count = 1, .reusable = false}, SHIFT(779), + [1553] = {.count = 1, .reusable = false}, SHIFT(780), + [1555] = {.count = 1, .reusable = true}, SHIFT(781), + [1557] = {.count = 1, .reusable = true}, SHIFT(782), + [1559] = {.count = 1, .reusable = false}, SHIFT(784), + [1561] = {.count = 1, .reusable = true}, SHIFT(784), + [1563] = {.count = 1, .reusable = true}, SHIFT(783), + [1565] = {.count = 1, .reusable = true}, SHIFT(785), + [1567] = {.count = 1, .reusable = true}, SHIFT(786), + [1569] = {.count = 1, .reusable = false}, SHIFT(787), + [1571] = {.count = 1, .reusable = false}, SHIFT(786), + [1573] = {.count = 1, .reusable = true}, SHIFT(789), + [1575] = {.count = 1, .reusable = false}, SHIFT(791), + [1577] = {.count = 1, .reusable = true}, SHIFT(791), + [1579] = {.count = 1, .reusable = true}, SHIFT(790), + [1581] = {.count = 1, .reusable = true}, SHIFT(792), + [1583] = {.count = 1, .reusable = false}, SHIFT(794), + [1585] = {.count = 1, .reusable = true}, SHIFT(794), + [1587] = {.count = 1, .reusable = true}, SHIFT(793), + [1589] = {.count = 1, .reusable = true}, SHIFT(795), + [1591] = {.count = 1, .reusable = true}, SHIFT(796), + [1593] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(94), + [1596] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1598] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(95), + [1601] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(96), + [1604] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), + [1607] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), + [1610] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), + [1613] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), + [1616] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), + [1619] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), + [1622] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), + [1625] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1627] = {.count = 1, .reusable = true}, SHIFT(797), + [1629] = {.count = 1, .reusable = true}, SHIFT(111), + [1631] = {.count = 1, .reusable = true}, SHIFT(112), + [1633] = {.count = 1, .reusable = true}, SHIFT(113), + [1635] = {.count = 1, .reusable = true}, SHIFT(114), + [1637] = {.count = 1, .reusable = false}, SHIFT(799), + [1639] = {.count = 1, .reusable = false}, SHIFT(800), + [1641] = {.count = 1, .reusable = true}, SHIFT(801), + [1643] = {.count = 1, .reusable = true}, SHIFT(802), + [1645] = {.count = 1, .reusable = false}, SHIFT(804), + [1647] = {.count = 1, .reusable = true}, SHIFT(804), + [1649] = {.count = 1, .reusable = true}, SHIFT(803), + [1651] = {.count = 1, .reusable = true}, SHIFT(805), + [1653] = {.count = 1, .reusable = true}, SHIFT(806), + [1655] = {.count = 1, .reusable = false}, SHIFT(807), + [1657] = {.count = 1, .reusable = false}, SHIFT(806), + [1659] = {.count = 1, .reusable = true}, SHIFT(809), + [1661] = {.count = 1, .reusable = false}, SHIFT(811), + [1663] = {.count = 1, .reusable = true}, SHIFT(811), + [1665] = {.count = 1, .reusable = true}, SHIFT(810), + [1667] = {.count = 1, .reusable = true}, SHIFT(812), + [1669] = {.count = 1, .reusable = false}, SHIFT(814), + [1671] = {.count = 1, .reusable = true}, SHIFT(814), + [1673] = {.count = 1, .reusable = true}, SHIFT(813), + [1675] = {.count = 1, .reusable = true}, SHIFT(815), + [1677] = {.count = 1, .reusable = true}, SHIFT(816), + [1679] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1681] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(107), + [1684] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(108), + [1687] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(109), + [1690] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), + [1693] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), + [1696] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), + [1699] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), + [1702] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), + [1705] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(115), + [1708] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1710] = {.count = 1, .reusable = true}, SHIFT(817), + [1712] = {.count = 1, .reusable = false}, SHIFT(819), + [1714] = {.count = 1, .reusable = false}, SHIFT(820), + [1716] = {.count = 1, .reusable = true}, SHIFT(821), + [1718] = {.count = 1, .reusable = true}, SHIFT(822), + [1720] = {.count = 1, .reusable = false}, SHIFT(824), + [1722] = {.count = 1, .reusable = true}, SHIFT(824), + [1724] = {.count = 1, .reusable = true}, SHIFT(823), + [1726] = {.count = 1, .reusable = true}, SHIFT(825), + [1728] = {.count = 1, .reusable = true}, SHIFT(826), + [1730] = {.count = 1, .reusable = false}, SHIFT(827), + [1732] = {.count = 1, .reusable = false}, SHIFT(826), + [1734] = {.count = 1, .reusable = true}, SHIFT(829), + [1736] = {.count = 1, .reusable = false}, SHIFT(831), + [1738] = {.count = 1, .reusable = true}, SHIFT(831), + [1740] = {.count = 1, .reusable = true}, SHIFT(830), + [1742] = {.count = 1, .reusable = true}, SHIFT(832), + [1744] = {.count = 1, .reusable = false}, SHIFT(834), + [1746] = {.count = 1, .reusable = true}, SHIFT(834), + [1748] = {.count = 1, .reusable = true}, SHIFT(833), + [1750] = {.count = 1, .reusable = true}, SHIFT(835), + [1752] = {.count = 1, .reusable = true}, SHIFT(836), + [1754] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1756] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1758] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(126), + [1761] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [1763] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), + [1765] = {.count = 1, .reusable = true}, SHIFT(837), + [1767] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [1769] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), + [1771] = {.count = 1, .reusable = true}, SHIFT(838), + [1773] = {.count = 1, .reusable = true}, SHIFT(839), + [1775] = {.count = 1, .reusable = false}, SHIFT(841), + [1777] = {.count = 1, .reusable = true}, SHIFT(841), + [1779] = {.count = 1, .reusable = true}, SHIFT(840), + [1781] = {.count = 1, .reusable = true}, SHIFT(842), + [1783] = {.count = 1, .reusable = true}, SHIFT(843), + [1785] = {.count = 1, .reusable = false}, SHIFT(844), + [1787] = {.count = 1, .reusable = false}, SHIFT(843), + [1789] = {.count = 1, .reusable = true}, SHIFT(846), + [1791] = {.count = 1, .reusable = false}, SHIFT(848), + [1793] = {.count = 1, .reusable = true}, SHIFT(848), + [1795] = {.count = 1, .reusable = true}, SHIFT(847), + [1797] = {.count = 1, .reusable = true}, SHIFT(849), + [1799] = {.count = 1, .reusable = false}, SHIFT(851), + [1801] = {.count = 1, .reusable = true}, SHIFT(851), + [1803] = {.count = 1, .reusable = true}, SHIFT(850), + [1805] = {.count = 1, .reusable = true}, SHIFT(852), + [1807] = {.count = 1, .reusable = false}, SHIFT(853), + [1809] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(854), + [1812] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(130), + [1815] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(131), + [1818] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(132), + [1821] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(133), + [1824] = {.count = 1, .reusable = true}, SHIFT(855), + [1826] = {.count = 1, .reusable = true}, SHIFT(856), + [1828] = {.count = 1, .reusable = true}, SHIFT(858), + [1830] = {.count = 1, .reusable = false}, SHIFT(859), + [1832] = {.count = 1, .reusable = true}, SHIFT(860), + [1834] = {.count = 1, .reusable = false}, SHIFT(861), + [1836] = {.count = 1, .reusable = true}, SHIFT(862), + [1838] = {.count = 1, .reusable = true}, SHIFT(863), + [1840] = {.count = 1, .reusable = true}, SHIFT(864), + [1842] = {.count = 1, .reusable = true}, SHIFT(865), + [1844] = {.count = 1, .reusable = true}, SHIFT(866), + [1846] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1848] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1850] = {.count = 1, .reusable = true}, SHIFT(868), + [1852] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1854] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1856] = {.count = 1, .reusable = false}, SHIFT(870), + [1858] = {.count = 1, .reusable = false}, SHIFT(871), + [1860] = {.count = 1, .reusable = true}, SHIFT(873), + [1862] = {.count = 1, .reusable = true}, SHIFT(874), + [1864] = {.count = 1, .reusable = false}, SHIFT(875), + [1866] = {.count = 1, .reusable = false}, SHIFT(873), + [1868] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1870] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1872] = {.count = 1, .reusable = true}, SHIFT(876), + [1874] = {.count = 1, .reusable = true}, SHIFT(877), + [1876] = {.count = 1, .reusable = true}, SHIFT(878), + [1878] = {.count = 1, .reusable = false}, SHIFT(879), + [1880] = {.count = 1, .reusable = false}, SHIFT(877), + [1882] = {.count = 1, .reusable = true}, SHIFT(881), + [1884] = {.count = 1, .reusable = true}, SHIFT(888), + [1886] = {.count = 1, .reusable = false}, SHIFT(889), + [1888] = {.count = 1, .reusable = true}, SHIFT(889), + [1890] = {.count = 1, .reusable = true}, SHIFT(890), + [1892] = {.count = 1, .reusable = true}, SHIFT(891), + [1894] = {.count = 1, .reusable = false}, SHIFT(893), + [1896] = {.count = 1, .reusable = true}, SHIFT(893), + [1898] = {.count = 1, .reusable = true}, SHIFT(892), + [1900] = {.count = 1, .reusable = true}, SHIFT(894), + [1902] = {.count = 1, .reusable = false}, SHIFT(896), + [1904] = {.count = 1, .reusable = true}, SHIFT(896), + [1906] = {.count = 1, .reusable = true}, SHIFT(895), + [1908] = {.count = 1, .reusable = false}, SHIFT(898), + [1910] = {.count = 1, .reusable = true}, SHIFT(898), + [1912] = {.count = 1, .reusable = true}, SHIFT(897), + [1914] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1916] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1918] = {.count = 1, .reusable = true}, SHIFT(899), + [1920] = {.count = 1, .reusable = true}, SHIFT(900), + [1922] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [1924] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), + [1926] = {.count = 1, .reusable = true}, SHIFT(901), + [1928] = {.count = 1, .reusable = true}, SHIFT(902), + [1930] = {.count = 1, .reusable = true}, SHIFT(903), + [1932] = {.count = 1, .reusable = false}, SHIFT(904), + [1934] = {.count = 1, .reusable = true}, SHIFT(904), + [1936] = {.count = 1, .reusable = false}, SHIFT(906), + [1938] = {.count = 1, .reusable = false}, SHIFT(907), + [1940] = {.count = 1, .reusable = true}, SHIFT(907), + [1942] = {.count = 1, .reusable = true}, SHIFT(908), + [1944] = {.count = 1, .reusable = true}, SHIFT(910), + [1946] = {.count = 1, .reusable = false}, SHIFT(911), + [1948] = {.count = 1, .reusable = false}, SHIFT(912), + [1950] = {.count = 1, .reusable = true}, SHIFT(912), + [1952] = {.count = 1, .reusable = false}, SHIFT(913), + [1954] = {.count = 1, .reusable = false}, SHIFT(914), + [1956] = {.count = 1, .reusable = true}, SHIFT(914), + [1958] = {.count = 1, .reusable = true}, SHIFT(915), + [1960] = {.count = 1, .reusable = true}, SHIFT(916), + [1962] = {.count = 1, .reusable = false}, SHIFT(918), + [1964] = {.count = 1, .reusable = false}, SHIFT(919), + [1966] = {.count = 1, .reusable = true}, SHIFT(919), + [1968] = {.count = 1, .reusable = true}, SHIFT(922), + [1970] = {.count = 1, .reusable = true}, SHIFT(923), + [1972] = {.count = 1, .reusable = true}, SHIFT(924), + [1974] = {.count = 1, .reusable = false}, SHIFT(926), + [1976] = {.count = 1, .reusable = false}, SHIFT(927), + [1978] = {.count = 1, .reusable = true}, SHIFT(929), + [1980] = {.count = 1, .reusable = true}, SHIFT(930), + [1982] = {.count = 1, .reusable = false}, SHIFT(931), + [1984] = {.count = 1, .reusable = false}, SHIFT(929), + [1986] = {.count = 1, .reusable = true}, SHIFT(932), + [1988] = {.count = 1, .reusable = true}, SHIFT(933), + [1990] = {.count = 1, .reusable = true}, SHIFT(934), + [1992] = {.count = 1, .reusable = false}, SHIFT(935), + [1994] = {.count = 1, .reusable = false}, SHIFT(933), + [1996] = {.count = 1, .reusable = true}, SHIFT(944), + [1998] = {.count = 1, .reusable = false}, SHIFT(946), + [2000] = {.count = 1, .reusable = false}, SHIFT(947), + [2002] = {.count = 1, .reusable = true}, SHIFT(949), + [2004] = {.count = 1, .reusable = true}, SHIFT(950), + [2006] = {.count = 1, .reusable = false}, SHIFT(951), + [2008] = {.count = 1, .reusable = false}, SHIFT(949), [2010] = {.count = 1, .reusable = true}, SHIFT(952), - [2012] = {.count = 1, .reusable = true}, SHIFT(954), - [2014] = {.count = 1, .reusable = true}, SHIFT(955), - [2016] = {.count = 1, .reusable = true}, SHIFT(956), - [2018] = {.count = 1, .reusable = true}, SHIFT(963), + [2012] = {.count = 1, .reusable = true}, SHIFT(953), + [2014] = {.count = 1, .reusable = true}, SHIFT(954), + [2016] = {.count = 1, .reusable = false}, SHIFT(955), + [2018] = {.count = 1, .reusable = false}, SHIFT(953), [2020] = {.count = 1, .reusable = true}, SHIFT(964), - [2022] = {.count = 1, .reusable = true}, SHIFT(966), - [2024] = {.count = 1, .reusable = true}, SHIFT(968), - [2026] = {.count = 1, .reusable = true}, SHIFT(969), - [2028] = {.count = 1, .reusable = true}, SHIFT(975), - [2030] = {.count = 1, .reusable = false}, SHIFT(979), - [2032] = {.count = 1, .reusable = true}, SHIFT(979), - [2034] = {.count = 1, .reusable = false}, SHIFT(980), - [2036] = {.count = 1, .reusable = false}, SHIFT(981), - [2038] = {.count = 1, .reusable = true}, SHIFT(982), - [2040] = {.count = 1, .reusable = true}, SHIFT(983), - [2042] = {.count = 1, .reusable = true}, SHIFT(984), - [2044] = {.count = 1, .reusable = true}, SHIFT(985), - [2046] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), - [2048] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), - [2050] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), - [2052] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), - [2054] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), - [2056] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), - [2058] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), - [2060] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), - [2062] = {.count = 1, .reusable = true}, SHIFT(991), - [2064] = {.count = 1, .reusable = false}, SHIFT(992), - [2066] = {.count = 1, .reusable = false}, SHIFT(991), - [2068] = {.count = 1, .reusable = true}, SHIFT(993), - [2070] = {.count = 1, .reusable = true}, SHIFT(994), - [2072] = {.count = 1, .reusable = true}, SHIFT(995), - [2074] = {.count = 1, .reusable = false}, SHIFT(996), - [2076] = {.count = 1, .reusable = false}, SHIFT(994), - [2078] = {.count = 1, .reusable = true}, SHIFT(999), - [2080] = {.count = 1, .reusable = true}, SHIFT(998), - [2082] = {.count = 1, .reusable = true}, SHIFT(1000), - [2084] = {.count = 1, .reusable = true}, SHIFT(1001), - [2086] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), - [2088] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), - [2090] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), - [2092] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), - [2094] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), - [2096] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), - [2098] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [2100] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [2102] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), - [2104] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), - [2106] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), - [2108] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), - [2110] = {.count = 1, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), - [2112] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(193), - [2115] = {.count = 1, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), - [2117] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(195), - [2120] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(196), - [2123] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(197), - [2126] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(194), - [2129] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(198), - [2132] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), - [2135] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(18), - [2138] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(199), - [2141] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), - [2144] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), - [2147] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), - [2150] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), - [2153] = {.count = 1, .reusable = true}, SHIFT(1006), - [2155] = {.count = 1, .reusable = false}, SHIFT(681), - [2157] = {.count = 1, .reusable = true}, SHIFT(1007), - [2159] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [2161] = {.count = 1, .reusable = true}, SHIFT(1009), - [2163] = {.count = 1, .reusable = true}, SHIFT(1010), - [2165] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), - [2167] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), - [2169] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), - [2171] = {.count = 1, .reusable = true}, SHIFT(1011), - [2173] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2175] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2177] = {.count = 1, .reusable = false}, SHIFT(1013), - [2179] = {.count = 1, .reusable = false}, SHIFT(1014), - [2181] = {.count = 1, .reusable = true}, SHIFT(1016), - [2183] = {.count = 1, .reusable = true}, SHIFT(1017), - [2185] = {.count = 1, .reusable = false}, SHIFT(1018), - [2187] = {.count = 1, .reusable = false}, SHIFT(1016), - [2189] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2191] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2193] = {.count = 1, .reusable = true}, SHIFT(1019), - [2195] = {.count = 1, .reusable = true}, SHIFT(1020), - [2197] = {.count = 1, .reusable = true}, SHIFT(1021), - [2199] = {.count = 1, .reusable = false}, SHIFT(1022), - [2201] = {.count = 1, .reusable = false}, SHIFT(1020), - [2203] = {.count = 1, .reusable = true}, SHIFT(1030), - [2205] = {.count = 1, .reusable = true}, SHIFT(1032), - [2207] = {.count = 1, .reusable = false}, SHIFT(1034), - [2209] = {.count = 1, .reusable = false}, SHIFT(1035), - [2211] = {.count = 1, .reusable = true}, SHIFT(1036), - [2213] = {.count = 1, .reusable = true}, SHIFT(1037), - [2215] = {.count = 1, .reusable = false}, SHIFT(1039), - [2217] = {.count = 1, .reusable = true}, SHIFT(1039), - [2219] = {.count = 1, .reusable = true}, SHIFT(1038), - [2221] = {.count = 1, .reusable = true}, SHIFT(1040), - [2223] = {.count = 1, .reusable = true}, SHIFT(1041), - [2225] = {.count = 1, .reusable = false}, SHIFT(1042), - [2227] = {.count = 1, .reusable = false}, SHIFT(1041), - [2229] = {.count = 1, .reusable = true}, SHIFT(1044), - [2231] = {.count = 1, .reusable = false}, SHIFT(1046), - [2233] = {.count = 1, .reusable = true}, SHIFT(1046), - [2235] = {.count = 1, .reusable = true}, SHIFT(1045), - [2237] = {.count = 1, .reusable = true}, SHIFT(1047), - [2239] = {.count = 1, .reusable = false}, SHIFT(1049), - [2241] = {.count = 1, .reusable = true}, SHIFT(1049), - [2243] = {.count = 1, .reusable = true}, SHIFT(1048), - [2245] = {.count = 1, .reusable = true}, SHIFT(1050), - [2247] = {.count = 1, .reusable = true}, SHIFT(1051), - [2249] = {.count = 1, .reusable = false}, SHIFT(1053), - [2251] = {.count = 1, .reusable = false}, SHIFT(596), - [2253] = {.count = 1, .reusable = false}, SHIFT(43), - [2255] = {.count = 1, .reusable = false}, SHIFT(597), - [2257] = {.count = 1, .reusable = false}, SHIFT(46), - [2259] = {.count = 1, .reusable = false}, SHIFT(47), - [2261] = {.count = 1, .reusable = false}, SHIFT(48), - [2263] = {.count = 1, .reusable = false}, SHIFT(49), - [2265] = {.count = 1, .reusable = true}, SHIFT(1053), - [2267] = {.count = 1, .reusable = false}, SHIFT(1055), - [2269] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), - [2271] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), - [2273] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), - [2275] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), - [2277] = {.count = 1, .reusable = false}, SHIFT(1057), - [2279] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 4), - [2281] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 4), - [2283] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), - [2285] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), - [2287] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), - [2289] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 1), - [2291] = {.count = 1, .reusable = true}, SHIFT(1062), - [2293] = {.count = 1, .reusable = false}, SHIFT(1062), - [2295] = {.count = 1, .reusable = true}, SHIFT(606), - [2297] = {.count = 1, .reusable = true}, SHIFT(607), - [2299] = {.count = 1, .reusable = false}, SHIFT(1067), - [2301] = {.count = 1, .reusable = true}, SHIFT(1068), - [2303] = {.count = 1, .reusable = true}, SHIFT(1069), - [2305] = {.count = 1, .reusable = false}, SHIFT(1069), - [2307] = {.count = 1, .reusable = false}, SHIFT(1073), - [2309] = {.count = 1, .reusable = true}, SHIFT(1073), - [2311] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(228), - [2314] = {.count = 1, .reusable = false}, SHIFT(1074), - [2316] = {.count = 1, .reusable = false}, SHIFT(1075), - [2318] = {.count = 1, .reusable = false}, SHIFT(1078), - [2320] = {.count = 1, .reusable = true}, SHIFT(1078), - [2322] = {.count = 1, .reusable = true}, SHIFT(1079), - [2324] = {.count = 1, .reusable = false}, SHIFT(1080), - [2326] = {.count = 1, .reusable = true}, SHIFT(1081), - [2328] = {.count = 1, .reusable = true}, SHIFT(1083), - [2330] = {.count = 1, .reusable = true}, SHIFT(1084), - [2332] = {.count = 1, .reusable = true}, SHIFT(1085), - [2334] = {.count = 1, .reusable = true}, SHIFT(1086), - [2336] = {.count = 1, .reusable = false}, SHIFT(1088), - [2338] = {.count = 1, .reusable = true}, SHIFT(1088), - [2340] = {.count = 1, .reusable = true}, SHIFT(1087), - [2342] = {.count = 1, .reusable = true}, SHIFT(1089), - [2344] = {.count = 1, .reusable = false}, SHIFT(1091), - [2346] = {.count = 1, .reusable = true}, SHIFT(1091), - [2348] = {.count = 1, .reusable = true}, SHIFT(1090), - [2350] = {.count = 1, .reusable = false}, SHIFT(1093), - [2352] = {.count = 1, .reusable = true}, SHIFT(1093), - [2354] = {.count = 1, .reusable = true}, SHIFT(1092), - [2356] = {.count = 1, .reusable = true}, SHIFT(1094), - [2358] = {.count = 1, .reusable = true}, SHIFT(1095), - [2360] = {.count = 1, .reusable = true}, SHIFT(1096), - [2362] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [2364] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [2366] = {.count = 1, .reusable = false}, SHIFT(1098), - [2368] = {.count = 1, .reusable = true}, SHIFT(1098), - [2370] = {.count = 1, .reusable = true}, SHIFT(1099), - [2372] = {.count = 1, .reusable = false}, SHIFT(1101), - [2374] = {.count = 1, .reusable = true}, SHIFT(1101), - [2376] = {.count = 1, .reusable = true}, SHIFT(1102), - [2378] = {.count = 1, .reusable = true}, SHIFT(1103), - [2380] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), - [2382] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), - [2384] = {.count = 1, .reusable = true}, SHIFT(1107), - [2386] = {.count = 1, .reusable = true}, SHIFT(1108), - [2388] = {.count = 1, .reusable = false}, SHIFT(1109), - [2390] = {.count = 1, .reusable = true}, SHIFT(1110), - [2392] = {.count = 1, .reusable = false}, SHIFT(1111), - [2394] = {.count = 1, .reusable = false}, SHIFT(1112), - [2396] = {.count = 1, .reusable = true}, SHIFT(1114), - [2398] = {.count = 1, .reusable = true}, SHIFT(1115), - [2400] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(259), - [2403] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(260), - [2406] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(261), - [2409] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(264), - [2412] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(265), - [2415] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), - [2417] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), - [2419] = {.count = 1, .reusable = true}, SHIFT(1119), - [2421] = {.count = 1, .reusable = true}, SHIFT(1120), - [2423] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(273), - [2426] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(275), - [2429] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(276), - [2432] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(274), - [2435] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(277), - [2438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(278), - [2441] = {.count = 1, .reusable = true}, SHIFT(1122), - [2443] = {.count = 1, .reusable = true}, SHIFT(1124), - [2445] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [2447] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [2449] = {.count = 1, .reusable = false}, SHIFT(287), - [2451] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(291), - [2454] = {.count = 1, .reusable = false}, SHIFT(1127), - [2456] = {.count = 1, .reusable = true}, SHIFT(1128), - [2458] = {.count = 1, .reusable = false}, SHIFT(1129), - [2460] = {.count = 1, .reusable = true}, SHIFT(1130), - [2462] = {.count = 1, .reusable = true}, SHIFT(1132), - [2464] = {.count = 1, .reusable = true}, SHIFT(1133), - [2466] = {.count = 1, .reusable = true}, SHIFT(1134), - [2468] = {.count = 1, .reusable = true}, SHIFT(1135), - [2470] = {.count = 1, .reusable = false}, SHIFT(1137), - [2472] = {.count = 1, .reusable = true}, SHIFT(1137), - [2474] = {.count = 1, .reusable = true}, SHIFT(1136), - [2476] = {.count = 1, .reusable = true}, SHIFT(1138), - [2478] = {.count = 1, .reusable = false}, SHIFT(1140), - [2480] = {.count = 1, .reusable = true}, SHIFT(1140), - [2482] = {.count = 1, .reusable = true}, SHIFT(1139), - [2484] = {.count = 1, .reusable = false}, SHIFT(1142), - [2486] = {.count = 1, .reusable = true}, SHIFT(1142), - [2488] = {.count = 1, .reusable = true}, SHIFT(1141), - [2490] = {.count = 1, .reusable = true}, SHIFT(1143), - [2492] = {.count = 1, .reusable = true}, SHIFT(1144), - [2494] = {.count = 1, .reusable = true}, SHIFT(1145), - [2496] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), - [2498] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), - [2500] = {.count = 1, .reusable = false}, SHIFT(1146), - [2502] = {.count = 1, .reusable = true}, SHIFT(1146), - [2504] = {.count = 1, .reusable = true}, SHIFT(1147), - [2506] = {.count = 1, .reusable = true}, SHIFT(1148), - [2508] = {.count = 1, .reusable = false}, SHIFT(1149), - [2510] = {.count = 1, .reusable = true}, SHIFT(1150), - [2512] = {.count = 1, .reusable = true}, SHIFT(1151), - [2514] = {.count = 1, .reusable = true}, SHIFT(1152), - [2516] = {.count = 1, .reusable = true}, SHIFT(1153), - [2518] = {.count = 1, .reusable = true}, SHIFT(1154), - [2520] = {.count = 1, .reusable = true}, SHIFT(1156), - [2522] = {.count = 1, .reusable = true}, SHIFT(1157), - [2524] = {.count = 1, .reusable = true}, SHIFT(1158), - [2526] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 4), - [2528] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 4), - [2530] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(315), - [2533] = {.count = 1, .reusable = false}, SHIFT(1161), - [2535] = {.count = 1, .reusable = true}, SHIFT(1162), - [2537] = {.count = 1, .reusable = false}, SHIFT(1163), - [2539] = {.count = 1, .reusable = true}, SHIFT(1164), - [2541] = {.count = 1, .reusable = true}, SHIFT(1166), - [2543] = {.count = 1, .reusable = true}, SHIFT(1167), - [2545] = {.count = 1, .reusable = true}, SHIFT(1168), - [2547] = {.count = 1, .reusable = true}, SHIFT(1169), - [2549] = {.count = 1, .reusable = false}, SHIFT(1171), - [2551] = {.count = 1, .reusable = true}, SHIFT(1171), - [2553] = {.count = 1, .reusable = true}, SHIFT(1170), - [2555] = {.count = 1, .reusable = true}, SHIFT(1172), - [2557] = {.count = 1, .reusable = false}, SHIFT(1174), - [2559] = {.count = 1, .reusable = true}, SHIFT(1174), - [2561] = {.count = 1, .reusable = true}, SHIFT(1173), - [2563] = {.count = 1, .reusable = false}, SHIFT(1176), - [2565] = {.count = 1, .reusable = true}, SHIFT(1176), - [2567] = {.count = 1, .reusable = true}, SHIFT(1175), - [2569] = {.count = 1, .reusable = true}, SHIFT(1177), - [2571] = {.count = 1, .reusable = true}, SHIFT(1178), - [2573] = {.count = 1, .reusable = true}, SHIFT(1179), - [2575] = {.count = 1, .reusable = true}, SHIFT(1180), - [2577] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(337), - [2580] = {.count = 1, .reusable = false}, SHIFT(1182), - [2582] = {.count = 1, .reusable = true}, SHIFT(1183), - [2584] = {.count = 1, .reusable = false}, SHIFT(1184), - [2586] = {.count = 1, .reusable = true}, SHIFT(1185), - [2588] = {.count = 1, .reusable = true}, SHIFT(1187), - [2590] = {.count = 1, .reusable = true}, SHIFT(1188), - [2592] = {.count = 1, .reusable = true}, SHIFT(1189), - [2594] = {.count = 1, .reusable = true}, SHIFT(1190), - [2596] = {.count = 1, .reusable = false}, SHIFT(1192), - [2598] = {.count = 1, .reusable = true}, SHIFT(1192), - [2600] = {.count = 1, .reusable = true}, SHIFT(1191), - [2602] = {.count = 1, .reusable = true}, SHIFT(1193), - [2604] = {.count = 1, .reusable = false}, SHIFT(1195), - [2606] = {.count = 1, .reusable = true}, SHIFT(1195), - [2608] = {.count = 1, .reusable = true}, SHIFT(1194), - [2610] = {.count = 1, .reusable = false}, SHIFT(1197), - [2612] = {.count = 1, .reusable = true}, SHIFT(1197), - [2614] = {.count = 1, .reusable = true}, SHIFT(1196), - [2616] = {.count = 1, .reusable = true}, SHIFT(1198), - [2618] = {.count = 1, .reusable = true}, SHIFT(1199), - [2620] = {.count = 1, .reusable = true}, SHIFT(1200), - [2622] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(357), - [2625] = {.count = 1, .reusable = false}, SHIFT(1201), - [2627] = {.count = 1, .reusable = true}, SHIFT(1202), - [2629] = {.count = 1, .reusable = false}, SHIFT(1203), - [2631] = {.count = 1, .reusable = true}, SHIFT(1204), - [2633] = {.count = 1, .reusable = true}, SHIFT(1206), - [2635] = {.count = 1, .reusable = true}, SHIFT(1207), - [2637] = {.count = 1, .reusable = true}, SHIFT(1208), - [2639] = {.count = 1, .reusable = true}, SHIFT(1209), - [2641] = {.count = 1, .reusable = false}, SHIFT(1211), - [2643] = {.count = 1, .reusable = true}, SHIFT(1211), - [2645] = {.count = 1, .reusable = true}, SHIFT(1210), - [2647] = {.count = 1, .reusable = true}, SHIFT(1212), - [2649] = {.count = 1, .reusable = false}, SHIFT(1214), - [2651] = {.count = 1, .reusable = true}, SHIFT(1214), - [2653] = {.count = 1, .reusable = true}, SHIFT(1213), - [2655] = {.count = 1, .reusable = false}, SHIFT(1216), - [2657] = {.count = 1, .reusable = true}, SHIFT(1216), - [2659] = {.count = 1, .reusable = true}, SHIFT(1215), - [2661] = {.count = 1, .reusable = true}, SHIFT(1217), - [2663] = {.count = 1, .reusable = true}, SHIFT(1218), - [2665] = {.count = 1, .reusable = true}, SHIFT(1219), - [2667] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(377), - [2670] = {.count = 1, .reusable = false}, SHIFT(1220), - [2672] = {.count = 1, .reusable = true}, SHIFT(1221), - [2674] = {.count = 1, .reusable = false}, SHIFT(1222), - [2676] = {.count = 1, .reusable = true}, SHIFT(1223), - [2678] = {.count = 1, .reusable = true}, SHIFT(1225), - [2680] = {.count = 1, .reusable = true}, SHIFT(1226), - [2682] = {.count = 1, .reusable = true}, SHIFT(1227), - [2684] = {.count = 1, .reusable = true}, SHIFT(1228), - [2686] = {.count = 1, .reusable = false}, SHIFT(1230), - [2688] = {.count = 1, .reusable = true}, SHIFT(1230), - [2690] = {.count = 1, .reusable = true}, SHIFT(1229), - [2692] = {.count = 1, .reusable = true}, SHIFT(1231), - [2694] = {.count = 1, .reusable = false}, SHIFT(1233), - [2696] = {.count = 1, .reusable = true}, SHIFT(1233), - [2698] = {.count = 1, .reusable = true}, SHIFT(1232), - [2700] = {.count = 1, .reusable = false}, SHIFT(1235), - [2702] = {.count = 1, .reusable = true}, SHIFT(1235), - [2704] = {.count = 1, .reusable = true}, SHIFT(1234), - [2706] = {.count = 1, .reusable = true}, SHIFT(1236), - [2708] = {.count = 1, .reusable = true}, SHIFT(1237), - [2710] = {.count = 1, .reusable = true}, SHIFT(1238), - [2712] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), - [2714] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), - [2716] = {.count = 1, .reusable = true}, SHIFT(1239), - [2718] = {.count = 1, .reusable = false}, SHIFT(1240), - [2720] = {.count = 1, .reusable = true}, SHIFT(1241), - [2722] = {.count = 1, .reusable = true}, SHIFT(1243), - [2724] = {.count = 1, .reusable = true}, SHIFT(1244), - [2726] = {.count = 1, .reusable = true}, SHIFT(1245), - [2728] = {.count = 1, .reusable = true}, SHIFT(1246), - [2730] = {.count = 1, .reusable = false}, SHIFT(1248), - [2732] = {.count = 1, .reusable = true}, SHIFT(1248), - [2734] = {.count = 1, .reusable = true}, SHIFT(1247), - [2736] = {.count = 1, .reusable = true}, SHIFT(1249), - [2738] = {.count = 1, .reusable = false}, SHIFT(1251), - [2740] = {.count = 1, .reusable = true}, SHIFT(1251), - [2742] = {.count = 1, .reusable = true}, SHIFT(1250), - [2744] = {.count = 1, .reusable = false}, SHIFT(1253), - [2746] = {.count = 1, .reusable = true}, SHIFT(1253), - [2748] = {.count = 1, .reusable = true}, SHIFT(1252), - [2750] = {.count = 1, .reusable = true}, SHIFT(1254), - [2752] = {.count = 1, .reusable = true}, SHIFT(1255), - [2754] = {.count = 1, .reusable = true}, SHIFT(1256), - [2756] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), - [2758] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), - [2760] = {.count = 1, .reusable = true}, SHIFT(1257), - [2762] = {.count = 1, .reusable = true}, SHIFT(1258), - [2764] = {.count = 1, .reusable = true}, SHIFT(1259), - [2766] = {.count = 1, .reusable = true}, SHIFT(1260), - [2768] = {.count = 1, .reusable = true}, SHIFT(1261), - [2770] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), - [2772] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), - [2774] = {.count = 1, .reusable = true}, SHIFT(1262), - [2776] = {.count = 1, .reusable = true}, SHIFT(1263), - [2778] = {.count = 1, .reusable = false}, SHIFT(1265), - [2780] = {.count = 1, .reusable = false}, SHIFT(1266), - [2782] = {.count = 1, .reusable = true}, SHIFT(1268), - [2784] = {.count = 1, .reusable = true}, SHIFT(1269), - [2786] = {.count = 1, .reusable = false}, SHIFT(1270), - [2788] = {.count = 1, .reusable = false}, SHIFT(1268), - [2790] = {.count = 1, .reusable = true}, SHIFT(1271), - [2792] = {.count = 1, .reusable = true}, SHIFT(1272), - [2794] = {.count = 1, .reusable = true}, SHIFT(1273), - [2796] = {.count = 1, .reusable = true}, SHIFT(1274), - [2798] = {.count = 1, .reusable = false}, SHIFT(1275), - [2800] = {.count = 1, .reusable = false}, SHIFT(1273), - [2802] = {.count = 1, .reusable = true}, SHIFT(1283), - [2804] = {.count = 1, .reusable = false}, SHIFT(1285), - [2806] = {.count = 1, .reusable = false}, SHIFT(1286), - [2808] = {.count = 1, .reusable = true}, SHIFT(1287), - [2810] = {.count = 1, .reusable = true}, SHIFT(1288), - [2812] = {.count = 1, .reusable = false}, SHIFT(1290), - [2814] = {.count = 1, .reusable = true}, SHIFT(1290), - [2816] = {.count = 1, .reusable = true}, SHIFT(1289), - [2818] = {.count = 1, .reusable = true}, SHIFT(1291), - [2820] = {.count = 1, .reusable = true}, SHIFT(1292), - [2822] = {.count = 1, .reusable = false}, SHIFT(1293), - [2824] = {.count = 1, .reusable = false}, SHIFT(1292), - [2826] = {.count = 1, .reusable = true}, SHIFT(1295), - [2828] = {.count = 1, .reusable = false}, SHIFT(1297), - [2830] = {.count = 1, .reusable = true}, SHIFT(1297), - [2832] = {.count = 1, .reusable = true}, SHIFT(1296), - [2834] = {.count = 1, .reusable = true}, SHIFT(1298), - [2836] = {.count = 1, .reusable = false}, SHIFT(1300), - [2838] = {.count = 1, .reusable = true}, SHIFT(1300), - [2840] = {.count = 1, .reusable = true}, SHIFT(1299), - [2842] = {.count = 1, .reusable = true}, SHIFT(1301), - [2844] = {.count = 1, .reusable = false}, SHIFT(1302), - [2846] = {.count = 1, .reusable = true}, SHIFT(1302), - [2848] = {.count = 1, .reusable = true}, SHIFT(1303), - [2850] = {.count = 1, .reusable = true}, SHIFT(1304), - [2852] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [2854] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [2856] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), - [2858] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(847), - [2861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(417), - [2864] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(418), - [2867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(419), - [2870] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(420), - [2873] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(847), - [2876] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(421), - [2879] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(423), - [2882] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(424), - [2885] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(425), - [2888] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(420), - [2891] = {.count = 1, .reusable = false}, SHIFT(1305), - [2893] = {.count = 1, .reusable = true}, SHIFT(1306), - [2895] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [2897] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [2899] = {.count = 1, .reusable = true}, SHIFT(1308), - [2901] = {.count = 1, .reusable = true}, SHIFT(1309), - [2903] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [2905] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [2907] = {.count = 1, .reusable = true}, SHIFT(1310), - [2909] = {.count = 1, .reusable = true}, SHIFT(1311), - [2911] = {.count = 1, .reusable = true}, SHIFT(1312), - [2913] = {.count = 1, .reusable = true}, SHIFT(1313), - [2915] = {.count = 1, .reusable = false}, SHIFT(1314), - [2917] = {.count = 1, .reusable = true}, SHIFT(1314), - [2919] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [2921] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [2923] = {.count = 1, .reusable = true}, SHIFT(1315), - [2925] = {.count = 1, .reusable = false}, SHIFT(1316), - [2927] = {.count = 1, .reusable = true}, SHIFT(1316), - [2929] = {.count = 1, .reusable = true}, SHIFT(1319), - [2931] = {.count = 1, .reusable = false}, SHIFT(1321), - [2933] = {.count = 1, .reusable = false}, SHIFT(1325), - [2935] = {.count = 1, .reusable = false}, SHIFT(1329), - [2937] = {.count = 1, .reusable = true}, SHIFT(1329), - [2939] = {.count = 1, .reusable = true}, SHIFT(1330), - [2941] = {.count = 1, .reusable = false}, SHIFT(1331), - [2943] = {.count = 1, .reusable = true}, SHIFT(1331), - [2945] = {.count = 1, .reusable = true}, SHIFT(1332), - [2947] = {.count = 1, .reusable = true}, SHIFT(1333), - [2949] = {.count = 1, .reusable = true}, SHIFT(1334), - [2951] = {.count = 1, .reusable = true}, SHIFT(1336), - [2953] = {.count = 1, .reusable = false}, SHIFT(1337), - [2955] = {.count = 1, .reusable = true}, SHIFT(1337), - [2957] = {.count = 1, .reusable = true}, SHIFT(1339), - [2959] = {.count = 1, .reusable = false}, SHIFT(1339), - [2961] = {.count = 1, .reusable = false}, SHIFT(1340), - [2963] = {.count = 1, .reusable = true}, SHIFT(1340), - [2965] = {.count = 1, .reusable = true}, SHIFT(1341), - [2967] = {.count = 1, .reusable = false}, SHIFT(1342), - [2969] = {.count = 1, .reusable = true}, SHIFT(1342), - [2971] = {.count = 1, .reusable = false}, SHIFT(1343), - [2973] = {.count = 1, .reusable = true}, SHIFT(1343), - [2975] = {.count = 1, .reusable = true}, SHIFT(1344), - [2977] = {.count = 1, .reusable = true}, SHIFT(1346), - [2979] = {.count = 1, .reusable = true}, SHIFT(1347), - [2981] = {.count = 1, .reusable = true}, SHIFT(1348), - [2983] = {.count = 1, .reusable = true}, SHIFT(1349), - [2985] = {.count = 1, .reusable = true}, SHIFT(1350), - [2987] = {.count = 1, .reusable = false}, SHIFT(1352), - [2989] = {.count = 1, .reusable = false}, SHIFT(1353), - [2991] = {.count = 1, .reusable = true}, SHIFT(1354), - [2993] = {.count = 1, .reusable = true}, SHIFT(1355), - [2995] = {.count = 1, .reusable = false}, SHIFT(1357), - [2997] = {.count = 1, .reusable = true}, SHIFT(1357), - [2999] = {.count = 1, .reusable = true}, SHIFT(1356), - [3001] = {.count = 1, .reusable = true}, SHIFT(1358), - [3003] = {.count = 1, .reusable = true}, SHIFT(1359), - [3005] = {.count = 1, .reusable = false}, SHIFT(1360), - [3007] = {.count = 1, .reusable = false}, SHIFT(1359), - [3009] = {.count = 1, .reusable = true}, SHIFT(1362), - [3011] = {.count = 1, .reusable = false}, SHIFT(1364), - [3013] = {.count = 1, .reusable = true}, SHIFT(1364), - [3015] = {.count = 1, .reusable = true}, SHIFT(1363), - [3017] = {.count = 1, .reusable = true}, SHIFT(1365), - [3019] = {.count = 1, .reusable = false}, SHIFT(1367), - [3021] = {.count = 1, .reusable = true}, SHIFT(1367), - [3023] = {.count = 1, .reusable = true}, SHIFT(1366), - [3025] = {.count = 1, .reusable = true}, SHIFT(1368), - [3027] = {.count = 1, .reusable = true}, SHIFT(1369), - [3029] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(451), - [3032] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(452), - [3035] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(453), - [3038] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(454), - [3041] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(455), - [3044] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(456), - [3047] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(457), - [3050] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(458), - [3053] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(459), - [3056] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(460), - [3059] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(455), - [3062] = {.count = 1, .reusable = true}, SHIFT(1370), - [3064] = {.count = 1, .reusable = false}, SHIFT(1372), - [3066] = {.count = 1, .reusable = false}, SHIFT(1373), - [3068] = {.count = 1, .reusable = true}, SHIFT(1374), - [3070] = {.count = 1, .reusable = true}, SHIFT(1375), - [3072] = {.count = 1, .reusable = false}, SHIFT(1377), - [3074] = {.count = 1, .reusable = true}, SHIFT(1377), - [3076] = {.count = 1, .reusable = true}, SHIFT(1376), - [3078] = {.count = 1, .reusable = true}, SHIFT(1378), - [3080] = {.count = 1, .reusable = true}, SHIFT(1379), - [3082] = {.count = 1, .reusable = false}, SHIFT(1380), - [3084] = {.count = 1, .reusable = false}, SHIFT(1379), - [3086] = {.count = 1, .reusable = true}, SHIFT(1382), - [3088] = {.count = 1, .reusable = false}, SHIFT(1384), - [3090] = {.count = 1, .reusable = true}, SHIFT(1384), - [3092] = {.count = 1, .reusable = true}, SHIFT(1383), - [3094] = {.count = 1, .reusable = true}, SHIFT(1385), - [3096] = {.count = 1, .reusable = false}, SHIFT(1387), - [3098] = {.count = 1, .reusable = true}, SHIFT(1387), - [3100] = {.count = 1, .reusable = true}, SHIFT(1386), - [3102] = {.count = 1, .reusable = true}, SHIFT(1388), - [3104] = {.count = 1, .reusable = true}, SHIFT(1389), - [3106] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(463), - [3109] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(464), - [3112] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(465), - [3115] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(466), - [3118] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(467), - [3121] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(468), - [3124] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(469), - [3127] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(470), - [3130] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(471), - [3133] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(466), - [3136] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(473), - [3139] = {.count = 1, .reusable = false}, SHIFT(1390), - [3141] = {.count = 1, .reusable = true}, SHIFT(1391), - [3143] = {.count = 1, .reusable = false}, SHIFT(1392), - [3145] = {.count = 1, .reusable = true}, SHIFT(1393), - [3147] = {.count = 1, .reusable = true}, SHIFT(1395), - [3149] = {.count = 1, .reusable = true}, SHIFT(1396), - [3151] = {.count = 1, .reusable = true}, SHIFT(1397), - [3153] = {.count = 1, .reusable = true}, SHIFT(1398), - [3155] = {.count = 1, .reusable = false}, SHIFT(1400), - [3157] = {.count = 1, .reusable = true}, SHIFT(1400), - [3159] = {.count = 1, .reusable = true}, SHIFT(1399), - [3161] = {.count = 1, .reusable = true}, SHIFT(1401), - [3163] = {.count = 1, .reusable = false}, SHIFT(1403), - [3165] = {.count = 1, .reusable = true}, SHIFT(1403), - [3167] = {.count = 1, .reusable = true}, SHIFT(1402), - [3169] = {.count = 1, .reusable = false}, SHIFT(1405), - [3171] = {.count = 1, .reusable = true}, SHIFT(1405), - [3173] = {.count = 1, .reusable = true}, SHIFT(1404), - [3175] = {.count = 1, .reusable = true}, SHIFT(1406), - [3177] = {.count = 1, .reusable = true}, SHIFT(1407), - [3179] = {.count = 1, .reusable = true}, SHIFT(1408), - [3181] = {.count = 1, .reusable = true}, SHIFT(1410), - [3183] = {.count = 1, .reusable = true}, SHIFT(1411), - [3185] = {.count = 1, .reusable = true}, SHIFT(1412), - [3187] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(498), - [3190] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(500), - [3193] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(500), - [3196] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(501), - [3199] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(501), - [3202] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(502), - [3205] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(499), - [3208] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(503), - [3211] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(155), - [3214] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(156), - [3217] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(504), - [3220] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(158), - [3223] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(159), - [3226] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(160), - [3229] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(161), - [3232] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(504), - [3235] = {.count = 1, .reusable = true}, SHIFT(1419), - [3237] = {.count = 1, .reusable = true}, SHIFT(1420), - [3239] = {.count = 1, .reusable = false}, SHIFT(1421), - [3241] = {.count = 1, .reusable = true}, SHIFT(1421), - [3243] = {.count = 1, .reusable = true}, SHIFT(1422), - [3245] = {.count = 1, .reusable = false}, SHIFT(1423), - [3247] = {.count = 1, .reusable = true}, SHIFT(1423), - [3249] = {.count = 1, .reusable = true}, SHIFT(1424), - [3251] = {.count = 1, .reusable = true}, SHIFT(1426), - [3253] = {.count = 1, .reusable = true}, SHIFT(1427), - [3255] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(514), - [3258] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(515), - [3261] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(516), - [3264] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(516), - [3267] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(519), - [3270] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(520), - [3273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(520), - [3276] = {.count = 1, .reusable = true}, SHIFT(1431), - [3278] = {.count = 1, .reusable = true}, SHIFT(1432), - [3280] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(526), - [3283] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(528), - [3286] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(528), - [3289] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(529), - [3292] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(527), - [3295] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(530), - [3298] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(531), - [3301] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(531), - [3304] = {.count = 1, .reusable = true}, SHIFT(1436), - [3306] = {.count = 1, .reusable = true}, SHIFT(1437), - [3308] = {.count = 1, .reusable = false}, SHIFT(1439), - [3310] = {.count = 1, .reusable = true}, SHIFT(1439), - [3312] = {.count = 1, .reusable = true}, SHIFT(1438), - [3314] = {.count = 1, .reusable = true}, SHIFT(1440), - [3316] = {.count = 1, .reusable = true}, SHIFT(1441), - [3318] = {.count = 1, .reusable = false}, SHIFT(1442), - [3320] = {.count = 1, .reusable = false}, SHIFT(1441), - [3322] = {.count = 1, .reusable = true}, SHIFT(1444), - [3324] = {.count = 1, .reusable = false}, SHIFT(1446), - [3326] = {.count = 1, .reusable = true}, SHIFT(1446), - [3328] = {.count = 1, .reusable = true}, SHIFT(1445), - [3330] = {.count = 1, .reusable = true}, SHIFT(1447), - [3332] = {.count = 1, .reusable = false}, SHIFT(1449), - [3334] = {.count = 1, .reusable = true}, SHIFT(1449), - [3336] = {.count = 1, .reusable = true}, SHIFT(1448), - [3338] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), - [3340] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), - [3342] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(999), - [3345] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [3347] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(542), - [3350] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(543), - [3353] = {.count = 1, .reusable = false}, REDUCE(sym_command, 4), - [3355] = {.count = 1, .reusable = true}, REDUCE(sym_command, 4), - [3357] = {.count = 1, .reusable = true}, SHIFT(1452), - [3359] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [3361] = {.count = 1, .reusable = true}, SHIFT(1453), - [3363] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), - [3365] = {.count = 1, .reusable = true}, SHIFT(1454), - [3367] = {.count = 1, .reusable = false}, SHIFT(1456), - [3369] = {.count = 1, .reusable = false}, SHIFT(1457), - [3371] = {.count = 1, .reusable = true}, SHIFT(1458), - [3373] = {.count = 1, .reusable = true}, SHIFT(1459), - [3375] = {.count = 1, .reusable = false}, SHIFT(1461), - [3377] = {.count = 1, .reusable = true}, SHIFT(1461), - [3379] = {.count = 1, .reusable = true}, SHIFT(1460), - [3381] = {.count = 1, .reusable = true}, SHIFT(1462), - [3383] = {.count = 1, .reusable = true}, SHIFT(1463), - [3385] = {.count = 1, .reusable = false}, SHIFT(1464), - [3387] = {.count = 1, .reusable = false}, SHIFT(1463), - [3389] = {.count = 1, .reusable = true}, SHIFT(1466), - [3391] = {.count = 1, .reusable = false}, SHIFT(1468), - [3393] = {.count = 1, .reusable = true}, SHIFT(1468), - [3395] = {.count = 1, .reusable = true}, SHIFT(1467), - [3397] = {.count = 1, .reusable = true}, SHIFT(1469), - [3399] = {.count = 1, .reusable = false}, SHIFT(1471), - [3401] = {.count = 1, .reusable = true}, SHIFT(1471), - [3403] = {.count = 1, .reusable = true}, SHIFT(1470), - [3405] = {.count = 1, .reusable = true}, SHIFT(1472), - [3407] = {.count = 1, .reusable = true}, SHIFT(1473), - [3409] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), - [3411] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), - [3413] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3415] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(568), - [3418] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(569), - [3421] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(570), - [3424] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(571), - [3427] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(572), - [3430] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(573), - [3433] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(574), - [3436] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(575), - [3439] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(577), - [3442] = {.count = 1, .reusable = false}, SHIFT(1474), - [3444] = {.count = 1, .reusable = true}, SHIFT(1475), - [3446] = {.count = 1, .reusable = false}, SHIFT(1476), - [3448] = {.count = 1, .reusable = true}, SHIFT(1477), - [3450] = {.count = 1, .reusable = true}, SHIFT(1479), - [3452] = {.count = 1, .reusable = true}, SHIFT(1480), - [3454] = {.count = 1, .reusable = true}, SHIFT(1481), - [3456] = {.count = 1, .reusable = true}, SHIFT(1482), - [3458] = {.count = 1, .reusable = false}, SHIFT(1484), - [3460] = {.count = 1, .reusable = true}, SHIFT(1484), - [3462] = {.count = 1, .reusable = true}, SHIFT(1483), - [3464] = {.count = 1, .reusable = true}, SHIFT(1485), - [3466] = {.count = 1, .reusable = false}, SHIFT(1487), - [3468] = {.count = 1, .reusable = true}, SHIFT(1487), - [3470] = {.count = 1, .reusable = true}, SHIFT(1486), - [3472] = {.count = 1, .reusable = false}, SHIFT(1489), - [3474] = {.count = 1, .reusable = true}, SHIFT(1489), - [3476] = {.count = 1, .reusable = true}, SHIFT(1488), - [3478] = {.count = 1, .reusable = true}, SHIFT(1490), - [3480] = {.count = 1, .reusable = true}, SHIFT(1491), - [3482] = {.count = 1, .reusable = true}, SHIFT(1492), - [3484] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3486] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(596), - [3489] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(43), - [3492] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(44), - [3495] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(597), - [3498] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(46), - [3501] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(47), - [3504] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(48), - [3507] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(49), - [3510] = {.count = 1, .reusable = false}, SHIFT(1495), - [3512] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), - [3514] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), - [3516] = {.count = 1, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), - [3518] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), - [3520] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), - [3522] = {.count = 1, .reusable = true}, SHIFT(1496), - [3524] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), - [3526] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [3528] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [3530] = {.count = 1, .reusable = true}, SHIFT(1498), - [3532] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3534] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(606), - [3537] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [3539] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [3541] = {.count = 1, .reusable = true}, SHIFT(1500), - [3543] = {.count = 1, .reusable = true}, SHIFT(1501), - [3545] = {.count = 1, .reusable = true}, SHIFT(1504), - [3547] = {.count = 1, .reusable = true}, SHIFT(1506), - [3549] = {.count = 1, .reusable = false}, SHIFT(1509), - [3551] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), - [3553] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), - [3555] = {.count = 1, .reusable = true}, SHIFT(1511), - [3557] = {.count = 1, .reusable = false}, SHIFT(1513), - [3559] = {.count = 1, .reusable = true}, SHIFT(1515), - [3561] = {.count = 1, .reusable = true}, SHIFT(1516), - [3563] = {.count = 1, .reusable = true}, SHIFT(1517), - [3565] = {.count = 1, .reusable = false}, SHIFT(1518), - [3567] = {.count = 1, .reusable = true}, SHIFT(1518), - [3569] = {.count = 1, .reusable = false}, SHIFT(1519), - [3571] = {.count = 1, .reusable = true}, SHIFT(1520), - [3573] = {.count = 1, .reusable = true}, SHIFT(1522), - [3575] = {.count = 1, .reusable = true}, SHIFT(1523), - [3577] = {.count = 1, .reusable = true}, SHIFT(1524), - [3579] = {.count = 1, .reusable = true}, SHIFT(1525), - [3581] = {.count = 1, .reusable = true}, SHIFT(1526), - [3583] = {.count = 1, .reusable = true}, SHIFT(1527), - [3585] = {.count = 1, .reusable = false}, SHIFT(1528), - [3587] = {.count = 1, .reusable = true}, SHIFT(1528), - [3589] = {.count = 1, .reusable = true}, SHIFT(1529), - [3591] = {.count = 1, .reusable = false}, SHIFT(1530), - [3593] = {.count = 1, .reusable = true}, SHIFT(1530), - [3595] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), - [3597] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), - [3599] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [3601] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [3603] = {.count = 1, .reusable = true}, SHIFT(1532), - [3605] = {.count = 1, .reusable = true}, SHIFT(1533), - [3607] = {.count = 1, .reusable = false}, SHIFT(1538), - [3609] = {.count = 1, .reusable = true}, SHIFT(1538), - [3611] = {.count = 1, .reusable = true}, SHIFT(1539), - [3613] = {.count = 1, .reusable = true}, SHIFT(1540), - [3615] = {.count = 1, .reusable = false}, SHIFT(1541), - [3617] = {.count = 1, .reusable = true}, SHIFT(1541), - [3619] = {.count = 1, .reusable = true}, SHIFT(1542), - [3621] = {.count = 1, .reusable = true}, SHIFT(1543), - [3623] = {.count = 1, .reusable = true}, SHIFT(1544), - [3625] = {.count = 1, .reusable = true}, SHIFT(1545), - [3627] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), - [3629] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), - [3631] = {.count = 1, .reusable = true}, SHIFT(1548), - [3633] = {.count = 1, .reusable = true}, SHIFT(1549), - [3635] = {.count = 1, .reusable = true}, SHIFT(1550), - [3637] = {.count = 1, .reusable = true}, SHIFT(1551), - [3639] = {.count = 1, .reusable = false}, SHIFT(1552), - [3641] = {.count = 1, .reusable = true}, SHIFT(1552), - [3643] = {.count = 1, .reusable = false}, SHIFT(1553), - [3645] = {.count = 1, .reusable = true}, SHIFT(1554), - [3647] = {.count = 1, .reusable = true}, SHIFT(1556), - [3649] = {.count = 1, .reusable = true}, SHIFT(1557), - [3651] = {.count = 1, .reusable = true}, SHIFT(1558), - [3653] = {.count = 1, .reusable = true}, SHIFT(1559), - [3655] = {.count = 1, .reusable = true}, SHIFT(1560), - [3657] = {.count = 1, .reusable = true}, SHIFT(1561), - [3659] = {.count = 1, .reusable = false}, SHIFT(1562), - [3661] = {.count = 1, .reusable = true}, SHIFT(1562), - [3663] = {.count = 1, .reusable = true}, SHIFT(1563), - [3665] = {.count = 1, .reusable = false}, SHIFT(1564), - [3667] = {.count = 1, .reusable = true}, SHIFT(1564), - [3669] = {.count = 1, .reusable = true}, SHIFT(1565), - [3671] = {.count = 1, .reusable = true}, SHIFT(1566), - [3673] = {.count = 1, .reusable = true}, SHIFT(1568), - [3675] = {.count = 1, .reusable = false}, SHIFT(1570), - [3677] = {.count = 1, .reusable = false}, SHIFT(1571), - [3679] = {.count = 1, .reusable = true}, SHIFT(1573), - [3681] = {.count = 1, .reusable = true}, SHIFT(1574), - [3683] = {.count = 1, .reusable = false}, SHIFT(1575), - [3685] = {.count = 1, .reusable = false}, SHIFT(1573), - [3687] = {.count = 1, .reusable = true}, SHIFT(1576), - [3689] = {.count = 1, .reusable = true}, SHIFT(1577), - [3691] = {.count = 1, .reusable = true}, SHIFT(1578), - [3693] = {.count = 1, .reusable = false}, SHIFT(1579), - [3695] = {.count = 1, .reusable = false}, SHIFT(1577), - [3697] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(702), - [3700] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(703), - [3703] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(704), - [3706] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(705), - [3709] = {.count = 1, .reusable = true}, SHIFT(1587), - [3711] = {.count = 1, .reusable = true}, SHIFT(1588), - [3713] = {.count = 1, .reusable = true}, SHIFT(1589), - [3715] = {.count = 1, .reusable = false}, SHIFT(1590), - [3717] = {.count = 1, .reusable = true}, SHIFT(1590), - [3719] = {.count = 1, .reusable = false}, SHIFT(1591), - [3721] = {.count = 1, .reusable = true}, SHIFT(1592), - [3723] = {.count = 1, .reusable = true}, SHIFT(1594), - [3725] = {.count = 1, .reusable = true}, SHIFT(1595), - [3727] = {.count = 1, .reusable = true}, SHIFT(1596), - [3729] = {.count = 1, .reusable = true}, SHIFT(1597), - [3731] = {.count = 1, .reusable = true}, SHIFT(1598), - [3733] = {.count = 1, .reusable = true}, SHIFT(1599), - [3735] = {.count = 1, .reusable = false}, SHIFT(1600), - [3737] = {.count = 1, .reusable = true}, SHIFT(1600), - [3739] = {.count = 1, .reusable = true}, SHIFT(1601), - [3741] = {.count = 1, .reusable = false}, SHIFT(1602), - [3743] = {.count = 1, .reusable = true}, SHIFT(1602), - [3745] = {.count = 1, .reusable = true}, SHIFT(1603), - [3747] = {.count = 1, .reusable = true}, SHIFT(1604), - [3749] = {.count = 1, .reusable = true}, SHIFT(1605), - [3751] = {.count = 1, .reusable = true}, SHIFT(1606), - [3753] = {.count = 1, .reusable = false}, SHIFT(1607), - [3755] = {.count = 1, .reusable = true}, SHIFT(1607), - [3757] = {.count = 1, .reusable = false}, SHIFT(1608), - [3759] = {.count = 1, .reusable = true}, SHIFT(1609), - [3761] = {.count = 1, .reusable = true}, SHIFT(1611), - [3763] = {.count = 1, .reusable = true}, SHIFT(1612), - [3765] = {.count = 1, .reusable = true}, SHIFT(1613), - [3767] = {.count = 1, .reusable = true}, SHIFT(1614), - [3769] = {.count = 1, .reusable = true}, SHIFT(1615), - [3771] = {.count = 1, .reusable = true}, SHIFT(1616), - [3773] = {.count = 1, .reusable = false}, SHIFT(1617), - [3775] = {.count = 1, .reusable = true}, SHIFT(1617), - [3777] = {.count = 1, .reusable = true}, SHIFT(1618), - [3779] = {.count = 1, .reusable = false}, SHIFT(1619), - [3781] = {.count = 1, .reusable = true}, SHIFT(1619), - [3783] = {.count = 1, .reusable = true}, SHIFT(1620), - [3785] = {.count = 1, .reusable = true}, SHIFT(1621), - [3787] = {.count = 1, .reusable = true}, SHIFT(1622), - [3789] = {.count = 1, .reusable = false}, SHIFT(1623), - [3791] = {.count = 1, .reusable = true}, SHIFT(1623), - [3793] = {.count = 1, .reusable = false}, SHIFT(1624), - [3795] = {.count = 1, .reusable = true}, SHIFT(1625), - [3797] = {.count = 1, .reusable = true}, SHIFT(1627), - [3799] = {.count = 1, .reusable = true}, SHIFT(1628), - [3801] = {.count = 1, .reusable = true}, SHIFT(1629), - [3803] = {.count = 1, .reusable = true}, SHIFT(1630), - [3805] = {.count = 1, .reusable = true}, SHIFT(1631), - [3807] = {.count = 1, .reusable = true}, SHIFT(1632), - [3809] = {.count = 1, .reusable = false}, SHIFT(1633), - [3811] = {.count = 1, .reusable = true}, SHIFT(1633), - [3813] = {.count = 1, .reusable = true}, SHIFT(1634), - [3815] = {.count = 1, .reusable = false}, SHIFT(1635), - [3817] = {.count = 1, .reusable = true}, SHIFT(1635), - [3819] = {.count = 1, .reusable = true}, SHIFT(1636), - [3821] = {.count = 1, .reusable = true}, SHIFT(1637), - [3823] = {.count = 1, .reusable = true}, SHIFT(1638), - [3825] = {.count = 1, .reusable = false}, SHIFT(1639), - [3827] = {.count = 1, .reusable = true}, SHIFT(1639), - [3829] = {.count = 1, .reusable = false}, SHIFT(1640), - [3831] = {.count = 1, .reusable = true}, SHIFT(1641), - [3833] = {.count = 1, .reusable = true}, SHIFT(1643), - [3835] = {.count = 1, .reusable = true}, SHIFT(1644), - [3837] = {.count = 1, .reusable = true}, SHIFT(1645), - [3839] = {.count = 1, .reusable = true}, SHIFT(1646), - [3841] = {.count = 1, .reusable = true}, SHIFT(1647), - [3843] = {.count = 1, .reusable = true}, SHIFT(1648), - [3845] = {.count = 1, .reusable = false}, SHIFT(1649), - [3847] = {.count = 1, .reusable = true}, SHIFT(1649), - [3849] = {.count = 1, .reusable = true}, SHIFT(1650), - [3851] = {.count = 1, .reusable = false}, SHIFT(1651), - [3853] = {.count = 1, .reusable = true}, SHIFT(1651), - [3855] = {.count = 1, .reusable = true}, SHIFT(1652), - [3857] = {.count = 1, .reusable = true}, SHIFT(1653), - [3859] = {.count = 1, .reusable = true}, SHIFT(1654), - [3861] = {.count = 1, .reusable = false}, SHIFT(1655), - [3863] = {.count = 1, .reusable = true}, SHIFT(1655), - [3865] = {.count = 1, .reusable = false}, SHIFT(1656), - [3867] = {.count = 1, .reusable = true}, SHIFT(1657), - [3869] = {.count = 1, .reusable = true}, SHIFT(1659), - [3871] = {.count = 1, .reusable = true}, SHIFT(1660), - [3873] = {.count = 1, .reusable = true}, SHIFT(1661), - [3875] = {.count = 1, .reusable = true}, SHIFT(1662), - [3877] = {.count = 1, .reusable = true}, SHIFT(1663), - [3879] = {.count = 1, .reusable = true}, SHIFT(1664), - [3881] = {.count = 1, .reusable = false}, SHIFT(1665), - [3883] = {.count = 1, .reusable = true}, SHIFT(1665), - [3885] = {.count = 1, .reusable = true}, SHIFT(1666), - [3887] = {.count = 1, .reusable = false}, SHIFT(1667), - [3889] = {.count = 1, .reusable = true}, SHIFT(1667), - [3891] = {.count = 1, .reusable = true}, SHIFT(1668), - [3893] = {.count = 1, .reusable = true}, SHIFT(1669), - [3895] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [3897] = {.count = 1, .reusable = true}, SHIFT(1670), - [3899] = {.count = 1, .reusable = true}, SHIFT(1671), - [3901] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), - [3903] = {.count = 1, .reusable = true}, SHIFT(1672), - [3905] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [3907] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [3909] = {.count = 1, .reusable = false}, SHIFT(1674), - [3911] = {.count = 1, .reusable = false}, SHIFT(1675), - [3913] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), - [3915] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), - [3917] = {.count = 1, .reusable = true}, SHIFT(1676), - [3919] = {.count = 1, .reusable = true}, SHIFT(1677), - [3921] = {.count = 1, .reusable = false}, SHIFT(1679), - [3923] = {.count = 1, .reusable = true}, SHIFT(1679), - [3925] = {.count = 1, .reusable = true}, SHIFT(1678), - [3927] = {.count = 1, .reusable = true}, SHIFT(1680), - [3929] = {.count = 1, .reusable = true}, SHIFT(1681), - [3931] = {.count = 1, .reusable = false}, SHIFT(1682), - [3933] = {.count = 1, .reusable = false}, SHIFT(1681), - [3935] = {.count = 1, .reusable = true}, SHIFT(1684), - [3937] = {.count = 1, .reusable = false}, SHIFT(1686), - [3939] = {.count = 1, .reusable = true}, SHIFT(1686), - [3941] = {.count = 1, .reusable = true}, SHIFT(1685), - [3943] = {.count = 1, .reusable = true}, SHIFT(1687), - [3945] = {.count = 1, .reusable = false}, SHIFT(1689), - [3947] = {.count = 1, .reusable = true}, SHIFT(1689), - [3949] = {.count = 1, .reusable = true}, SHIFT(1688), - [3951] = {.count = 1, .reusable = true}, SHIFT(1690), - [3953] = {.count = 1, .reusable = true}, SHIFT(1691), - [3955] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(826), - [3958] = {.count = 1, .reusable = false}, SHIFT(1692), - [3960] = {.count = 1, .reusable = true}, SHIFT(1693), - [3962] = {.count = 1, .reusable = false}, SHIFT(1694), - [3964] = {.count = 1, .reusable = true}, SHIFT(1695), - [3966] = {.count = 1, .reusable = true}, SHIFT(1697), - [3968] = {.count = 1, .reusable = true}, SHIFT(1698), - [3970] = {.count = 1, .reusable = true}, SHIFT(1699), - [3972] = {.count = 1, .reusable = true}, SHIFT(1700), - [3974] = {.count = 1, .reusable = false}, SHIFT(1702), - [3976] = {.count = 1, .reusable = true}, SHIFT(1702), - [3978] = {.count = 1, .reusable = true}, SHIFT(1701), - [3980] = {.count = 1, .reusable = true}, SHIFT(1703), - [3982] = {.count = 1, .reusable = false}, SHIFT(1705), - [3984] = {.count = 1, .reusable = true}, SHIFT(1705), - [3986] = {.count = 1, .reusable = true}, SHIFT(1704), - [3988] = {.count = 1, .reusable = false}, SHIFT(1707), - [3990] = {.count = 1, .reusable = true}, SHIFT(1707), - [3992] = {.count = 1, .reusable = true}, SHIFT(1706), - [3994] = {.count = 1, .reusable = true}, SHIFT(1708), - [3996] = {.count = 1, .reusable = true}, SHIFT(1709), - [3998] = {.count = 1, .reusable = true}, SHIFT(1710), - [4000] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [4002] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [4004] = {.count = 1, .reusable = true}, SHIFT(1711), - [4006] = {.count = 1, .reusable = true}, SHIFT(1712), - [4008] = {.count = 1, .reusable = true}, SHIFT(1713), - [4010] = {.count = 1, .reusable = true}, SHIFT(1714), - [4012] = {.count = 1, .reusable = false}, SHIFT(1715), - [4014] = {.count = 1, .reusable = true}, SHIFT(1715), - [4016] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4018] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4020] = {.count = 1, .reusable = true}, SHIFT(1716), - [4022] = {.count = 1, .reusable = false}, SHIFT(1717), - [4024] = {.count = 1, .reusable = true}, SHIFT(1717), - [4026] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4028] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4030] = {.count = 1, .reusable = true}, SHIFT(1718), - [4032] = {.count = 1, .reusable = false}, SHIFT(1719), - [4034] = {.count = 1, .reusable = true}, SHIFT(1719), - [4036] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), - [4038] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), - [4040] = {.count = 1, .reusable = true}, SHIFT(1720), - [4042] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [4044] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [4046] = {.count = 1, .reusable = true}, SHIFT(1721), - [4048] = {.count = 1, .reusable = false}, SHIFT(1723), - [4050] = {.count = 1, .reusable = true}, SHIFT(1723), - [4052] = {.count = 1, .reusable = false}, SHIFT(1724), - [4054] = {.count = 1, .reusable = false}, SHIFT(1726), - [4056] = {.count = 1, .reusable = true}, SHIFT(1728), - [4058] = {.count = 1, .reusable = false}, SHIFT(1728), - [4060] = {.count = 1, .reusable = false}, SHIFT(1731), - [4062] = {.count = 1, .reusable = false}, SHIFT(1734), - [4064] = {.count = 1, .reusable = true}, SHIFT(1734), - [4066] = {.count = 1, .reusable = false}, SHIFT(1735), - [4068] = {.count = 1, .reusable = false}, SHIFT(1738), - [4070] = {.count = 1, .reusable = true}, SHIFT(1738), - [4072] = {.count = 1, .reusable = true}, SHIFT(1740), - [4074] = {.count = 1, .reusable = false}, SHIFT(1741), - [4076] = {.count = 1, .reusable = true}, SHIFT(1741), - [4078] = {.count = 1, .reusable = true}, SHIFT(1742), - [4080] = {.count = 1, .reusable = true}, SHIFT(1743), - [4082] = {.count = 1, .reusable = true}, SHIFT(1745), - [4084] = {.count = 1, .reusable = false}, SHIFT(1746), - [4086] = {.count = 1, .reusable = true}, SHIFT(1746), - [4088] = {.count = 1, .reusable = true}, SHIFT(1747), - [4090] = {.count = 1, .reusable = true}, SHIFT(1748), - [4092] = {.count = 1, .reusable = false}, SHIFT(1749), - [4094] = {.count = 1, .reusable = true}, SHIFT(1750), - [4096] = {.count = 1, .reusable = true}, SHIFT(1751), - [4098] = {.count = 1, .reusable = true}, SHIFT(1752), - [4100] = {.count = 1, .reusable = true}, SHIFT(1753), - [4102] = {.count = 1, .reusable = true}, SHIFT(1754), - [4104] = {.count = 1, .reusable = true}, SHIFT(1756), - [4106] = {.count = 1, .reusable = true}, SHIFT(1757), - [4108] = {.count = 1, .reusable = true}, SHIFT(1758), - [4110] = {.count = 1, .reusable = true}, SHIFT(1761), - [4112] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(880), - [4115] = {.count = 1, .reusable = false}, SHIFT(1763), - [4117] = {.count = 1, .reusable = true}, SHIFT(1764), - [4119] = {.count = 1, .reusable = false}, SHIFT(1765), - [4121] = {.count = 1, .reusable = true}, SHIFT(1766), - [4123] = {.count = 1, .reusable = true}, SHIFT(1768), - [4125] = {.count = 1, .reusable = true}, SHIFT(1769), - [4127] = {.count = 1, .reusable = true}, SHIFT(1770), - [4129] = {.count = 1, .reusable = true}, SHIFT(1771), - [4131] = {.count = 1, .reusable = false}, SHIFT(1773), - [4133] = {.count = 1, .reusable = true}, SHIFT(1773), - [4135] = {.count = 1, .reusable = true}, SHIFT(1772), - [4137] = {.count = 1, .reusable = true}, SHIFT(1774), - [4139] = {.count = 1, .reusable = false}, SHIFT(1776), - [4141] = {.count = 1, .reusable = true}, SHIFT(1776), - [4143] = {.count = 1, .reusable = true}, SHIFT(1775), - [4145] = {.count = 1, .reusable = false}, SHIFT(1778), - [4147] = {.count = 1, .reusable = true}, SHIFT(1778), - [4149] = {.count = 1, .reusable = true}, SHIFT(1777), - [4151] = {.count = 1, .reusable = true}, SHIFT(1779), - [4153] = {.count = 1, .reusable = true}, SHIFT(1780), - [4155] = {.count = 1, .reusable = true}, SHIFT(1781), - [4157] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(900), - [4160] = {.count = 1, .reusable = false}, SHIFT(1782), - [4162] = {.count = 1, .reusable = true}, SHIFT(1783), - [4164] = {.count = 1, .reusable = false}, SHIFT(1784), - [4166] = {.count = 1, .reusable = true}, SHIFT(1785), - [4168] = {.count = 1, .reusable = true}, SHIFT(1787), - [4170] = {.count = 1, .reusable = true}, SHIFT(1788), - [4172] = {.count = 1, .reusable = true}, SHIFT(1789), - [4174] = {.count = 1, .reusable = true}, SHIFT(1790), - [4176] = {.count = 1, .reusable = false}, SHIFT(1792), - [4178] = {.count = 1, .reusable = true}, SHIFT(1792), - [4180] = {.count = 1, .reusable = true}, SHIFT(1791), - [4182] = {.count = 1, .reusable = true}, SHIFT(1793), - [4184] = {.count = 1, .reusable = false}, SHIFT(1795), - [4186] = {.count = 1, .reusable = true}, SHIFT(1795), - [4188] = {.count = 1, .reusable = true}, SHIFT(1794), - [4190] = {.count = 1, .reusable = false}, SHIFT(1797), - [4192] = {.count = 1, .reusable = true}, SHIFT(1797), - [4194] = {.count = 1, .reusable = true}, SHIFT(1796), - [4196] = {.count = 1, .reusable = true}, SHIFT(1798), - [4198] = {.count = 1, .reusable = true}, SHIFT(1799), - [4200] = {.count = 1, .reusable = true}, SHIFT(1800), - [4202] = {.count = 1, .reusable = true}, SHIFT(1801), - [4204] = {.count = 1, .reusable = true}, SHIFT(1802), - [4206] = {.count = 1, .reusable = true}, SHIFT(1803), - [4208] = {.count = 1, .reusable = false}, SHIFT(1804), - [4210] = {.count = 1, .reusable = true}, SHIFT(1804), - [4212] = {.count = 1, .reusable = false}, SHIFT(1805), - [4214] = {.count = 1, .reusable = true}, SHIFT(1806), - [4216] = {.count = 1, .reusable = true}, SHIFT(1808), - [4218] = {.count = 1, .reusable = true}, SHIFT(1809), - [4220] = {.count = 1, .reusable = true}, SHIFT(1810), - [4222] = {.count = 1, .reusable = true}, SHIFT(1811), - [4224] = {.count = 1, .reusable = true}, SHIFT(1812), - [4226] = {.count = 1, .reusable = true}, SHIFT(1813), - [4228] = {.count = 1, .reusable = false}, SHIFT(1814), - [4230] = {.count = 1, .reusable = true}, SHIFT(1814), - [4232] = {.count = 1, .reusable = true}, SHIFT(1815), - [4234] = {.count = 1, .reusable = false}, SHIFT(1816), - [4236] = {.count = 1, .reusable = true}, SHIFT(1816), - [4238] = {.count = 1, .reusable = false}, SHIFT(1822), - [4240] = {.count = 1, .reusable = true}, SHIFT(1822), - [4242] = {.count = 1, .reusable = true}, SHIFT(1823), - [4244] = {.count = 1, .reusable = true}, SHIFT(1824), - [4246] = {.count = 1, .reusable = false}, SHIFT(1825), - [4248] = {.count = 1, .reusable = true}, SHIFT(1825), - [4250] = {.count = 1, .reusable = true}, SHIFT(1826), - [4252] = {.count = 1, .reusable = true}, SHIFT(1827), - [4254] = {.count = 1, .reusable = true}, SHIFT(1828), - [4256] = {.count = 1, .reusable = true}, SHIFT(1829), - [4258] = {.count = 1, .reusable = true}, SHIFT(1832), - [4260] = {.count = 1, .reusable = false}, SHIFT(1833), - [4262] = {.count = 1, .reusable = true}, SHIFT(1834), - [4264] = {.count = 1, .reusable = true}, SHIFT(1836), - [4266] = {.count = 1, .reusable = true}, SHIFT(1837), - [4268] = {.count = 1, .reusable = true}, SHIFT(1838), - [4270] = {.count = 1, .reusable = true}, SHIFT(1839), - [4272] = {.count = 1, .reusable = false}, SHIFT(1841), - [4274] = {.count = 1, .reusable = true}, SHIFT(1841), - [4276] = {.count = 1, .reusable = true}, SHIFT(1840), - [4278] = {.count = 1, .reusable = true}, SHIFT(1842), - [4280] = {.count = 1, .reusable = false}, SHIFT(1844), - [4282] = {.count = 1, .reusable = true}, SHIFT(1844), - [4284] = {.count = 1, .reusable = true}, SHIFT(1843), - [4286] = {.count = 1, .reusable = false}, SHIFT(1846), - [4288] = {.count = 1, .reusable = true}, SHIFT(1846), - [4290] = {.count = 1, .reusable = true}, SHIFT(1845), - [4292] = {.count = 1, .reusable = true}, SHIFT(1847), - [4294] = {.count = 1, .reusable = true}, SHIFT(1848), - [4296] = {.count = 1, .reusable = true}, SHIFT(1849), - [4298] = {.count = 1, .reusable = false}, REDUCE(sym_command, 5), - [4300] = {.count = 1, .reusable = true}, REDUCE(sym_command, 5), - [4302] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [4304] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), - [4306] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1011), - [4309] = {.count = 1, .reusable = false}, SHIFT(1850), - [4311] = {.count = 1, .reusable = true}, SHIFT(1851), - [4313] = {.count = 1, .reusable = false}, SHIFT(1852), - [4315] = {.count = 1, .reusable = true}, SHIFT(1853), - [4317] = {.count = 1, .reusable = true}, SHIFT(1855), - [4319] = {.count = 1, .reusable = true}, SHIFT(1856), - [4321] = {.count = 1, .reusable = true}, SHIFT(1857), - [4323] = {.count = 1, .reusable = true}, SHIFT(1858), - [4325] = {.count = 1, .reusable = false}, SHIFT(1860), - [4327] = {.count = 1, .reusable = true}, SHIFT(1860), - [4329] = {.count = 1, .reusable = true}, SHIFT(1859), - [4331] = {.count = 1, .reusable = true}, SHIFT(1861), - [4333] = {.count = 1, .reusable = false}, SHIFT(1863), - [4335] = {.count = 1, .reusable = true}, SHIFT(1863), - [4337] = {.count = 1, .reusable = true}, SHIFT(1862), - [4339] = {.count = 1, .reusable = false}, SHIFT(1865), - [4341] = {.count = 1, .reusable = true}, SHIFT(1865), - [4343] = {.count = 1, .reusable = true}, SHIFT(1864), - [4345] = {.count = 1, .reusable = true}, SHIFT(1866), - [4347] = {.count = 1, .reusable = true}, SHIFT(1867), - [4349] = {.count = 1, .reusable = true}, SHIFT(1868), - [4351] = {.count = 1, .reusable = true}, SHIFT(1869), - [4353] = {.count = 1, .reusable = true}, SHIFT(1870), - [4355] = {.count = 1, .reusable = true}, SHIFT(1871), - [4357] = {.count = 1, .reusable = false}, SHIFT(1872), - [4359] = {.count = 1, .reusable = true}, SHIFT(1872), - [4361] = {.count = 1, .reusable = false}, SHIFT(1873), - [4363] = {.count = 1, .reusable = true}, SHIFT(1874), - [4365] = {.count = 1, .reusable = true}, SHIFT(1876), - [4367] = {.count = 1, .reusable = true}, SHIFT(1877), - [4369] = {.count = 1, .reusable = true}, SHIFT(1878), - [4371] = {.count = 1, .reusable = true}, SHIFT(1879), - [4373] = {.count = 1, .reusable = true}, SHIFT(1880), - [4375] = {.count = 1, .reusable = true}, SHIFT(1881), - [4377] = {.count = 1, .reusable = false}, SHIFT(1882), - [4379] = {.count = 1, .reusable = true}, SHIFT(1882), - [4381] = {.count = 1, .reusable = true}, SHIFT(1883), - [4383] = {.count = 1, .reusable = false}, SHIFT(1884), - [4385] = {.count = 1, .reusable = true}, SHIFT(1884), - [4387] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [4389] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [4391] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), - [4393] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), - [4395] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), - [4397] = {.count = 1, .reusable = true}, SHIFT(1886), - [4399] = {.count = 1, .reusable = true}, SHIFT(1887), - [4401] = {.count = 1, .reusable = true}, SHIFT(1888), - [4403] = {.count = 1, .reusable = true}, SHIFT(1890), - [4405] = {.count = 1, .reusable = false}, SHIFT(1891), - [4407] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), - [4409] = {.count = 1, .reusable = true}, SHIFT(1892), - [4411] = {.count = 1, .reusable = false}, SHIFT(1893), - [4413] = {.count = 1, .reusable = false}, SHIFT(1894), - [4415] = {.count = 1, .reusable = false}, SHIFT(1895), - [4417] = {.count = 1, .reusable = true}, SHIFT(1896), - [4419] = {.count = 1, .reusable = false}, SHIFT(1897), - [4421] = {.count = 1, .reusable = false}, SHIFT(1898), - [4423] = {.count = 1, .reusable = false}, SHIFT(1899), - [4425] = {.count = 1, .reusable = true}, SHIFT(1900), - [4427] = {.count = 1, .reusable = false}, SHIFT(1901), - [4429] = {.count = 1, .reusable = true}, SHIFT(1908), - [4431] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), - [4433] = {.count = 1, .reusable = true}, SHIFT(1911), - [4435] = {.count = 1, .reusable = true}, SHIFT(1915), - [4437] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [4439] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [4441] = {.count = 1, .reusable = true}, SHIFT(1916), - [4443] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1917), - [4446] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(86), - [4449] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(87), - [4452] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1918), - [4455] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(89), - [4458] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(90), - [4461] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(91), - [4464] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(92), - [4467] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [4469] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [4471] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [4473] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [4475] = {.count = 1, .reusable = true}, SHIFT(1921), - [4477] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), - [4479] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), - [4481] = {.count = 1, .reusable = true}, SHIFT(1923), - [4483] = {.count = 1, .reusable = true}, SHIFT(1924), - [4485] = {.count = 1, .reusable = true}, SHIFT(1925), - [4487] = {.count = 1, .reusable = true}, SHIFT(1926), - [4489] = {.count = 1, .reusable = false}, SHIFT(1927), - [4491] = {.count = 1, .reusable = true}, SHIFT(1927), - [4493] = {.count = 1, .reusable = true}, SHIFT(1928), - [4495] = {.count = 1, .reusable = false}, SHIFT(1929), - [4497] = {.count = 1, .reusable = true}, SHIFT(1929), - [4499] = {.count = 1, .reusable = true}, SHIFT(1930), - [4501] = {.count = 1, .reusable = false}, SHIFT(1931), - [4503] = {.count = 1, .reusable = true}, SHIFT(1931), - [4505] = {.count = 1, .reusable = true}, SHIFT(1932), - [4507] = {.count = 1, .reusable = true}, SHIFT(1933), - [4509] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 6), - [4511] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 6), - [4513] = {.count = 1, .reusable = true}, SHIFT(1935), - [4515] = {.count = 1, .reusable = true}, SHIFT(1936), - [4517] = {.count = 1, .reusable = true}, SHIFT(1938), - [4519] = {.count = 1, .reusable = true}, SHIFT(1939), - [4521] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1110), - [4524] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1111), - [4527] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1112), - [4530] = {.count = 1, .reusable = true}, SHIFT(1941), - [4532] = {.count = 1, .reusable = true}, SHIFT(1942), - [4534] = {.count = 1, .reusable = true}, SHIFT(1943), - [4536] = {.count = 1, .reusable = true}, SHIFT(1944), - [4538] = {.count = 1, .reusable = false}, SHIFT(1945), - [4540] = {.count = 1, .reusable = true}, SHIFT(1945), - [4542] = {.count = 1, .reusable = true}, SHIFT(1946), - [4544] = {.count = 1, .reusable = false}, SHIFT(1947), - [4546] = {.count = 1, .reusable = true}, SHIFT(1947), - [4548] = {.count = 1, .reusable = true}, SHIFT(1948), - [4550] = {.count = 1, .reusable = false}, SHIFT(1949), - [4552] = {.count = 1, .reusable = true}, SHIFT(1949), - [4554] = {.count = 1, .reusable = true}, SHIFT(1950), - [4556] = {.count = 1, .reusable = true}, SHIFT(1951), - [4558] = {.count = 1, .reusable = true}, SHIFT(1952), - [4560] = {.count = 1, .reusable = false}, SHIFT(1954), - [4562] = {.count = 1, .reusable = false}, SHIFT(1955), - [4564] = {.count = 1, .reusable = true}, SHIFT(1956), - [4566] = {.count = 1, .reusable = true}, SHIFT(1957), - [4568] = {.count = 1, .reusable = false}, SHIFT(1959), - [4570] = {.count = 1, .reusable = true}, SHIFT(1959), - [4572] = {.count = 1, .reusable = true}, SHIFT(1958), - [4574] = {.count = 1, .reusable = true}, SHIFT(1960), - [4576] = {.count = 1, .reusable = true}, SHIFT(1961), - [4578] = {.count = 1, .reusable = false}, SHIFT(1962), - [4580] = {.count = 1, .reusable = false}, SHIFT(1961), - [4582] = {.count = 1, .reusable = true}, SHIFT(1964), - [4584] = {.count = 1, .reusable = false}, SHIFT(1966), - [4586] = {.count = 1, .reusable = true}, SHIFT(1966), - [4588] = {.count = 1, .reusable = true}, SHIFT(1965), - [4590] = {.count = 1, .reusable = true}, SHIFT(1967), - [4592] = {.count = 1, .reusable = false}, SHIFT(1969), - [4594] = {.count = 1, .reusable = true}, SHIFT(1969), - [4596] = {.count = 1, .reusable = true}, SHIFT(1968), - [4598] = {.count = 1, .reusable = true}, SHIFT(1970), - [4600] = {.count = 1, .reusable = true}, SHIFT(1971), - [4602] = {.count = 1, .reusable = true}, SHIFT(1972), - [4604] = {.count = 1, .reusable = true}, SHIFT(1973), - [4606] = {.count = 1, .reusable = true}, SHIFT(1974), - [4608] = {.count = 1, .reusable = true}, SHIFT(1975), - [4610] = {.count = 1, .reusable = false}, SHIFT(1976), - [4612] = {.count = 1, .reusable = true}, SHIFT(1976), - [4614] = {.count = 1, .reusable = true}, SHIFT(1977), - [4616] = {.count = 1, .reusable = false}, SHIFT(1978), - [4618] = {.count = 1, .reusable = true}, SHIFT(1978), - [4620] = {.count = 1, .reusable = true}, SHIFT(1979), - [4622] = {.count = 1, .reusable = false}, SHIFT(1980), - [4624] = {.count = 1, .reusable = true}, SHIFT(1980), - [4626] = {.count = 1, .reusable = true}, SHIFT(1981), - [4628] = {.count = 1, .reusable = true}, SHIFT(1982), - [4630] = {.count = 1, .reusable = true}, SHIFT(1983), - [4632] = {.count = 1, .reusable = true}, SHIFT(1984), - [4634] = {.count = 1, .reusable = true}, SHIFT(1985), - [4636] = {.count = 1, .reusable = true}, SHIFT(1986), - [4638] = {.count = 1, .reusable = false}, SHIFT(1987), - [4640] = {.count = 1, .reusable = true}, SHIFT(1987), - [4642] = {.count = 1, .reusable = true}, SHIFT(1988), - [4644] = {.count = 1, .reusable = false}, SHIFT(1989), - [4646] = {.count = 1, .reusable = true}, SHIFT(1989), - [4648] = {.count = 1, .reusable = true}, SHIFT(1990), - [4650] = {.count = 1, .reusable = false}, SHIFT(1991), - [4652] = {.count = 1, .reusable = true}, SHIFT(1991), - [4654] = {.count = 1, .reusable = true}, SHIFT(1992), - [4656] = {.count = 1, .reusable = true}, SHIFT(1993), - [4658] = {.count = 1, .reusable = true}, SHIFT(1994), - [4660] = {.count = 1, .reusable = true}, SHIFT(1995), - [4662] = {.count = 1, .reusable = true}, SHIFT(1996), - [4664] = {.count = 1, .reusable = true}, SHIFT(1997), - [4666] = {.count = 1, .reusable = false}, SHIFT(1998), - [4668] = {.count = 1, .reusable = true}, SHIFT(1998), - [4670] = {.count = 1, .reusable = true}, SHIFT(1999), - [4672] = {.count = 1, .reusable = false}, SHIFT(2000), - [4674] = {.count = 1, .reusable = true}, SHIFT(2000), - [4676] = {.count = 1, .reusable = true}, SHIFT(2001), - [4678] = {.count = 1, .reusable = false}, SHIFT(2002), - [4680] = {.count = 1, .reusable = true}, SHIFT(2002), - [4682] = {.count = 1, .reusable = true}, SHIFT(2003), - [4684] = {.count = 1, .reusable = true}, SHIFT(2004), - [4686] = {.count = 1, .reusable = true}, SHIFT(2005), - [4688] = {.count = 1, .reusable = true}, SHIFT(2006), - [4690] = {.count = 1, .reusable = true}, SHIFT(2007), - [4692] = {.count = 1, .reusable = true}, SHIFT(2008), - [4694] = {.count = 1, .reusable = false}, SHIFT(2009), - [4696] = {.count = 1, .reusable = true}, SHIFT(2009), - [4698] = {.count = 1, .reusable = true}, SHIFT(2010), - [4700] = {.count = 1, .reusable = false}, SHIFT(2011), - [4702] = {.count = 1, .reusable = true}, SHIFT(2011), - [4704] = {.count = 1, .reusable = true}, SHIFT(2012), - [4706] = {.count = 1, .reusable = false}, SHIFT(2013), - [4708] = {.count = 1, .reusable = true}, SHIFT(2013), - [4710] = {.count = 1, .reusable = true}, SHIFT(2014), - [4712] = {.count = 1, .reusable = true}, SHIFT(2015), - [4714] = {.count = 1, .reusable = true}, SHIFT(2016), - [4716] = {.count = 1, .reusable = true}, SHIFT(2017), - [4718] = {.count = 1, .reusable = true}, SHIFT(2018), - [4720] = {.count = 1, .reusable = true}, SHIFT(2019), - [4722] = {.count = 1, .reusable = false}, SHIFT(2020), - [4724] = {.count = 1, .reusable = true}, SHIFT(2020), - [4726] = {.count = 1, .reusable = true}, SHIFT(2021), - [4728] = {.count = 1, .reusable = false}, SHIFT(2022), - [4730] = {.count = 1, .reusable = true}, SHIFT(2022), - [4732] = {.count = 1, .reusable = true}, SHIFT(2023), - [4734] = {.count = 1, .reusable = false}, SHIFT(2024), - [4736] = {.count = 1, .reusable = true}, SHIFT(2024), - [4738] = {.count = 1, .reusable = true}, SHIFT(2025), - [4740] = {.count = 1, .reusable = true}, SHIFT(2026), - [4742] = {.count = 1, .reusable = true}, SHIFT(2027), - [4744] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [4746] = {.count = 1, .reusable = true}, SHIFT(2028), - [4748] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), - [4750] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1262), - [4753] = {.count = 1, .reusable = false}, SHIFT(2029), - [4755] = {.count = 1, .reusable = true}, SHIFT(2030), - [4757] = {.count = 1, .reusable = false}, SHIFT(2031), - [4759] = {.count = 1, .reusable = true}, SHIFT(2032), - [4761] = {.count = 1, .reusable = true}, SHIFT(2034), - [4763] = {.count = 1, .reusable = true}, SHIFT(2035), - [4765] = {.count = 1, .reusable = true}, SHIFT(2036), - [4767] = {.count = 1, .reusable = true}, SHIFT(2037), - [4769] = {.count = 1, .reusable = false}, SHIFT(2039), - [4771] = {.count = 1, .reusable = true}, SHIFT(2039), - [4773] = {.count = 1, .reusable = true}, SHIFT(2038), - [4775] = {.count = 1, .reusable = true}, SHIFT(2040), - [4777] = {.count = 1, .reusable = false}, SHIFT(2042), - [4779] = {.count = 1, .reusable = true}, SHIFT(2042), - [4781] = {.count = 1, .reusable = true}, SHIFT(2041), - [4783] = {.count = 1, .reusable = false}, SHIFT(2044), - [4785] = {.count = 1, .reusable = true}, SHIFT(2044), - [4787] = {.count = 1, .reusable = true}, SHIFT(2043), - [4789] = {.count = 1, .reusable = true}, SHIFT(2045), - [4791] = {.count = 1, .reusable = true}, SHIFT(2046), - [4793] = {.count = 1, .reusable = true}, SHIFT(2047), - [4795] = {.count = 1, .reusable = true}, SHIFT(2048), - [4797] = {.count = 1, .reusable = true}, SHIFT(2049), - [4799] = {.count = 1, .reusable = true}, SHIFT(2050), - [4801] = {.count = 1, .reusable = false}, SHIFT(2051), - [4803] = {.count = 1, .reusable = true}, SHIFT(2051), - [4805] = {.count = 1, .reusable = false}, SHIFT(2052), - [4807] = {.count = 1, .reusable = true}, SHIFT(2053), - [4809] = {.count = 1, .reusable = true}, SHIFT(2055), - [4811] = {.count = 1, .reusable = true}, SHIFT(2056), - [4813] = {.count = 1, .reusable = true}, SHIFT(2057), - [4815] = {.count = 1, .reusable = true}, SHIFT(2058), - [4817] = {.count = 1, .reusable = true}, SHIFT(2059), - [4819] = {.count = 1, .reusable = true}, SHIFT(2060), - [4821] = {.count = 1, .reusable = false}, SHIFT(2061), - [4823] = {.count = 1, .reusable = true}, SHIFT(2061), - [4825] = {.count = 1, .reusable = true}, SHIFT(2062), - [4827] = {.count = 1, .reusable = false}, SHIFT(2063), - [4829] = {.count = 1, .reusable = true}, SHIFT(2063), - [4831] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [4833] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [4835] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [4837] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [4839] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), - [4841] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), - [4843] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [4845] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [4847] = {.count = 1, .reusable = true}, SHIFT(2064), - [4849] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [4851] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [4853] = {.count = 1, .reusable = true}, SHIFT(2065), - [4855] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [4857] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [4859] = {.count = 1, .reusable = true}, SHIFT(2066), - [4861] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [4863] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [4865] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [4867] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [4869] = {.count = 1, .reusable = false}, SHIFT(2068), - [4871] = {.count = 1, .reusable = true}, SHIFT(2069), - [4873] = {.count = 1, .reusable = true}, SHIFT(2071), - [4875] = {.count = 1, .reusable = false}, SHIFT(2073), - [4877] = {.count = 1, .reusable = true}, SHIFT(2075), - [4879] = {.count = 1, .reusable = false}, SHIFT(2077), - [4881] = {.count = 1, .reusable = true}, SHIFT(2080), - [4883] = {.count = 1, .reusable = true}, SHIFT(2081), - [4885] = {.count = 1, .reusable = true}, SHIFT(2084), - [4887] = {.count = 1, .reusable = true}, SHIFT(2085), - [4889] = {.count = 1, .reusable = true}, SHIFT(2087), - [4891] = {.count = 1, .reusable = false}, SHIFT(2089), - [4893] = {.count = 1, .reusable = false}, SHIFT(2090), - [4895] = {.count = 1, .reusable = true}, SHIFT(2092), - [4897] = {.count = 1, .reusable = true}, SHIFT(2093), - [4899] = {.count = 1, .reusable = false}, SHIFT(2094), - [4901] = {.count = 1, .reusable = false}, SHIFT(2092), - [4903] = {.count = 1, .reusable = true}, SHIFT(2095), - [4905] = {.count = 1, .reusable = true}, SHIFT(2096), - [4907] = {.count = 1, .reusable = true}, SHIFT(2097), - [4909] = {.count = 1, .reusable = false}, SHIFT(2098), - [4911] = {.count = 1, .reusable = false}, SHIFT(2096), - [4913] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1341), - [4916] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1342), - [4919] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1342), - [4922] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1343), - [4925] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1343), - [4928] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1344), - [4931] = {.count = 1, .reusable = true}, SHIFT(2106), - [4933] = {.count = 1, .reusable = true}, SHIFT(2107), - [4935] = {.count = 1, .reusable = true}, SHIFT(2108), - [4937] = {.count = 1, .reusable = true}, SHIFT(2109), - [4939] = {.count = 1, .reusable = false}, SHIFT(2110), - [4941] = {.count = 1, .reusable = true}, SHIFT(2110), - [4943] = {.count = 1, .reusable = false}, SHIFT(2111), - [4945] = {.count = 1, .reusable = true}, SHIFT(2112), - [4947] = {.count = 1, .reusable = true}, SHIFT(2114), - [4949] = {.count = 1, .reusable = true}, SHIFT(2115), - [4951] = {.count = 1, .reusable = true}, SHIFT(2116), - [4953] = {.count = 1, .reusable = true}, SHIFT(2117), - [4955] = {.count = 1, .reusable = true}, SHIFT(2118), - [4957] = {.count = 1, .reusable = true}, SHIFT(2119), - [4959] = {.count = 1, .reusable = false}, SHIFT(2120), - [4961] = {.count = 1, .reusable = true}, SHIFT(2120), - [4963] = {.count = 1, .reusable = true}, SHIFT(2121), - [4965] = {.count = 1, .reusable = false}, SHIFT(2122), - [4967] = {.count = 1, .reusable = true}, SHIFT(2122), - [4969] = {.count = 1, .reusable = true}, SHIFT(2123), - [4971] = {.count = 1, .reusable = true}, SHIFT(2124), - [4973] = {.count = 1, .reusable = true}, SHIFT(2125), - [4975] = {.count = 1, .reusable = false}, SHIFT(2126), - [4977] = {.count = 1, .reusable = true}, SHIFT(2126), - [4979] = {.count = 1, .reusable = false}, SHIFT(2127), - [4981] = {.count = 1, .reusable = true}, SHIFT(2128), - [4983] = {.count = 1, .reusable = true}, SHIFT(2130), - [4985] = {.count = 1, .reusable = true}, SHIFT(2131), - [4987] = {.count = 1, .reusable = true}, SHIFT(2132), - [4989] = {.count = 1, .reusable = true}, SHIFT(2133), - [4991] = {.count = 1, .reusable = true}, SHIFT(2134), - [4993] = {.count = 1, .reusable = true}, SHIFT(2135), - [4995] = {.count = 1, .reusable = false}, SHIFT(2136), - [4997] = {.count = 1, .reusable = true}, SHIFT(2136), - [4999] = {.count = 1, .reusable = true}, SHIFT(2137), - [5001] = {.count = 1, .reusable = false}, SHIFT(2138), - [5003] = {.count = 1, .reusable = true}, SHIFT(2138), - [5005] = {.count = 1, .reusable = true}, SHIFT(2139), - [5007] = {.count = 1, .reusable = true}, SHIFT(2140), - [5009] = {.count = 1, .reusable = true}, SHIFT(2141), - [5011] = {.count = 1, .reusable = true}, SHIFT(2142), - [5013] = {.count = 1, .reusable = false}, SHIFT(2143), - [5015] = {.count = 1, .reusable = true}, SHIFT(2143), - [5017] = {.count = 1, .reusable = true}, SHIFT(2144), - [5019] = {.count = 1, .reusable = false}, SHIFT(2145), - [5021] = {.count = 1, .reusable = true}, SHIFT(2145), - [5023] = {.count = 1, .reusable = true}, SHIFT(2146), - [5025] = {.count = 1, .reusable = false}, SHIFT(2147), - [5027] = {.count = 1, .reusable = true}, SHIFT(2147), - [5029] = {.count = 1, .reusable = true}, SHIFT(2148), - [5031] = {.count = 1, .reusable = true}, SHIFT(2149), - [5033] = {.count = 1, .reusable = true}, SHIFT(2150), - [5035] = {.count = 1, .reusable = true}, SHIFT(2151), - [5037] = {.count = 1, .reusable = true}, SHIFT(2153), - [5039] = {.count = 1, .reusable = true}, SHIFT(2154), - [5041] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1422), - [5044] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1423), - [5047] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1423), - [5050] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1424), - [5053] = {.count = 1, .reusable = true}, SHIFT(2156), - [5055] = {.count = 1, .reusable = true}, SHIFT(2157), - [5057] = {.count = 1, .reusable = true}, SHIFT(2158), - [5059] = {.count = 1, .reusable = false}, SHIFT(2159), - [5061] = {.count = 1, .reusable = true}, SHIFT(2159), - [5063] = {.count = 1, .reusable = false}, SHIFT(2160), - [5065] = {.count = 1, .reusable = true}, SHIFT(2161), - [5067] = {.count = 1, .reusable = true}, SHIFT(2163), - [5069] = {.count = 1, .reusable = true}, SHIFT(2164), - [5071] = {.count = 1, .reusable = true}, SHIFT(2165), - [5073] = {.count = 1, .reusable = true}, SHIFT(2166), - [5075] = {.count = 1, .reusable = true}, SHIFT(2167), - [5077] = {.count = 1, .reusable = true}, SHIFT(2168), - [5079] = {.count = 1, .reusable = false}, SHIFT(2169), - [5081] = {.count = 1, .reusable = true}, SHIFT(2169), - [5083] = {.count = 1, .reusable = true}, SHIFT(2170), - [5085] = {.count = 1, .reusable = false}, SHIFT(2171), - [5087] = {.count = 1, .reusable = true}, SHIFT(2171), - [5089] = {.count = 1, .reusable = true}, SHIFT(2172), - [5091] = {.count = 1, .reusable = true}, SHIFT(2173), - [5093] = {.count = 1, .reusable = true}, SHIFT(2174), - [5095] = {.count = 1, .reusable = false}, SHIFT(2175), - [5097] = {.count = 1, .reusable = true}, SHIFT(2175), - [5099] = {.count = 1, .reusable = false}, SHIFT(2176), - [5101] = {.count = 1, .reusable = true}, SHIFT(2177), - [5103] = {.count = 1, .reusable = true}, SHIFT(2179), - [5105] = {.count = 1, .reusable = true}, SHIFT(2180), - [5107] = {.count = 1, .reusable = true}, SHIFT(2181), - [5109] = {.count = 1, .reusable = true}, SHIFT(2182), - [5111] = {.count = 1, .reusable = true}, SHIFT(2183), - [5113] = {.count = 1, .reusable = true}, SHIFT(2184), - [5115] = {.count = 1, .reusable = false}, SHIFT(2185), - [5117] = {.count = 1, .reusable = true}, SHIFT(2185), - [5119] = {.count = 1, .reusable = true}, SHIFT(2186), - [5121] = {.count = 1, .reusable = false}, SHIFT(2187), - [5123] = {.count = 1, .reusable = true}, SHIFT(2187), - [5125] = {.count = 1, .reusable = true}, SHIFT(2188), - [5127] = {.count = 1, .reusable = true}, SHIFT(2189), - [5129] = {.count = 1, .reusable = true}, SHIFT(2190), - [5131] = {.count = 1, .reusable = true}, SHIFT(2191), - [5133] = {.count = 1, .reusable = false}, SHIFT(2192), - [5135] = {.count = 1, .reusable = true}, SHIFT(2192), - [5137] = {.count = 1, .reusable = true}, SHIFT(2193), - [5139] = {.count = 1, .reusable = false}, SHIFT(2194), - [5141] = {.count = 1, .reusable = true}, SHIFT(2194), - [5143] = {.count = 1, .reusable = true}, SHIFT(2195), - [5145] = {.count = 1, .reusable = false}, SHIFT(2196), - [5147] = {.count = 1, .reusable = true}, SHIFT(2196), - [5149] = {.count = 1, .reusable = true}, SHIFT(2197), - [5151] = {.count = 1, .reusable = true}, SHIFT(2198), - [5153] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), - [5155] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [5157] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [5159] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), - [5161] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), - [5163] = {.count = 1, .reusable = true}, SHIFT(2199), - [5165] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [5167] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5169] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5171] = {.count = 1, .reusable = true}, SHIFT(2201), - [5173] = {.count = 1, .reusable = true}, SHIFT(2204), - [5175] = {.count = 1, .reusable = false}, SHIFT(2205), - [5177] = {.count = 1, .reusable = false}, SHIFT(2206), - [5179] = {.count = 1, .reusable = false}, SHIFT(2207), - [5181] = {.count = 1, .reusable = false}, SHIFT(2208), - [5183] = {.count = 1, .reusable = false}, SHIFT(2209), - [5185] = {.count = 1, .reusable = false}, SHIFT(2210), - [5187] = {.count = 1, .reusable = false}, SHIFT(2211), - [5189] = {.count = 1, .reusable = false}, SHIFT(2212), - [5191] = {.count = 1, .reusable = false}, SHIFT(2213), - [5193] = {.count = 1, .reusable = false}, SHIFT(2216), - [5195] = {.count = 1, .reusable = false}, SHIFT(2217), - [5197] = {.count = 1, .reusable = false}, SHIFT(2218), - [5199] = {.count = 1, .reusable = false}, SHIFT(2219), - [5201] = {.count = 1, .reusable = false}, SHIFT(2220), - [5203] = {.count = 1, .reusable = false}, SHIFT(2221), - [5205] = {.count = 1, .reusable = false}, SHIFT(2222), - [5207] = {.count = 1, .reusable = false}, SHIFT(2223), - [5209] = {.count = 1, .reusable = false}, SHIFT(2224), - [5211] = {.count = 1, .reusable = false}, SHIFT(2227), - [5213] = {.count = 1, .reusable = false}, SHIFT(2228), - [5215] = {.count = 1, .reusable = false}, SHIFT(2229), - [5217] = {.count = 1, .reusable = false}, SHIFT(2230), - [5219] = {.count = 1, .reusable = true}, SHIFT(2231), - [5221] = {.count = 1, .reusable = false}, SHIFT(2232), - [5223] = {.count = 1, .reusable = false}, SHIFT(2233), - [5225] = {.count = 1, .reusable = false}, SHIFT(2234), - [5227] = {.count = 1, .reusable = false}, SHIFT(2235), - [5229] = {.count = 1, .reusable = false}, SHIFT(2236), - [5231] = {.count = 1, .reusable = true}, SHIFT(2239), - [5233] = {.count = 1, .reusable = true}, SHIFT(1899), - [5235] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1500), - [5238] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), - [5240] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), - [5242] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), - [5244] = {.count = 1, .reusable = false}, SHIFT(2245), - [5246] = {.count = 1, .reusable = true}, SHIFT(2246), - [5248] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [5250] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [5252] = {.count = 1, .reusable = true}, SHIFT(2250), - [5254] = {.count = 1, .reusable = true}, SHIFT(2252), - [5256] = {.count = 1, .reusable = true}, SHIFT(2254), - [5258] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [5260] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [5262] = {.count = 1, .reusable = true}, SHIFT(2255), - [5264] = {.count = 1, .reusable = true}, SHIFT(2256), - [5266] = {.count = 1, .reusable = true}, SHIFT(2257), - [5268] = {.count = 1, .reusable = true}, SHIFT(2258), - [5270] = {.count = 1, .reusable = true}, SHIFT(2261), - [5272] = {.count = 1, .reusable = true}, SHIFT(2262), - [5274] = {.count = 1, .reusable = true}, SHIFT(2263), - [5276] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1568), - [5279] = {.count = 1, .reusable = false}, SHIFT(2264), - [5281] = {.count = 1, .reusable = true}, SHIFT(2265), - [5283] = {.count = 1, .reusable = false}, SHIFT(2266), - [5285] = {.count = 1, .reusable = true}, SHIFT(2267), - [5287] = {.count = 1, .reusable = true}, SHIFT(2269), - [5289] = {.count = 1, .reusable = true}, SHIFT(2270), - [5291] = {.count = 1, .reusable = true}, SHIFT(2271), - [5293] = {.count = 1, .reusable = true}, SHIFT(2272), - [5295] = {.count = 1, .reusable = false}, SHIFT(2274), - [5297] = {.count = 1, .reusable = true}, SHIFT(2274), - [5299] = {.count = 1, .reusable = true}, SHIFT(2273), - [5301] = {.count = 1, .reusable = true}, SHIFT(2275), - [5303] = {.count = 1, .reusable = false}, SHIFT(2277), - [5305] = {.count = 1, .reusable = true}, SHIFT(2277), - [5307] = {.count = 1, .reusable = true}, SHIFT(2276), - [5309] = {.count = 1, .reusable = false}, SHIFT(2279), - [5311] = {.count = 1, .reusable = true}, SHIFT(2279), - [5313] = {.count = 1, .reusable = true}, SHIFT(2278), - [5315] = {.count = 1, .reusable = true}, SHIFT(2280), - [5317] = {.count = 1, .reusable = true}, SHIFT(2281), - [5319] = {.count = 1, .reusable = true}, SHIFT(2282), - [5321] = {.count = 1, .reusable = true}, SHIFT(2283), - [5323] = {.count = 1, .reusable = true}, SHIFT(2284), - [5325] = {.count = 1, .reusable = true}, SHIFT(2285), - [5327] = {.count = 1, .reusable = true}, SHIFT(2286), - [5329] = {.count = 1, .reusable = true}, SHIFT(2287), - [5331] = {.count = 1, .reusable = true}, SHIFT(2288), - [5333] = {.count = 1, .reusable = true}, SHIFT(2289), - [5335] = {.count = 1, .reusable = true}, SHIFT(2290), - [5337] = {.count = 1, .reusable = true}, SHIFT(2291), - [5339] = {.count = 1, .reusable = true}, SHIFT(2292), - [5341] = {.count = 1, .reusable = true}, SHIFT(2293), - [5343] = {.count = 1, .reusable = true}, SHIFT(2294), - [5345] = {.count = 1, .reusable = true}, SHIFT(2295), - [5347] = {.count = 1, .reusable = true}, SHIFT(2296), - [5349] = {.count = 1, .reusable = true}, SHIFT(2297), - [5351] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [5353] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), - [5355] = {.count = 1, .reusable = true}, SHIFT(2298), - [5357] = {.count = 1, .reusable = true}, SHIFT(2299), - [5359] = {.count = 1, .reusable = true}, SHIFT(2300), - [5361] = {.count = 1, .reusable = false}, SHIFT(2301), - [5363] = {.count = 1, .reusable = true}, SHIFT(2301), - [5365] = {.count = 1, .reusable = false}, SHIFT(2302), - [5367] = {.count = 1, .reusable = true}, SHIFT(2303), - [5369] = {.count = 1, .reusable = true}, SHIFT(2305), - [5371] = {.count = 1, .reusable = true}, SHIFT(2306), - [5373] = {.count = 1, .reusable = true}, SHIFT(2307), - [5375] = {.count = 1, .reusable = true}, SHIFT(2308), - [5377] = {.count = 1, .reusable = true}, SHIFT(2309), - [5379] = {.count = 1, .reusable = true}, SHIFT(2310), - [5381] = {.count = 1, .reusable = false}, SHIFT(2311), - [5383] = {.count = 1, .reusable = true}, SHIFT(2311), - [5385] = {.count = 1, .reusable = true}, SHIFT(2312), - [5387] = {.count = 1, .reusable = false}, SHIFT(2313), - [5389] = {.count = 1, .reusable = true}, SHIFT(2313), - [5391] = {.count = 1, .reusable = true}, SHIFT(2314), - [5393] = {.count = 1, .reusable = true}, SHIFT(2315), - [5395] = {.count = 1, .reusable = true}, SHIFT(2316), - [5397] = {.count = 1, .reusable = true}, SHIFT(2317), - [5399] = {.count = 1, .reusable = false}, SHIFT(2318), - [5401] = {.count = 1, .reusable = true}, SHIFT(2318), - [5403] = {.count = 1, .reusable = true}, SHIFT(2319), - [5405] = {.count = 1, .reusable = false}, SHIFT(2320), - [5407] = {.count = 1, .reusable = true}, SHIFT(2320), - [5409] = {.count = 1, .reusable = true}, SHIFT(2321), - [5411] = {.count = 1, .reusable = false}, SHIFT(2322), - [5413] = {.count = 1, .reusable = true}, SHIFT(2322), - [5415] = {.count = 1, .reusable = true}, SHIFT(2323), - [5417] = {.count = 1, .reusable = true}, SHIFT(2324), - [5419] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [5421] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [5423] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [5425] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [5427] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [5429] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [5431] = {.count = 1, .reusable = true}, SHIFT(2325), - [5433] = {.count = 1, .reusable = true}, SHIFT(2326), - [5435] = {.count = 1, .reusable = true}, SHIFT(2328), - [5437] = {.count = 1, .reusable = true}, SHIFT(2331), - [5439] = {.count = 1, .reusable = false}, SHIFT(2333), - [5441] = {.count = 1, .reusable = false}, SHIFT(2334), - [5443] = {.count = 1, .reusable = true}, SHIFT(2335), - [5445] = {.count = 1, .reusable = true}, SHIFT(2336), - [5447] = {.count = 1, .reusable = false}, SHIFT(2338), - [5449] = {.count = 1, .reusable = true}, SHIFT(2338), - [5451] = {.count = 1, .reusable = true}, SHIFT(2337), - [5453] = {.count = 1, .reusable = true}, SHIFT(2339), - [5455] = {.count = 1, .reusable = true}, SHIFT(2340), - [5457] = {.count = 1, .reusable = false}, SHIFT(2341), - [5459] = {.count = 1, .reusable = false}, SHIFT(2340), - [5461] = {.count = 1, .reusable = true}, SHIFT(2343), - [5463] = {.count = 1, .reusable = false}, SHIFT(2345), - [5465] = {.count = 1, .reusable = true}, SHIFT(2345), - [5467] = {.count = 1, .reusable = true}, SHIFT(2344), - [5469] = {.count = 1, .reusable = true}, SHIFT(2346), - [5471] = {.count = 1, .reusable = false}, SHIFT(2348), - [5473] = {.count = 1, .reusable = true}, SHIFT(2348), - [5475] = {.count = 1, .reusable = true}, SHIFT(2347), - [5477] = {.count = 1, .reusable = true}, SHIFT(2349), - [5479] = {.count = 1, .reusable = true}, SHIFT(2350), - [5481] = {.count = 1, .reusable = true}, SHIFT(2351), - [5483] = {.count = 1, .reusable = true}, SHIFT(2352), - [5485] = {.count = 1, .reusable = true}, SHIFT(2353), - [5487] = {.count = 1, .reusable = true}, SHIFT(2354), - [5489] = {.count = 1, .reusable = false}, SHIFT(2355), - [5491] = {.count = 1, .reusable = true}, SHIFT(2355), - [5493] = {.count = 1, .reusable = true}, SHIFT(2356), - [5495] = {.count = 1, .reusable = false}, SHIFT(2357), - [5497] = {.count = 1, .reusable = true}, SHIFT(2357), - [5499] = {.count = 1, .reusable = true}, SHIFT(2358), - [5501] = {.count = 1, .reusable = false}, SHIFT(2359), - [5503] = {.count = 1, .reusable = true}, SHIFT(2359), - [5505] = {.count = 1, .reusable = true}, SHIFT(2360), - [5507] = {.count = 1, .reusable = true}, SHIFT(2361), - [5509] = {.count = 1, .reusable = true}, SHIFT(2362), - [5511] = {.count = 1, .reusable = true}, SHIFT(2363), - [5513] = {.count = 1, .reusable = true}, SHIFT(2364), - [5515] = {.count = 1, .reusable = true}, SHIFT(2365), - [5517] = {.count = 1, .reusable = false}, SHIFT(2366), - [5519] = {.count = 1, .reusable = true}, SHIFT(2366), - [5521] = {.count = 1, .reusable = true}, SHIFT(2367), - [5523] = {.count = 1, .reusable = false}, SHIFT(2368), - [5525] = {.count = 1, .reusable = true}, SHIFT(2368), - [5527] = {.count = 1, .reusable = true}, SHIFT(2369), - [5529] = {.count = 1, .reusable = false}, SHIFT(2370), - [5531] = {.count = 1, .reusable = true}, SHIFT(2370), - [5533] = {.count = 1, .reusable = true}, SHIFT(2371), - [5535] = {.count = 1, .reusable = true}, SHIFT(2372), - [5537] = {.count = 1, .reusable = true}, SHIFT(2373), - [5539] = {.count = 1, .reusable = true}, SHIFT(2374), - [5541] = {.count = 1, .reusable = true}, SHIFT(2375), - [5543] = {.count = 1, .reusable = true}, SHIFT(2378), - [5545] = {.count = 1, .reusable = true}, SHIFT(2379), - [5547] = {.count = 1, .reusable = true}, SHIFT(2380), - [5549] = {.count = 1, .reusable = true}, SHIFT(2381), - [5551] = {.count = 1, .reusable = false}, SHIFT(2382), - [5553] = {.count = 1, .reusable = true}, SHIFT(2382), - [5555] = {.count = 1, .reusable = true}, SHIFT(2383), - [5557] = {.count = 1, .reusable = false}, SHIFT(2384), - [5559] = {.count = 1, .reusable = true}, SHIFT(2384), - [5561] = {.count = 1, .reusable = true}, SHIFT(2385), - [5563] = {.count = 1, .reusable = false}, SHIFT(2386), - [5565] = {.count = 1, .reusable = true}, SHIFT(2386), - [5567] = {.count = 1, .reusable = true}, SHIFT(2387), - [5569] = {.count = 1, .reusable = true}, SHIFT(2388), - [5571] = {.count = 1, .reusable = true}, SHIFT(2389), - [5573] = {.count = 1, .reusable = true}, SHIFT(2390), - [5575] = {.count = 1, .reusable = true}, SHIFT(2391), - [5577] = {.count = 1, .reusable = true}, SHIFT(2392), - [5579] = {.count = 1, .reusable = false}, SHIFT(2393), - [5581] = {.count = 1, .reusable = true}, SHIFT(2393), - [5583] = {.count = 1, .reusable = true}, SHIFT(2394), - [5585] = {.count = 1, .reusable = false}, SHIFT(2395), - [5587] = {.count = 1, .reusable = true}, SHIFT(2395), - [5589] = {.count = 1, .reusable = true}, SHIFT(2396), - [5591] = {.count = 1, .reusable = false}, SHIFT(2397), - [5593] = {.count = 1, .reusable = true}, SHIFT(2397), - [5595] = {.count = 1, .reusable = true}, SHIFT(2398), - [5597] = {.count = 1, .reusable = true}, SHIFT(2399), - [5599] = {.count = 1, .reusable = true}, SHIFT(2400), - [5601] = {.count = 1, .reusable = true}, SHIFT(2401), - [5603] = {.count = 1, .reusable = true}, SHIFT(2402), - [5605] = {.count = 1, .reusable = true}, SHIFT(2403), - [5607] = {.count = 1, .reusable = true}, SHIFT(2404), - [5609] = {.count = 1, .reusable = true}, SHIFT(2406), - [5611] = {.count = 1, .reusable = true}, SHIFT(2408), - [5613] = {.count = 1, .reusable = true}, SHIFT(2409), - [5615] = {.count = 1, .reusable = true}, SHIFT(2410), - [5617] = {.count = 1, .reusable = false}, SHIFT(2412), - [5619] = {.count = 1, .reusable = false}, SHIFT(2413), - [5621] = {.count = 1, .reusable = true}, SHIFT(2206), - [5623] = {.count = 1, .reusable = true}, SHIFT(2415), - [5625] = {.count = 1, .reusable = true}, SHIFT(2416), - [5627] = {.count = 1, .reusable = false}, SHIFT(2417), - [5629] = {.count = 1, .reusable = false}, SHIFT(2415), - [5631] = {.count = 1, .reusable = true}, SHIFT(2418), - [5633] = {.count = 1, .reusable = true}, SHIFT(2419), - [5635] = {.count = 1, .reusable = true}, SHIFT(2420), - [5637] = {.count = 1, .reusable = false}, SHIFT(2421), - [5639] = {.count = 1, .reusable = false}, SHIFT(2419), - [5641] = {.count = 1, .reusable = true}, SHIFT(2430), - [5643] = {.count = 1, .reusable = false}, SHIFT(2432), - [5645] = {.count = 1, .reusable = false}, SHIFT(2433), - [5647] = {.count = 1, .reusable = true}, SHIFT(2217), - [5649] = {.count = 1, .reusable = true}, SHIFT(2435), - [5651] = {.count = 1, .reusable = true}, SHIFT(2436), - [5653] = {.count = 1, .reusable = false}, SHIFT(2437), - [5655] = {.count = 1, .reusable = false}, SHIFT(2435), - [5657] = {.count = 1, .reusable = true}, SHIFT(2438), - [5659] = {.count = 1, .reusable = true}, SHIFT(2439), - [5661] = {.count = 1, .reusable = true}, SHIFT(2440), - [5663] = {.count = 1, .reusable = false}, SHIFT(2441), - [5665] = {.count = 1, .reusable = false}, SHIFT(2439), - [5667] = {.count = 1, .reusable = true}, SHIFT(2451), - [5669] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [5671] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5673] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5675] = {.count = 1, .reusable = false}, SHIFT(2454), - [5677] = {.count = 1, .reusable = true}, SHIFT(2454), - [5679] = {.count = 1, .reusable = false}, SHIFT(2455), - [5681] = {.count = 1, .reusable = false}, SHIFT(2456), - [5683] = {.count = 1, .reusable = true}, SHIFT(2457), - [5685] = {.count = 1, .reusable = true}, SHIFT(2458), - [5687] = {.count = 1, .reusable = true}, SHIFT(2459), - [5689] = {.count = 1, .reusable = true}, SHIFT(2460), - [5691] = {.count = 1, .reusable = false}, SHIFT(2464), - [5693] = {.count = 1, .reusable = true}, SHIFT(2466), - [5695] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), - [5697] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), - [5699] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), - [5701] = {.count = 1, .reusable = false}, SHIFT(2469), - [5703] = {.count = 1, .reusable = true}, SHIFT(2470), - [5705] = {.count = 1, .reusable = true}, SHIFT(2473), - [5707] = {.count = 1, .reusable = true}, SHIFT(2477), - [5709] = {.count = 1, .reusable = true}, SHIFT(2478), - [5711] = {.count = 1, .reusable = true}, SHIFT(2482), - [5713] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [5715] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [5717] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [5719] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [5721] = {.count = 1, .reusable = true}, SHIFT(2483), - [5723] = {.count = 1, .reusable = true}, SHIFT(2484), - [5725] = {.count = 1, .reusable = true}, SHIFT(2485), - [5727] = {.count = 1, .reusable = false}, SHIFT(2486), - [5729] = {.count = 1, .reusable = true}, SHIFT(2486), - [5731] = {.count = 1, .reusable = false}, SHIFT(2487), - [5733] = {.count = 1, .reusable = true}, SHIFT(2488), - [5735] = {.count = 1, .reusable = true}, SHIFT(2490), - [5737] = {.count = 1, .reusable = true}, SHIFT(2491), - [5739] = {.count = 1, .reusable = true}, SHIFT(2492), - [5741] = {.count = 1, .reusable = true}, SHIFT(2493), - [5743] = {.count = 1, .reusable = true}, SHIFT(2494), - [5745] = {.count = 1, .reusable = true}, SHIFT(2495), - [5747] = {.count = 1, .reusable = false}, SHIFT(2496), - [5749] = {.count = 1, .reusable = true}, SHIFT(2496), - [5751] = {.count = 1, .reusable = true}, SHIFT(2497), - [5753] = {.count = 1, .reusable = false}, SHIFT(2498), - [5755] = {.count = 1, .reusable = true}, SHIFT(2498), - [5757] = {.count = 1, .reusable = true}, SHIFT(2499), - [5759] = {.count = 1, .reusable = true}, SHIFT(2500), - [5761] = {.count = 1, .reusable = true}, SHIFT(2501), - [5763] = {.count = 1, .reusable = true}, SHIFT(2502), - [5765] = {.count = 1, .reusable = false}, SHIFT(2503), - [5767] = {.count = 1, .reusable = true}, SHIFT(2503), - [5769] = {.count = 1, .reusable = true}, SHIFT(2504), - [5771] = {.count = 1, .reusable = false}, SHIFT(2505), - [5773] = {.count = 1, .reusable = true}, SHIFT(2505), - [5775] = {.count = 1, .reusable = true}, SHIFT(2506), - [5777] = {.count = 1, .reusable = false}, SHIFT(2507), - [5779] = {.count = 1, .reusable = true}, SHIFT(2507), - [5781] = {.count = 1, .reusable = true}, SHIFT(2508), - [5783] = {.count = 1, .reusable = true}, SHIFT(2509), - [5785] = {.count = 1, .reusable = true}, SHIFT(2510), - [5787] = {.count = 1, .reusable = true}, SHIFT(2511), - [5789] = {.count = 1, .reusable = true}, SHIFT(2512), - [5791] = {.count = 1, .reusable = true}, SHIFT(2513), - [5793] = {.count = 1, .reusable = true}, SHIFT(2514), - [5795] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2087), - [5798] = {.count = 1, .reusable = false}, SHIFT(2515), - [5800] = {.count = 1, .reusable = true}, SHIFT(2516), - [5802] = {.count = 1, .reusable = false}, SHIFT(2517), - [5804] = {.count = 1, .reusable = true}, SHIFT(2518), - [5806] = {.count = 1, .reusable = true}, SHIFT(2520), - [5808] = {.count = 1, .reusable = true}, SHIFT(2521), - [5810] = {.count = 1, .reusable = true}, SHIFT(2522), - [5812] = {.count = 1, .reusable = true}, SHIFT(2523), - [5814] = {.count = 1, .reusable = false}, SHIFT(2525), - [5816] = {.count = 1, .reusable = true}, SHIFT(2525), - [5818] = {.count = 1, .reusable = true}, SHIFT(2524), - [5820] = {.count = 1, .reusable = true}, SHIFT(2526), - [5822] = {.count = 1, .reusable = false}, SHIFT(2528), - [5824] = {.count = 1, .reusable = true}, SHIFT(2528), - [5826] = {.count = 1, .reusable = true}, SHIFT(2527), - [5828] = {.count = 1, .reusable = false}, SHIFT(2530), - [5830] = {.count = 1, .reusable = true}, SHIFT(2530), - [5832] = {.count = 1, .reusable = true}, SHIFT(2529), - [5834] = {.count = 1, .reusable = true}, SHIFT(2531), - [5836] = {.count = 1, .reusable = true}, SHIFT(2532), - [5838] = {.count = 1, .reusable = true}, SHIFT(2533), - [5840] = {.count = 1, .reusable = true}, SHIFT(2534), - [5842] = {.count = 1, .reusable = true}, SHIFT(2535), - [5844] = {.count = 1, .reusable = true}, SHIFT(2536), - [5846] = {.count = 1, .reusable = true}, SHIFT(2537), - [5848] = {.count = 1, .reusable = true}, SHIFT(2538), - [5850] = {.count = 1, .reusable = true}, SHIFT(2539), - [5852] = {.count = 1, .reusable = true}, SHIFT(2540), - [5854] = {.count = 1, .reusable = true}, SHIFT(2541), - [5856] = {.count = 1, .reusable = true}, SHIFT(2542), - [5858] = {.count = 1, .reusable = true}, SHIFT(2543), - [5860] = {.count = 1, .reusable = true}, SHIFT(2544), - [5862] = {.count = 1, .reusable = true}, SHIFT(2545), - [5864] = {.count = 1, .reusable = true}, SHIFT(2548), - [5866] = {.count = 1, .reusable = true}, SHIFT(2549), - [5868] = {.count = 1, .reusable = false}, SHIFT(2550), - [5870] = {.count = 1, .reusable = true}, SHIFT(2551), - [5872] = {.count = 1, .reusable = false}, SHIFT(2552), - [5874] = {.count = 1, .reusable = false}, SHIFT(2553), - [5876] = {.count = 1, .reusable = true}, SHIFT(2555), - [5878] = {.count = 1, .reusable = true}, SHIFT(2556), - [5880] = {.count = 1, .reusable = true}, SHIFT(2557), - [5882] = {.count = 1, .reusable = true}, SHIFT(2558), - [5884] = {.count = 1, .reusable = true}, SHIFT(2209), - [5886] = {.count = 1, .reusable = true}, SHIFT(2210), - [5888] = {.count = 1, .reusable = true}, SHIFT(2211), - [5890] = {.count = 1, .reusable = true}, SHIFT(2212), - [5892] = {.count = 1, .reusable = true}, SHIFT(2559), - [5894] = {.count = 1, .reusable = false}, SHIFT(2561), - [5896] = {.count = 1, .reusable = false}, SHIFT(2562), - [5898] = {.count = 1, .reusable = true}, SHIFT(2563), - [5900] = {.count = 1, .reusable = true}, SHIFT(2564), - [5902] = {.count = 1, .reusable = false}, SHIFT(2566), - [5904] = {.count = 1, .reusable = true}, SHIFT(2566), - [5906] = {.count = 1, .reusable = true}, SHIFT(2565), - [5908] = {.count = 1, .reusable = true}, SHIFT(2567), - [5910] = {.count = 1, .reusable = true}, SHIFT(2568), - [5912] = {.count = 1, .reusable = false}, SHIFT(2569), - [5914] = {.count = 1, .reusable = false}, SHIFT(2568), - [5916] = {.count = 1, .reusable = true}, SHIFT(2571), - [5918] = {.count = 1, .reusable = false}, SHIFT(2573), - [5920] = {.count = 1, .reusable = true}, SHIFT(2573), - [5922] = {.count = 1, .reusable = true}, SHIFT(2572), - [5924] = {.count = 1, .reusable = true}, SHIFT(2574), - [5926] = {.count = 1, .reusable = false}, SHIFT(2576), - [5928] = {.count = 1, .reusable = true}, SHIFT(2576), - [5930] = {.count = 1, .reusable = true}, SHIFT(2575), - [5932] = {.count = 1, .reusable = true}, SHIFT(2577), - [5934] = {.count = 1, .reusable = true}, SHIFT(2578), - [5936] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2204), - [5939] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2205), - [5942] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2206), - [5945] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2207), - [5948] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2208), - [5951] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2209), - [5954] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2210), - [5957] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2211), - [5960] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2212), - [5963] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2213), - [5966] = {.count = 1, .reusable = true}, SHIFT(2579), - [5968] = {.count = 1, .reusable = true}, SHIFT(2220), - [5970] = {.count = 1, .reusable = true}, SHIFT(2221), - [5972] = {.count = 1, .reusable = true}, SHIFT(2222), - [5974] = {.count = 1, .reusable = true}, SHIFT(2223), - [5976] = {.count = 1, .reusable = false}, SHIFT(2581), - [5978] = {.count = 1, .reusable = false}, SHIFT(2582), - [5980] = {.count = 1, .reusable = true}, SHIFT(2583), - [5982] = {.count = 1, .reusable = true}, SHIFT(2584), - [5984] = {.count = 1, .reusable = false}, SHIFT(2586), - [5986] = {.count = 1, .reusable = true}, SHIFT(2586), - [5988] = {.count = 1, .reusable = true}, SHIFT(2585), - [5990] = {.count = 1, .reusable = true}, SHIFT(2587), - [5992] = {.count = 1, .reusable = true}, SHIFT(2588), - [5994] = {.count = 1, .reusable = false}, SHIFT(2589), - [5996] = {.count = 1, .reusable = false}, SHIFT(2588), - [5998] = {.count = 1, .reusable = true}, SHIFT(2591), - [6000] = {.count = 1, .reusable = false}, SHIFT(2593), - [6002] = {.count = 1, .reusable = true}, SHIFT(2593), - [6004] = {.count = 1, .reusable = true}, SHIFT(2592), - [6006] = {.count = 1, .reusable = true}, SHIFT(2594), - [6008] = {.count = 1, .reusable = false}, SHIFT(2596), - [6010] = {.count = 1, .reusable = true}, SHIFT(2596), - [6012] = {.count = 1, .reusable = true}, SHIFT(2595), - [6014] = {.count = 1, .reusable = true}, SHIFT(2597), - [6016] = {.count = 1, .reusable = true}, SHIFT(2598), - [6018] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2216), - [6021] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2217), - [6024] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2218), - [6027] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2219), - [6030] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2220), - [6033] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2221), - [6036] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2222), - [6039] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2223), - [6042] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2224), - [6045] = {.count = 1, .reusable = true}, SHIFT(2600), - [6047] = {.count = 1, .reusable = true}, SHIFT(2601), - [6049] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2231), - [6052] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2233), - [6055] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2234), - [6058] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2232), - [6061] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2235), - [6064] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2236), - [6067] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [6069] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [6071] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [6073] = {.count = 1, .reusable = false}, SHIFT(2604), - [6075] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), - [6077] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), - [6079] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), - [6081] = {.count = 1, .reusable = false}, SHIFT(2605), - [6083] = {.count = 1, .reusable = false}, SHIFT(2606), - [6085] = {.count = 1, .reusable = true}, SHIFT(2607), - [6087] = {.count = 1, .reusable = false}, SHIFT(2612), - [6089] = {.count = 1, .reusable = true}, SHIFT(2613), - [6091] = {.count = 1, .reusable = true}, SHIFT(2617), - [6093] = {.count = 1, .reusable = true}, SHIFT(2618), - [6095] = {.count = 1, .reusable = true}, SHIFT(2619), - [6097] = {.count = 1, .reusable = true}, SHIFT(2620), - [6099] = {.count = 1, .reusable = false}, SHIFT(2621), - [6101] = {.count = 1, .reusable = true}, SHIFT(2621), - [6103] = {.count = 1, .reusable = true}, SHIFT(2622), - [6105] = {.count = 1, .reusable = false}, SHIFT(2623), - [6107] = {.count = 1, .reusable = true}, SHIFT(2623), - [6109] = {.count = 1, .reusable = true}, SHIFT(2624), - [6111] = {.count = 1, .reusable = false}, SHIFT(2625), - [6113] = {.count = 1, .reusable = true}, SHIFT(2625), - [6115] = {.count = 1, .reusable = true}, SHIFT(2626), - [6117] = {.count = 1, .reusable = true}, SHIFT(2627), - [6119] = {.count = 1, .reusable = true}, SHIFT(2628), - [6121] = {.count = 1, .reusable = true}, SHIFT(2629), - [6123] = {.count = 1, .reusable = true}, SHIFT(2630), - [6125] = {.count = 1, .reusable = true}, SHIFT(2631), - [6127] = {.count = 1, .reusable = true}, SHIFT(2632), - [6129] = {.count = 1, .reusable = true}, SHIFT(2633), - [6131] = {.count = 1, .reusable = false}, SHIFT(2634), - [6133] = {.count = 1, .reusable = true}, SHIFT(2634), - [6135] = {.count = 1, .reusable = false}, SHIFT(2635), - [6137] = {.count = 1, .reusable = true}, SHIFT(2636), - [6139] = {.count = 1, .reusable = true}, SHIFT(2638), - [6141] = {.count = 1, .reusable = true}, SHIFT(2639), - [6143] = {.count = 1, .reusable = true}, SHIFT(2640), - [6145] = {.count = 1, .reusable = true}, SHIFT(2641), - [6147] = {.count = 1, .reusable = true}, SHIFT(2642), - [6149] = {.count = 1, .reusable = true}, SHIFT(2643), - [6151] = {.count = 1, .reusable = false}, SHIFT(2644), - [6153] = {.count = 1, .reusable = true}, SHIFT(2644), - [6155] = {.count = 1, .reusable = true}, SHIFT(2645), - [6157] = {.count = 1, .reusable = false}, SHIFT(2646), - [6159] = {.count = 1, .reusable = true}, SHIFT(2646), - [6161] = {.count = 1, .reusable = false}, SHIFT(2649), - [6163] = {.count = 1, .reusable = true}, SHIFT(2649), - [6165] = {.count = 1, .reusable = true}, SHIFT(2650), - [6167] = {.count = 1, .reusable = true}, SHIFT(2651), - [6169] = {.count = 1, .reusable = false}, SHIFT(2652), - [6171] = {.count = 1, .reusable = true}, SHIFT(2653), - [6173] = {.count = 1, .reusable = true}, SHIFT(2654), - [6175] = {.count = 1, .reusable = true}, SHIFT(2655), - [6177] = {.count = 1, .reusable = true}, SHIFT(2656), - [6179] = {.count = 1, .reusable = true}, SHIFT(2657), - [6181] = {.count = 1, .reusable = false}, SHIFT(2658), - [6183] = {.count = 1, .reusable = true}, SHIFT(2658), - [6185] = {.count = 1, .reusable = true}, SHIFT(2659), - [6187] = {.count = 1, .reusable = true}, SHIFT(2660), - [6189] = {.count = 1, .reusable = true}, SHIFT(2661), - [6191] = {.count = 1, .reusable = true}, SHIFT(2662), - [6193] = {.count = 1, .reusable = true}, SHIFT(2664), - [6195] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2410), - [6198] = {.count = 1, .reusable = false}, SHIFT(2666), - [6200] = {.count = 1, .reusable = true}, SHIFT(2667), - [6202] = {.count = 1, .reusable = false}, SHIFT(2668), - [6204] = {.count = 1, .reusable = true}, SHIFT(2669), - [6206] = {.count = 1, .reusable = true}, SHIFT(2671), - [6208] = {.count = 1, .reusable = true}, SHIFT(2672), - [6210] = {.count = 1, .reusable = true}, SHIFT(2673), - [6212] = {.count = 1, .reusable = true}, SHIFT(2674), - [6214] = {.count = 1, .reusable = false}, SHIFT(2676), - [6216] = {.count = 1, .reusable = true}, SHIFT(2676), - [6218] = {.count = 1, .reusable = true}, SHIFT(2675), - [6220] = {.count = 1, .reusable = true}, SHIFT(2677), - [6222] = {.count = 1, .reusable = false}, SHIFT(2679), - [6224] = {.count = 1, .reusable = true}, SHIFT(2679), - [6226] = {.count = 1, .reusable = true}, SHIFT(2678), - [6228] = {.count = 1, .reusable = false}, SHIFT(2681), - [6230] = {.count = 1, .reusable = true}, SHIFT(2681), - [6232] = {.count = 1, .reusable = true}, SHIFT(2680), - [6234] = {.count = 1, .reusable = true}, SHIFT(2682), - [6236] = {.count = 1, .reusable = true}, SHIFT(2683), - [6238] = {.count = 1, .reusable = true}, SHIFT(2684), - [6240] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2430), - [6243] = {.count = 1, .reusable = false}, SHIFT(2685), - [6245] = {.count = 1, .reusable = true}, SHIFT(2686), - [6247] = {.count = 1, .reusable = false}, SHIFT(2687), - [6249] = {.count = 1, .reusable = true}, SHIFT(2688), - [6251] = {.count = 1, .reusable = true}, SHIFT(2690), - [6253] = {.count = 1, .reusable = true}, SHIFT(2691), - [6255] = {.count = 1, .reusable = true}, SHIFT(2692), - [6257] = {.count = 1, .reusable = true}, SHIFT(2693), - [6259] = {.count = 1, .reusable = false}, SHIFT(2695), - [6261] = {.count = 1, .reusable = true}, SHIFT(2695), - [6263] = {.count = 1, .reusable = true}, SHIFT(2694), - [6265] = {.count = 1, .reusable = true}, SHIFT(2696), - [6267] = {.count = 1, .reusable = false}, SHIFT(2698), - [6269] = {.count = 1, .reusable = true}, SHIFT(2698), - [6271] = {.count = 1, .reusable = true}, SHIFT(2697), - [6273] = {.count = 1, .reusable = false}, SHIFT(2700), - [6275] = {.count = 1, .reusable = true}, SHIFT(2700), - [6277] = {.count = 1, .reusable = true}, SHIFT(2699), - [6279] = {.count = 1, .reusable = true}, SHIFT(2701), - [6281] = {.count = 1, .reusable = true}, SHIFT(2702), - [6283] = {.count = 1, .reusable = true}, SHIFT(2703), - [6285] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), - [6287] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [6289] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [6291] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), - [6293] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), - [6295] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), - [6297] = {.count = 1, .reusable = false}, SHIFT(2705), - [6299] = {.count = 1, .reusable = true}, SHIFT(2706), - [6301] = {.count = 1, .reusable = false}, SHIFT(2709), - [6303] = {.count = 1, .reusable = true}, SHIFT(2710), - [6305] = {.count = 1, .reusable = true}, SHIFT(2713), - [6307] = {.count = 1, .reusable = true}, SHIFT(2714), - [6309] = {.count = 1, .reusable = true}, SHIFT(2715), - [6311] = {.count = 1, .reusable = true}, SHIFT(2716), - [6313] = {.count = 1, .reusable = true}, SHIFT(2717), - [6315] = {.count = 1, .reusable = true}, SHIFT(2718), - [6317] = {.count = 1, .reusable = true}, SHIFT(2719), - [6319] = {.count = 1, .reusable = false}, SHIFT(2720), - [6321] = {.count = 1, .reusable = true}, SHIFT(2720), - [6323] = {.count = 1, .reusable = true}, SHIFT(2721), - [6325] = {.count = 1, .reusable = false}, SHIFT(2722), - [6327] = {.count = 1, .reusable = true}, SHIFT(2722), - [6329] = {.count = 1, .reusable = true}, SHIFT(2723), - [6331] = {.count = 1, .reusable = false}, SHIFT(2724), - [6333] = {.count = 1, .reusable = true}, SHIFT(2724), - [6335] = {.count = 1, .reusable = true}, SHIFT(2725), - [6337] = {.count = 1, .reusable = true}, SHIFT(2726), - [6339] = {.count = 1, .reusable = true}, SHIFT(2727), - [6341] = {.count = 1, .reusable = true}, SHIFT(2728), - [6343] = {.count = 1, .reusable = true}, SHIFT(2729), - [6345] = {.count = 1, .reusable = false}, SHIFT(2731), - [6347] = {.count = 1, .reusable = false}, SHIFT(2732), - [6349] = {.count = 1, .reusable = true}, SHIFT(2734), - [6351] = {.count = 1, .reusable = true}, SHIFT(2735), - [6353] = {.count = 1, .reusable = false}, SHIFT(2736), - [6355] = {.count = 1, .reusable = false}, SHIFT(2734), - [6357] = {.count = 1, .reusable = true}, SHIFT(2737), - [6359] = {.count = 1, .reusable = true}, SHIFT(2738), - [6361] = {.count = 1, .reusable = true}, SHIFT(2739), - [6363] = {.count = 1, .reusable = false}, SHIFT(2740), - [6365] = {.count = 1, .reusable = false}, SHIFT(2738), - [6367] = {.count = 1, .reusable = true}, SHIFT(2748), - [6369] = {.count = 1, .reusable = true}, SHIFT(2749), - [6371] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2551), - [6374] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2552), - [6377] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2553), - [6380] = {.count = 1, .reusable = true}, SHIFT(2751), - [6382] = {.count = 1, .reusable = true}, SHIFT(2752), - [6384] = {.count = 1, .reusable = true}, SHIFT(2753), - [6386] = {.count = 1, .reusable = true}, SHIFT(2754), - [6388] = {.count = 1, .reusable = false}, SHIFT(2755), - [6390] = {.count = 1, .reusable = true}, SHIFT(2755), - [6392] = {.count = 1, .reusable = false}, SHIFT(2756), - [6394] = {.count = 1, .reusable = true}, SHIFT(2757), - [6396] = {.count = 1, .reusable = true}, SHIFT(2759), - [6398] = {.count = 1, .reusable = true}, SHIFT(2760), - [6400] = {.count = 1, .reusable = true}, SHIFT(2761), - [6402] = {.count = 1, .reusable = true}, SHIFT(2762), - [6404] = {.count = 1, .reusable = true}, SHIFT(2763), - [6406] = {.count = 1, .reusable = true}, SHIFT(2764), - [6408] = {.count = 1, .reusable = false}, SHIFT(2765), - [6410] = {.count = 1, .reusable = true}, SHIFT(2765), - [6412] = {.count = 1, .reusable = true}, SHIFT(2766), - [6414] = {.count = 1, .reusable = false}, SHIFT(2767), - [6416] = {.count = 1, .reusable = true}, SHIFT(2767), - [6418] = {.count = 1, .reusable = true}, SHIFT(2768), - [6420] = {.count = 1, .reusable = true}, SHIFT(2769), - [6422] = {.count = 1, .reusable = true}, SHIFT(2770), - [6424] = {.count = 1, .reusable = false}, SHIFT(2771), - [6426] = {.count = 1, .reusable = true}, SHIFT(2771), - [6428] = {.count = 1, .reusable = false}, SHIFT(2772), - [6430] = {.count = 1, .reusable = true}, SHIFT(2773), - [6432] = {.count = 1, .reusable = true}, SHIFT(2775), - [6434] = {.count = 1, .reusable = true}, SHIFT(2776), - [6436] = {.count = 1, .reusable = true}, SHIFT(2777), - [6438] = {.count = 1, .reusable = true}, SHIFT(2778), - [6440] = {.count = 1, .reusable = true}, SHIFT(2779), - [6442] = {.count = 1, .reusable = true}, SHIFT(2780), - [6444] = {.count = 1, .reusable = false}, SHIFT(2781), - [6446] = {.count = 1, .reusable = true}, SHIFT(2781), - [6448] = {.count = 1, .reusable = true}, SHIFT(2782), - [6450] = {.count = 1, .reusable = false}, SHIFT(2783), - [6452] = {.count = 1, .reusable = true}, SHIFT(2783), - [6454] = {.count = 1, .reusable = false}, SHIFT(2784), - [6456] = {.count = 1, .reusable = false}, SHIFT(2785), - [6458] = {.count = 1, .reusable = true}, SHIFT(2786), - [6460] = {.count = 1, .reusable = true}, SHIFT(2787), - [6462] = {.count = 1, .reusable = true}, SHIFT(2788), - [6464] = {.count = 1, .reusable = true}, SHIFT(2789), - [6466] = {.count = 1, .reusable = false}, SHIFT(2791), - [6468] = {.count = 1, .reusable = false}, SHIFT(2792), - [6470] = {.count = 1, .reusable = true}, SHIFT(2793), - [6472] = {.count = 1, .reusable = true}, SHIFT(2794), - [6474] = {.count = 1, .reusable = false}, SHIFT(2796), - [6476] = {.count = 1, .reusable = true}, SHIFT(2796), - [6478] = {.count = 1, .reusable = true}, SHIFT(2795), - [6480] = {.count = 1, .reusable = true}, SHIFT(2797), - [6482] = {.count = 1, .reusable = true}, SHIFT(2798), - [6484] = {.count = 1, .reusable = false}, SHIFT(2799), - [6486] = {.count = 1, .reusable = false}, SHIFT(2798), - [6488] = {.count = 1, .reusable = true}, SHIFT(2801), - [6490] = {.count = 1, .reusable = false}, SHIFT(2803), - [6492] = {.count = 1, .reusable = true}, SHIFT(2803), - [6494] = {.count = 1, .reusable = true}, SHIFT(2802), - [6496] = {.count = 1, .reusable = true}, SHIFT(2804), - [6498] = {.count = 1, .reusable = false}, SHIFT(2806), - [6500] = {.count = 1, .reusable = true}, SHIFT(2806), - [6502] = {.count = 1, .reusable = true}, SHIFT(2805), - [6504] = {.count = 1, .reusable = true}, SHIFT(2807), - [6506] = {.count = 1, .reusable = true}, SHIFT(2808), - [6508] = {.count = 1, .reusable = true}, SHIFT(2810), - [6510] = {.count = 1, .reusable = true}, SHIFT(2811), - [6512] = {.count = 1, .reusable = true}, SHIFT(2812), - [6514] = {.count = 1, .reusable = true}, SHIFT(2813), - [6516] = {.count = 1, .reusable = false}, SHIFT(2814), - [6518] = {.count = 1, .reusable = true}, SHIFT(2814), - [6520] = {.count = 1, .reusable = true}, SHIFT(2815), - [6522] = {.count = 1, .reusable = false}, SHIFT(2816), - [6524] = {.count = 1, .reusable = true}, SHIFT(2816), - [6526] = {.count = 1, .reusable = true}, SHIFT(2817), - [6528] = {.count = 1, .reusable = false}, SHIFT(2818), - [6530] = {.count = 1, .reusable = true}, SHIFT(2818), - [6532] = {.count = 1, .reusable = true}, SHIFT(2819), - [6534] = {.count = 1, .reusable = true}, SHIFT(2820), - [6536] = {.count = 1, .reusable = true}, SHIFT(2821), - [6538] = {.count = 1, .reusable = true}, SHIFT(2822), - [6540] = {.count = 1, .reusable = true}, SHIFT(2823), - [6542] = {.count = 1, .reusable = true}, SHIFT(2824), - [6544] = {.count = 1, .reusable = false}, SHIFT(2825), - [6546] = {.count = 1, .reusable = true}, SHIFT(2825), - [6548] = {.count = 1, .reusable = true}, SHIFT(2826), - [6550] = {.count = 1, .reusable = false}, SHIFT(2827), - [6552] = {.count = 1, .reusable = true}, SHIFT(2827), - [6554] = {.count = 1, .reusable = true}, SHIFT(2828), - [6556] = {.count = 1, .reusable = false}, SHIFT(2829), - [6558] = {.count = 1, .reusable = true}, SHIFT(2829), - [6560] = {.count = 1, .reusable = true}, SHIFT(2830), - [6562] = {.count = 1, .reusable = true}, SHIFT(2831), - [6564] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2729), - [6567] = {.count = 1, .reusable = false}, SHIFT(2832), - [6569] = {.count = 1, .reusable = true}, SHIFT(2833), - [6571] = {.count = 1, .reusable = false}, SHIFT(2834), - [6573] = {.count = 1, .reusable = true}, SHIFT(2835), - [6575] = {.count = 1, .reusable = true}, SHIFT(2837), - [6577] = {.count = 1, .reusable = true}, SHIFT(2838), - [6579] = {.count = 1, .reusable = true}, SHIFT(2839), - [6581] = {.count = 1, .reusable = true}, SHIFT(2840), - [6583] = {.count = 1, .reusable = false}, SHIFT(2842), - [6585] = {.count = 1, .reusable = true}, SHIFT(2842), - [6587] = {.count = 1, .reusable = true}, SHIFT(2841), - [6589] = {.count = 1, .reusable = true}, SHIFT(2843), - [6591] = {.count = 1, .reusable = false}, SHIFT(2845), - [6593] = {.count = 1, .reusable = true}, SHIFT(2845), - [6595] = {.count = 1, .reusable = true}, SHIFT(2844), - [6597] = {.count = 1, .reusable = false}, SHIFT(2847), - [6599] = {.count = 1, .reusable = true}, SHIFT(2847), - [6601] = {.count = 1, .reusable = true}, SHIFT(2846), - [6603] = {.count = 1, .reusable = true}, SHIFT(2848), - [6605] = {.count = 1, .reusable = true}, SHIFT(2849), - [6607] = {.count = 1, .reusable = true}, SHIFT(2850), - [6609] = {.count = 1, .reusable = true}, SHIFT(2851), - [6611] = {.count = 1, .reusable = true}, SHIFT(2852), - [6613] = {.count = 1, .reusable = true}, SHIFT(2853), - [6615] = {.count = 1, .reusable = true}, SHIFT(2854), - [6617] = {.count = 1, .reusable = true}, SHIFT(2855), - [6619] = {.count = 1, .reusable = true}, SHIFT(2856), - [6621] = {.count = 1, .reusable = true}, SHIFT(2857), - [6623] = {.count = 1, .reusable = true}, SHIFT(2858), - [6625] = {.count = 1, .reusable = true}, SHIFT(2859), - [6627] = {.count = 1, .reusable = false}, SHIFT(2860), - [6629] = {.count = 1, .reusable = true}, SHIFT(2860), - [6631] = {.count = 1, .reusable = false}, SHIFT(2861), - [6633] = {.count = 1, .reusable = true}, SHIFT(2862), - [6635] = {.count = 1, .reusable = true}, SHIFT(2864), - [6637] = {.count = 1, .reusable = true}, SHIFT(2865), - [6639] = {.count = 1, .reusable = true}, SHIFT(2866), - [6641] = {.count = 1, .reusable = true}, SHIFT(2867), - [6643] = {.count = 1, .reusable = true}, SHIFT(2868), - [6645] = {.count = 1, .reusable = true}, SHIFT(2869), - [6647] = {.count = 1, .reusable = false}, SHIFT(2870), - [6649] = {.count = 1, .reusable = true}, SHIFT(2870), - [6651] = {.count = 1, .reusable = true}, SHIFT(2871), - [6653] = {.count = 1, .reusable = false}, SHIFT(2872), - [6655] = {.count = 1, .reusable = true}, SHIFT(2872), - [6657] = {.count = 1, .reusable = true}, SHIFT(2873), - [6659] = {.count = 1, .reusable = true}, SHIFT(2874), - [6661] = {.count = 1, .reusable = true}, SHIFT(2875), - [6663] = {.count = 1, .reusable = true}, SHIFT(2876), - [6665] = {.count = 1, .reusable = false}, SHIFT(2877), - [6667] = {.count = 1, .reusable = true}, SHIFT(2877), - [6669] = {.count = 1, .reusable = true}, SHIFT(2878), - [6671] = {.count = 1, .reusable = false}, SHIFT(2879), - [6673] = {.count = 1, .reusable = true}, SHIFT(2879), - [6675] = {.count = 1, .reusable = true}, SHIFT(2880), - [6677] = {.count = 1, .reusable = false}, SHIFT(2881), - [6679] = {.count = 1, .reusable = true}, SHIFT(2881), - [6681] = {.count = 1, .reusable = true}, SHIFT(2882), - [6683] = {.count = 1, .reusable = true}, SHIFT(2883), - [6685] = {.count = 1, .reusable = true}, SHIFT(2884), - [6687] = {.count = 1, .reusable = true}, SHIFT(2885), - [6689] = {.count = 1, .reusable = true}, SHIFT(2886), + [2022] = {.count = 1, .reusable = false}, SHIFT(966), + [2024] = {.count = 1, .reusable = false}, SHIFT(967), + [2026] = {.count = 1, .reusable = true}, SHIFT(968), + [2028] = {.count = 1, .reusable = true}, SHIFT(969), + [2030] = {.count = 1, .reusable = false}, SHIFT(971), + [2032] = {.count = 1, .reusable = true}, SHIFT(971), + [2034] = {.count = 1, .reusable = true}, SHIFT(970), + [2036] = {.count = 1, .reusable = true}, SHIFT(972), + [2038] = {.count = 1, .reusable = true}, SHIFT(973), + [2040] = {.count = 1, .reusable = false}, SHIFT(974), + [2042] = {.count = 1, .reusable = false}, SHIFT(973), + [2044] = {.count = 1, .reusable = true}, SHIFT(976), + [2046] = {.count = 1, .reusable = false}, SHIFT(978), + [2048] = {.count = 1, .reusable = true}, SHIFT(978), + [2050] = {.count = 1, .reusable = true}, SHIFT(977), + [2052] = {.count = 1, .reusable = true}, SHIFT(979), + [2054] = {.count = 1, .reusable = false}, SHIFT(981), + [2056] = {.count = 1, .reusable = true}, SHIFT(981), + [2058] = {.count = 1, .reusable = true}, SHIFT(980), + [2060] = {.count = 1, .reusable = true}, SHIFT(982), + [2062] = {.count = 1, .reusable = true}, SHIFT(983), + [2064] = {.count = 1, .reusable = true}, SHIFT(984), + [2066] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [2068] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), + [2070] = {.count = 1, .reusable = true}, SHIFT(990), + [2072] = {.count = 1, .reusable = true}, SHIFT(989), + [2074] = {.count = 1, .reusable = false}, SHIFT(991), + [2076] = {.count = 1, .reusable = true}, SHIFT(991), + [2078] = {.count = 1, .reusable = false}, SHIFT(992), + [2080] = {.count = 1, .reusable = false}, SHIFT(156), + [2082] = {.count = 1, .reusable = false}, SHIFT(993), + [2084] = {.count = 1, .reusable = false}, SHIFT(159), + [2086] = {.count = 1, .reusable = false}, SHIFT(160), + [2088] = {.count = 1, .reusable = false}, SHIFT(161), + [2090] = {.count = 1, .reusable = false}, SHIFT(162), + [2092] = {.count = 1, .reusable = false}, SHIFT(994), + [2094] = {.count = 1, .reusable = true}, SHIFT(995), + [2096] = {.count = 1, .reusable = true}, SHIFT(996), + [2098] = {.count = 1, .reusable = true}, SHIFT(998), + [2100] = {.count = 1, .reusable = true}, SHIFT(999), + [2102] = {.count = 1, .reusable = true}, SHIFT(1000), + [2104] = {.count = 1, .reusable = true}, SHIFT(1007), + [2106] = {.count = 1, .reusable = true}, SHIFT(1008), + [2108] = {.count = 1, .reusable = true}, SHIFT(1010), + [2110] = {.count = 1, .reusable = true}, SHIFT(1012), + [2112] = {.count = 1, .reusable = true}, SHIFT(1013), + [2114] = {.count = 1, .reusable = true}, SHIFT(1019), + [2116] = {.count = 1, .reusable = false}, SHIFT(1023), + [2118] = {.count = 1, .reusable = true}, SHIFT(1023), + [2120] = {.count = 1, .reusable = false}, SHIFT(1024), + [2122] = {.count = 1, .reusable = false}, SHIFT(1025), + [2124] = {.count = 1, .reusable = true}, SHIFT(1026), + [2126] = {.count = 1, .reusable = true}, SHIFT(1027), + [2128] = {.count = 1, .reusable = true}, SHIFT(1028), + [2130] = {.count = 1, .reusable = true}, SHIFT(1029), + [2132] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [2134] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [2136] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [2138] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [2140] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [2142] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [2144] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), + [2146] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), + [2148] = {.count = 1, .reusable = true}, SHIFT(1035), + [2150] = {.count = 1, .reusable = false}, SHIFT(1036), + [2152] = {.count = 1, .reusable = false}, SHIFT(1035), + [2154] = {.count = 1, .reusable = true}, SHIFT(1037), + [2156] = {.count = 1, .reusable = true}, SHIFT(1038), + [2158] = {.count = 1, .reusable = true}, SHIFT(1039), + [2160] = {.count = 1, .reusable = false}, SHIFT(1040), + [2162] = {.count = 1, .reusable = false}, SHIFT(1038), + [2164] = {.count = 1, .reusable = true}, SHIFT(1043), + [2166] = {.count = 1, .reusable = true}, SHIFT(1042), + [2168] = {.count = 1, .reusable = true}, SHIFT(1044), + [2170] = {.count = 1, .reusable = true}, SHIFT(1045), + [2172] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [2174] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [2176] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [2178] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [2180] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [2182] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [2184] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2186] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2188] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [2190] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [2192] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [2194] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [2196] = {.count = 1, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2198] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(194), + [2201] = {.count = 1, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2203] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(196), + [2206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(197), + [2209] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(198), + [2212] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(195), + [2215] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(199), + [2218] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), + [2221] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(18), + [2224] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(200), + [2227] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), + [2230] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [2233] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [2236] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), + [2239] = {.count = 1, .reusable = true}, SHIFT(1050), + [2241] = {.count = 1, .reusable = false}, SHIFT(723), + [2243] = {.count = 1, .reusable = true}, SHIFT(1051), + [2245] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [2247] = {.count = 1, .reusable = true}, SHIFT(1053), + [2249] = {.count = 1, .reusable = true}, SHIFT(1054), + [2251] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [2253] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [2255] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [2257] = {.count = 1, .reusable = true}, SHIFT(1055), + [2259] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2261] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2263] = {.count = 1, .reusable = false}, SHIFT(1057), + [2265] = {.count = 1, .reusable = false}, SHIFT(1058), + [2267] = {.count = 1, .reusable = true}, SHIFT(1060), + [2269] = {.count = 1, .reusable = true}, SHIFT(1061), + [2271] = {.count = 1, .reusable = false}, SHIFT(1062), + [2273] = {.count = 1, .reusable = false}, SHIFT(1060), + [2275] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2277] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2279] = {.count = 1, .reusable = true}, SHIFT(1063), + [2281] = {.count = 1, .reusable = true}, SHIFT(1064), + [2283] = {.count = 1, .reusable = true}, SHIFT(1065), + [2285] = {.count = 1, .reusable = false}, SHIFT(1066), + [2287] = {.count = 1, .reusable = false}, SHIFT(1064), + [2289] = {.count = 1, .reusable = true}, SHIFT(1074), + [2291] = {.count = 1, .reusable = true}, SHIFT(1076), + [2293] = {.count = 1, .reusable = false}, SHIFT(1078), + [2295] = {.count = 1, .reusable = false}, SHIFT(1079), + [2297] = {.count = 1, .reusable = true}, SHIFT(1080), + [2299] = {.count = 1, .reusable = true}, SHIFT(1081), + [2301] = {.count = 1, .reusable = false}, SHIFT(1083), + [2303] = {.count = 1, .reusable = true}, SHIFT(1083), + [2305] = {.count = 1, .reusable = true}, SHIFT(1082), + [2307] = {.count = 1, .reusable = true}, SHIFT(1084), + [2309] = {.count = 1, .reusable = true}, SHIFT(1085), + [2311] = {.count = 1, .reusable = false}, SHIFT(1086), + [2313] = {.count = 1, .reusable = false}, SHIFT(1085), + [2315] = {.count = 1, .reusable = true}, SHIFT(1088), + [2317] = {.count = 1, .reusable = false}, SHIFT(1090), + [2319] = {.count = 1, .reusable = true}, SHIFT(1090), + [2321] = {.count = 1, .reusable = true}, SHIFT(1089), + [2323] = {.count = 1, .reusable = true}, SHIFT(1091), + [2325] = {.count = 1, .reusable = false}, SHIFT(1093), + [2327] = {.count = 1, .reusable = true}, SHIFT(1093), + [2329] = {.count = 1, .reusable = true}, SHIFT(1092), + [2331] = {.count = 1, .reusable = true}, SHIFT(1094), + [2333] = {.count = 1, .reusable = true}, SHIFT(1095), + [2335] = {.count = 1, .reusable = true}, SHIFT(1096), + [2337] = {.count = 1, .reusable = true}, SHIFT(1097), + [2339] = {.count = 1, .reusable = false}, SHIFT(1098), + [2341] = {.count = 1, .reusable = true}, SHIFT(1099), + [2343] = {.count = 1, .reusable = true}, SHIFT(1100), + [2345] = {.count = 1, .reusable = false}, SHIFT(1101), + [2347] = {.count = 1, .reusable = true}, SHIFT(1102), + [2349] = {.count = 1, .reusable = true}, SHIFT(1103), + [2351] = {.count = 1, .reusable = true}, SHIFT(1104), + [2353] = {.count = 1, .reusable = true}, SHIFT(1105), + [2355] = {.count = 1, .reusable = true}, SHIFT(1106), + [2357] = {.count = 1, .reusable = false}, SHIFT(1102), + [2359] = {.count = 1, .reusable = true}, SHIFT(1098), + [2361] = {.count = 1, .reusable = false}, SHIFT(1108), + [2363] = {.count = 1, .reusable = true}, SHIFT(1108), + [2365] = {.count = 1, .reusable = true}, SHIFT(1109), + [2367] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), + [2369] = {.count = 1, .reusable = true}, SHIFT(1110), + [2371] = {.count = 1, .reusable = false}, SHIFT(1112), + [2373] = {.count = 1, .reusable = false}, SHIFT(1113), + [2375] = {.count = 1, .reusable = true}, SHIFT(1114), + [2377] = {.count = 1, .reusable = true}, SHIFT(1115), + [2379] = {.count = 1, .reusable = false}, SHIFT(1117), + [2381] = {.count = 1, .reusable = true}, SHIFT(1117), + [2383] = {.count = 1, .reusable = true}, SHIFT(1116), + [2385] = {.count = 1, .reusable = true}, SHIFT(1118), + [2387] = {.count = 1, .reusable = true}, SHIFT(1119), + [2389] = {.count = 1, .reusable = false}, SHIFT(1120), + [2391] = {.count = 1, .reusable = false}, SHIFT(1119), + [2393] = {.count = 1, .reusable = true}, SHIFT(1122), + [2395] = {.count = 1, .reusable = false}, SHIFT(1124), + [2397] = {.count = 1, .reusable = true}, SHIFT(1124), + [2399] = {.count = 1, .reusable = true}, SHIFT(1123), + [2401] = {.count = 1, .reusable = true}, SHIFT(1125), + [2403] = {.count = 1, .reusable = false}, SHIFT(1127), + [2405] = {.count = 1, .reusable = true}, SHIFT(1127), + [2407] = {.count = 1, .reusable = true}, SHIFT(1126), + [2409] = {.count = 1, .reusable = true}, SHIFT(1128), + [2411] = {.count = 1, .reusable = true}, SHIFT(1129), + [2413] = {.count = 1, .reusable = false}, SHIFT(1132), + [2415] = {.count = 1, .reusable = false}, SHIFT(1134), + [2417] = {.count = 1, .reusable = false}, SHIFT(639), + [2419] = {.count = 1, .reusable = false}, SHIFT(43), + [2421] = {.count = 1, .reusable = false}, SHIFT(640), + [2423] = {.count = 1, .reusable = false}, SHIFT(46), + [2425] = {.count = 1, .reusable = false}, SHIFT(47), + [2427] = {.count = 1, .reusable = false}, SHIFT(48), + [2429] = {.count = 1, .reusable = false}, SHIFT(49), + [2431] = {.count = 1, .reusable = true}, SHIFT(1134), + [2433] = {.count = 1, .reusable = false}, SHIFT(1136), + [2435] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [2437] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [2439] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), + [2441] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), + [2443] = {.count = 1, .reusable = false}, SHIFT(1138), + [2445] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 4), + [2447] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 4), + [2449] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), + [2451] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), + [2453] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), + [2455] = {.count = 1, .reusable = true}, SHIFT(1143), + [2457] = {.count = 1, .reusable = false}, SHIFT(1143), + [2459] = {.count = 1, .reusable = true}, SHIFT(649), + [2461] = {.count = 1, .reusable = true}, SHIFT(650), + [2463] = {.count = 1, .reusable = false}, SHIFT(1148), + [2465] = {.count = 1, .reusable = true}, SHIFT(1149), + [2467] = {.count = 1, .reusable = true}, SHIFT(1150), + [2469] = {.count = 1, .reusable = false}, SHIFT(1150), + [2471] = {.count = 1, .reusable = false}, SHIFT(1155), + [2473] = {.count = 1, .reusable = true}, SHIFT(1155), + [2475] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(242), + [2478] = {.count = 1, .reusable = false}, SHIFT(1156), + [2480] = {.count = 1, .reusable = false}, SHIFT(1157), + [2482] = {.count = 1, .reusable = false}, SHIFT(1160), + [2484] = {.count = 1, .reusable = true}, SHIFT(1160), + [2486] = {.count = 1, .reusable = true}, SHIFT(1161), + [2488] = {.count = 1, .reusable = false}, SHIFT(1162), + [2490] = {.count = 1, .reusable = true}, SHIFT(1163), + [2492] = {.count = 1, .reusable = true}, SHIFT(1165), + [2494] = {.count = 1, .reusable = true}, SHIFT(1166), + [2496] = {.count = 1, .reusable = true}, SHIFT(1167), + [2498] = {.count = 1, .reusable = true}, SHIFT(1168), + [2500] = {.count = 1, .reusable = false}, SHIFT(1170), + [2502] = {.count = 1, .reusable = true}, SHIFT(1170), + [2504] = {.count = 1, .reusable = true}, SHIFT(1169), + [2506] = {.count = 1, .reusable = true}, SHIFT(1171), + [2508] = {.count = 1, .reusable = false}, SHIFT(1173), + [2510] = {.count = 1, .reusable = true}, SHIFT(1173), + [2512] = {.count = 1, .reusable = true}, SHIFT(1172), + [2514] = {.count = 1, .reusable = false}, SHIFT(1175), + [2516] = {.count = 1, .reusable = true}, SHIFT(1175), + [2518] = {.count = 1, .reusable = true}, SHIFT(1174), + [2520] = {.count = 1, .reusable = true}, SHIFT(1176), + [2522] = {.count = 1, .reusable = true}, SHIFT(1177), + [2524] = {.count = 1, .reusable = true}, SHIFT(1178), + [2526] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [2528] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [2530] = {.count = 1, .reusable = false}, SHIFT(1180), + [2532] = {.count = 1, .reusable = true}, SHIFT(1180), + [2534] = {.count = 1, .reusable = true}, SHIFT(1181), + [2536] = {.count = 1, .reusable = false}, SHIFT(1183), + [2538] = {.count = 1, .reusable = true}, SHIFT(1183), + [2540] = {.count = 1, .reusable = true}, SHIFT(1184), + [2542] = {.count = 1, .reusable = true}, SHIFT(1185), + [2544] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [2546] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [2548] = {.count = 1, .reusable = true}, SHIFT(1189), + [2550] = {.count = 1, .reusable = true}, SHIFT(1190), + [2552] = {.count = 1, .reusable = false}, SHIFT(1191), + [2554] = {.count = 1, .reusable = true}, SHIFT(1192), + [2556] = {.count = 1, .reusable = false}, SHIFT(1193), + [2558] = {.count = 1, .reusable = false}, SHIFT(1194), + [2560] = {.count = 1, .reusable = true}, SHIFT(1196), + [2562] = {.count = 1, .reusable = true}, SHIFT(1197), + [2564] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(273), + [2567] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(274), + [2570] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(275), + [2573] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(278), + [2576] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(279), + [2579] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), + [2581] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), + [2583] = {.count = 1, .reusable = true}, SHIFT(1201), + [2585] = {.count = 1, .reusable = true}, SHIFT(1202), + [2587] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(287), + [2590] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(289), + [2593] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(290), + [2596] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(288), + [2599] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(291), + [2602] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(292), + [2605] = {.count = 1, .reusable = true}, SHIFT(1204), + [2607] = {.count = 1, .reusable = true}, SHIFT(1206), + [2609] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [2611] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [2613] = {.count = 1, .reusable = false}, SHIFT(301), + [2615] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(305), + [2618] = {.count = 1, .reusable = false}, SHIFT(1209), + [2620] = {.count = 1, .reusable = true}, SHIFT(1210), + [2622] = {.count = 1, .reusable = false}, SHIFT(1211), + [2624] = {.count = 1, .reusable = true}, SHIFT(1212), + [2626] = {.count = 1, .reusable = true}, SHIFT(1214), + [2628] = {.count = 1, .reusable = true}, SHIFT(1215), + [2630] = {.count = 1, .reusable = true}, SHIFT(1216), + [2632] = {.count = 1, .reusable = true}, SHIFT(1217), + [2634] = {.count = 1, .reusable = false}, SHIFT(1219), + [2636] = {.count = 1, .reusable = true}, SHIFT(1219), + [2638] = {.count = 1, .reusable = true}, SHIFT(1218), + [2640] = {.count = 1, .reusable = true}, SHIFT(1220), + [2642] = {.count = 1, .reusable = false}, SHIFT(1222), + [2644] = {.count = 1, .reusable = true}, SHIFT(1222), + [2646] = {.count = 1, .reusable = true}, SHIFT(1221), + [2648] = {.count = 1, .reusable = false}, SHIFT(1224), + [2650] = {.count = 1, .reusable = true}, SHIFT(1224), + [2652] = {.count = 1, .reusable = true}, SHIFT(1223), + [2654] = {.count = 1, .reusable = true}, SHIFT(1225), + [2656] = {.count = 1, .reusable = true}, SHIFT(1226), + [2658] = {.count = 1, .reusable = true}, SHIFT(1227), + [2660] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), + [2662] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), + [2664] = {.count = 1, .reusable = false}, SHIFT(1228), + [2666] = {.count = 1, .reusable = true}, SHIFT(1228), + [2668] = {.count = 1, .reusable = true}, SHIFT(1229), + [2670] = {.count = 1, .reusable = true}, SHIFT(1230), + [2672] = {.count = 1, .reusable = false}, SHIFT(1231), + [2674] = {.count = 1, .reusable = true}, SHIFT(1232), + [2676] = {.count = 1, .reusable = true}, SHIFT(1233), + [2678] = {.count = 1, .reusable = true}, SHIFT(1234), + [2680] = {.count = 1, .reusable = true}, SHIFT(1235), + [2682] = {.count = 1, .reusable = true}, SHIFT(1236), + [2684] = {.count = 1, .reusable = true}, SHIFT(1238), + [2686] = {.count = 1, .reusable = true}, SHIFT(1239), + [2688] = {.count = 1, .reusable = true}, SHIFT(1240), + [2690] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 4), + [2692] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 4), + [2694] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(329), + [2697] = {.count = 1, .reusable = false}, SHIFT(1243), + [2699] = {.count = 1, .reusable = true}, SHIFT(1244), + [2701] = {.count = 1, .reusable = false}, SHIFT(1245), + [2703] = {.count = 1, .reusable = true}, SHIFT(1246), + [2705] = {.count = 1, .reusable = true}, SHIFT(1248), + [2707] = {.count = 1, .reusable = true}, SHIFT(1249), + [2709] = {.count = 1, .reusable = true}, SHIFT(1250), + [2711] = {.count = 1, .reusable = true}, SHIFT(1251), + [2713] = {.count = 1, .reusable = false}, SHIFT(1253), + [2715] = {.count = 1, .reusable = true}, SHIFT(1253), + [2717] = {.count = 1, .reusable = true}, SHIFT(1252), + [2719] = {.count = 1, .reusable = true}, SHIFT(1254), + [2721] = {.count = 1, .reusable = false}, SHIFT(1256), + [2723] = {.count = 1, .reusable = true}, SHIFT(1256), + [2725] = {.count = 1, .reusable = true}, SHIFT(1255), + [2727] = {.count = 1, .reusable = false}, SHIFT(1258), + [2729] = {.count = 1, .reusable = true}, SHIFT(1258), + [2731] = {.count = 1, .reusable = true}, SHIFT(1257), + [2733] = {.count = 1, .reusable = true}, SHIFT(1259), + [2735] = {.count = 1, .reusable = true}, SHIFT(1260), + [2737] = {.count = 1, .reusable = true}, SHIFT(1261), + [2739] = {.count = 1, .reusable = true}, SHIFT(1262), + [2741] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(351), + [2744] = {.count = 1, .reusable = false}, SHIFT(1264), + [2746] = {.count = 1, .reusable = true}, SHIFT(1265), + [2748] = {.count = 1, .reusable = false}, SHIFT(1266), + [2750] = {.count = 1, .reusable = true}, SHIFT(1267), + [2752] = {.count = 1, .reusable = true}, SHIFT(1269), + [2754] = {.count = 1, .reusable = true}, SHIFT(1270), + [2756] = {.count = 1, .reusable = true}, SHIFT(1271), + [2758] = {.count = 1, .reusable = true}, SHIFT(1272), + [2760] = {.count = 1, .reusable = false}, SHIFT(1274), + [2762] = {.count = 1, .reusable = true}, SHIFT(1274), + [2764] = {.count = 1, .reusable = true}, SHIFT(1273), + [2766] = {.count = 1, .reusable = true}, SHIFT(1275), + [2768] = {.count = 1, .reusable = false}, SHIFT(1277), + [2770] = {.count = 1, .reusable = true}, SHIFT(1277), + [2772] = {.count = 1, .reusable = true}, SHIFT(1276), + [2774] = {.count = 1, .reusable = false}, SHIFT(1279), + [2776] = {.count = 1, .reusable = true}, SHIFT(1279), + [2778] = {.count = 1, .reusable = true}, SHIFT(1278), + [2780] = {.count = 1, .reusable = true}, SHIFT(1280), + [2782] = {.count = 1, .reusable = true}, SHIFT(1281), + [2784] = {.count = 1, .reusable = true}, SHIFT(1282), + [2786] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(371), + [2789] = {.count = 1, .reusable = false}, SHIFT(1283), + [2791] = {.count = 1, .reusable = true}, SHIFT(1284), + [2793] = {.count = 1, .reusable = false}, SHIFT(1285), + [2795] = {.count = 1, .reusable = true}, SHIFT(1286), + [2797] = {.count = 1, .reusable = true}, SHIFT(1288), + [2799] = {.count = 1, .reusable = true}, SHIFT(1289), + [2801] = {.count = 1, .reusable = true}, SHIFT(1290), + [2803] = {.count = 1, .reusable = true}, SHIFT(1291), + [2805] = {.count = 1, .reusable = false}, SHIFT(1293), + [2807] = {.count = 1, .reusable = true}, SHIFT(1293), + [2809] = {.count = 1, .reusable = true}, SHIFT(1292), + [2811] = {.count = 1, .reusable = true}, SHIFT(1294), + [2813] = {.count = 1, .reusable = false}, SHIFT(1296), + [2815] = {.count = 1, .reusable = true}, SHIFT(1296), + [2817] = {.count = 1, .reusable = true}, SHIFT(1295), + [2819] = {.count = 1, .reusable = false}, SHIFT(1298), + [2821] = {.count = 1, .reusable = true}, SHIFT(1298), + [2823] = {.count = 1, .reusable = true}, SHIFT(1297), + [2825] = {.count = 1, .reusable = true}, SHIFT(1299), + [2827] = {.count = 1, .reusable = true}, SHIFT(1300), + [2829] = {.count = 1, .reusable = true}, SHIFT(1301), + [2831] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(391), + [2834] = {.count = 1, .reusable = false}, SHIFT(1302), + [2836] = {.count = 1, .reusable = true}, SHIFT(1303), + [2838] = {.count = 1, .reusable = false}, SHIFT(1304), + [2840] = {.count = 1, .reusable = true}, SHIFT(1305), + [2842] = {.count = 1, .reusable = true}, SHIFT(1307), + [2844] = {.count = 1, .reusable = true}, SHIFT(1308), + [2846] = {.count = 1, .reusable = true}, SHIFT(1309), + [2848] = {.count = 1, .reusable = true}, SHIFT(1310), + [2850] = {.count = 1, .reusable = false}, SHIFT(1312), + [2852] = {.count = 1, .reusable = true}, SHIFT(1312), + [2854] = {.count = 1, .reusable = true}, SHIFT(1311), + [2856] = {.count = 1, .reusable = true}, SHIFT(1313), + [2858] = {.count = 1, .reusable = false}, SHIFT(1315), + [2860] = {.count = 1, .reusable = true}, SHIFT(1315), + [2862] = {.count = 1, .reusable = true}, SHIFT(1314), + [2864] = {.count = 1, .reusable = false}, SHIFT(1317), + [2866] = {.count = 1, .reusable = true}, SHIFT(1317), + [2868] = {.count = 1, .reusable = true}, SHIFT(1316), + [2870] = {.count = 1, .reusable = true}, SHIFT(1318), + [2872] = {.count = 1, .reusable = true}, SHIFT(1319), + [2874] = {.count = 1, .reusable = true}, SHIFT(1320), + [2876] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [2878] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), + [2880] = {.count = 1, .reusable = true}, SHIFT(1321), + [2882] = {.count = 1, .reusable = false}, SHIFT(1322), + [2884] = {.count = 1, .reusable = true}, SHIFT(1323), + [2886] = {.count = 1, .reusable = true}, SHIFT(1325), + [2888] = {.count = 1, .reusable = true}, SHIFT(1326), + [2890] = {.count = 1, .reusable = true}, SHIFT(1327), + [2892] = {.count = 1, .reusable = true}, SHIFT(1328), + [2894] = {.count = 1, .reusable = false}, SHIFT(1330), + [2896] = {.count = 1, .reusable = true}, SHIFT(1330), + [2898] = {.count = 1, .reusable = true}, SHIFT(1329), + [2900] = {.count = 1, .reusable = true}, SHIFT(1331), + [2902] = {.count = 1, .reusable = false}, SHIFT(1333), + [2904] = {.count = 1, .reusable = true}, SHIFT(1333), + [2906] = {.count = 1, .reusable = true}, SHIFT(1332), + [2908] = {.count = 1, .reusable = false}, SHIFT(1335), + [2910] = {.count = 1, .reusable = true}, SHIFT(1335), + [2912] = {.count = 1, .reusable = true}, SHIFT(1334), + [2914] = {.count = 1, .reusable = true}, SHIFT(1336), + [2916] = {.count = 1, .reusable = true}, SHIFT(1337), + [2918] = {.count = 1, .reusable = true}, SHIFT(1338), + [2920] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), + [2922] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), + [2924] = {.count = 1, .reusable = true}, SHIFT(1339), + [2926] = {.count = 1, .reusable = true}, SHIFT(1340), + [2928] = {.count = 1, .reusable = true}, SHIFT(1341), + [2930] = {.count = 1, .reusable = true}, SHIFT(1342), + [2932] = {.count = 1, .reusable = true}, SHIFT(1343), + [2934] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [2936] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [2938] = {.count = 1, .reusable = true}, SHIFT(1344), + [2940] = {.count = 1, .reusable = true}, SHIFT(1345), + [2942] = {.count = 1, .reusable = false}, SHIFT(1347), + [2944] = {.count = 1, .reusable = false}, SHIFT(1348), + [2946] = {.count = 1, .reusable = true}, SHIFT(1350), + [2948] = {.count = 1, .reusable = true}, SHIFT(1351), + [2950] = {.count = 1, .reusable = false}, SHIFT(1352), + [2952] = {.count = 1, .reusable = false}, SHIFT(1350), + [2954] = {.count = 1, .reusable = true}, SHIFT(1353), + [2956] = {.count = 1, .reusable = true}, SHIFT(1354), + [2958] = {.count = 1, .reusable = true}, SHIFT(1355), + [2960] = {.count = 1, .reusable = true}, SHIFT(1356), + [2962] = {.count = 1, .reusable = false}, SHIFT(1357), + [2964] = {.count = 1, .reusable = false}, SHIFT(1355), + [2966] = {.count = 1, .reusable = true}, SHIFT(1365), + [2968] = {.count = 1, .reusable = false}, SHIFT(1367), + [2970] = {.count = 1, .reusable = false}, SHIFT(1368), + [2972] = {.count = 1, .reusable = true}, SHIFT(1369), + [2974] = {.count = 1, .reusable = true}, SHIFT(1370), + [2976] = {.count = 1, .reusable = false}, SHIFT(1372), + [2978] = {.count = 1, .reusable = true}, SHIFT(1372), + [2980] = {.count = 1, .reusable = true}, SHIFT(1371), + [2982] = {.count = 1, .reusable = true}, SHIFT(1373), + [2984] = {.count = 1, .reusable = true}, SHIFT(1374), + [2986] = {.count = 1, .reusable = false}, SHIFT(1375), + [2988] = {.count = 1, .reusable = false}, SHIFT(1374), + [2990] = {.count = 1, .reusable = true}, SHIFT(1377), + [2992] = {.count = 1, .reusable = false}, SHIFT(1379), + [2994] = {.count = 1, .reusable = true}, SHIFT(1379), + [2996] = {.count = 1, .reusable = true}, SHIFT(1378), + [2998] = {.count = 1, .reusable = true}, SHIFT(1380), + [3000] = {.count = 1, .reusable = false}, SHIFT(1382), + [3002] = {.count = 1, .reusable = true}, SHIFT(1382), + [3004] = {.count = 1, .reusable = true}, SHIFT(1381), + [3006] = {.count = 1, .reusable = true}, SHIFT(1383), + [3008] = {.count = 1, .reusable = false}, SHIFT(1384), + [3010] = {.count = 1, .reusable = true}, SHIFT(1384), + [3012] = {.count = 1, .reusable = true}, SHIFT(1385), + [3014] = {.count = 1, .reusable = true}, SHIFT(1386), + [3016] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [3018] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [3020] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [3022] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(889), + [3025] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(431), + [3028] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(432), + [3031] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(433), + [3034] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(434), + [3037] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(889), + [3040] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(435), + [3043] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(437), + [3046] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(438), + [3049] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(439), + [3052] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(434), + [3055] = {.count = 1, .reusable = false}, SHIFT(1387), + [3057] = {.count = 1, .reusable = true}, SHIFT(1388), + [3059] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [3061] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [3063] = {.count = 1, .reusable = true}, SHIFT(1390), + [3065] = {.count = 1, .reusable = true}, SHIFT(1391), + [3067] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [3069] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [3071] = {.count = 1, .reusable = true}, SHIFT(1392), + [3073] = {.count = 1, .reusable = true}, SHIFT(1393), + [3075] = {.count = 1, .reusable = true}, SHIFT(1394), + [3077] = {.count = 1, .reusable = true}, SHIFT(1395), + [3079] = {.count = 1, .reusable = false}, SHIFT(1396), + [3081] = {.count = 1, .reusable = true}, SHIFT(1396), + [3083] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3085] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3087] = {.count = 1, .reusable = true}, SHIFT(1397), + [3089] = {.count = 1, .reusable = false}, SHIFT(1398), + [3091] = {.count = 1, .reusable = true}, SHIFT(1398), + [3093] = {.count = 1, .reusable = false}, SHIFT(1400), + [3095] = {.count = 1, .reusable = true}, SHIFT(1400), + [3097] = {.count = 1, .reusable = false}, SHIFT(1402), + [3099] = {.count = 1, .reusable = true}, SHIFT(1402), + [3101] = {.count = 1, .reusable = true}, SHIFT(1404), + [3103] = {.count = 1, .reusable = false}, SHIFT(1406), + [3105] = {.count = 1, .reusable = false}, SHIFT(1410), + [3107] = {.count = 1, .reusable = false}, SHIFT(1414), + [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(1418), + [3121] = {.count = 1, .reusable = true}, SHIFT(1419), + [3123] = {.count = 1, .reusable = true}, SHIFT(1421), + [3125] = {.count = 1, .reusable = false}, SHIFT(1422), + [3127] = {.count = 1, .reusable = true}, SHIFT(1422), + [3129] = {.count = 1, .reusable = true}, SHIFT(1424), + [3131] = {.count = 1, .reusable = false}, SHIFT(1424), + [3133] = {.count = 1, .reusable = false}, SHIFT(1425), + [3135] = {.count = 1, .reusable = true}, SHIFT(1425), + [3137] = {.count = 1, .reusable = true}, SHIFT(1426), + [3139] = {.count = 1, .reusable = false}, SHIFT(1427), + [3141] = {.count = 1, .reusable = true}, SHIFT(1427), + [3143] = {.count = 1, .reusable = false}, SHIFT(1428), + [3145] = {.count = 1, .reusable = true}, SHIFT(1428), + [3147] = {.count = 1, .reusable = true}, SHIFT(1429), + [3149] = {.count = 1, .reusable = true}, SHIFT(1431), + [3151] = {.count = 1, .reusable = true}, SHIFT(1432), + [3153] = {.count = 1, .reusable = true}, SHIFT(1433), + [3155] = {.count = 1, .reusable = true}, SHIFT(1434), + [3157] = {.count = 1, .reusable = true}, SHIFT(1435), + [3159] = {.count = 1, .reusable = false}, SHIFT(1437), + [3161] = {.count = 1, .reusable = false}, SHIFT(1438), + [3163] = {.count = 1, .reusable = true}, SHIFT(1439), + [3165] = {.count = 1, .reusable = true}, SHIFT(1440), + [3167] = {.count = 1, .reusable = false}, SHIFT(1442), + [3169] = {.count = 1, .reusable = true}, SHIFT(1442), + [3171] = {.count = 1, .reusable = true}, SHIFT(1441), + [3173] = {.count = 1, .reusable = true}, SHIFT(1443), + [3175] = {.count = 1, .reusable = true}, SHIFT(1444), + [3177] = {.count = 1, .reusable = false}, SHIFT(1445), + [3179] = {.count = 1, .reusable = false}, SHIFT(1444), + [3181] = {.count = 1, .reusable = true}, SHIFT(1447), + [3183] = {.count = 1, .reusable = false}, SHIFT(1449), + [3185] = {.count = 1, .reusable = true}, SHIFT(1449), + [3187] = {.count = 1, .reusable = true}, SHIFT(1448), + [3189] = {.count = 1, .reusable = true}, SHIFT(1450), + [3191] = {.count = 1, .reusable = false}, SHIFT(1452), + [3193] = {.count = 1, .reusable = true}, SHIFT(1452), + [3195] = {.count = 1, .reusable = true}, SHIFT(1451), + [3197] = {.count = 1, .reusable = true}, SHIFT(1453), + [3199] = {.count = 1, .reusable = true}, SHIFT(1454), + [3201] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(466), + [3204] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(467), + [3207] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(468), + [3210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(469), + [3213] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(470), + [3216] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(471), + [3219] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(472), + [3222] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(473), + [3225] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(474), + [3228] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(475), + [3231] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(470), + [3234] = {.count = 1, .reusable = true}, SHIFT(1455), + [3236] = {.count = 1, .reusable = false}, SHIFT(1457), + [3238] = {.count = 1, .reusable = false}, SHIFT(1458), + [3240] = {.count = 1, .reusable = true}, SHIFT(1459), + [3242] = {.count = 1, .reusable = true}, SHIFT(1460), + [3244] = {.count = 1, .reusable = false}, SHIFT(1462), + [3246] = {.count = 1, .reusable = true}, SHIFT(1462), + [3248] = {.count = 1, .reusable = true}, SHIFT(1461), + [3250] = {.count = 1, .reusable = true}, SHIFT(1463), + [3252] = {.count = 1, .reusable = true}, SHIFT(1464), + [3254] = {.count = 1, .reusable = false}, SHIFT(1465), + [3256] = {.count = 1, .reusable = false}, SHIFT(1464), + [3258] = {.count = 1, .reusable = true}, SHIFT(1467), + [3260] = {.count = 1, .reusable = false}, SHIFT(1469), + [3262] = {.count = 1, .reusable = true}, SHIFT(1469), + [3264] = {.count = 1, .reusable = true}, SHIFT(1468), + [3266] = {.count = 1, .reusable = true}, SHIFT(1470), + [3268] = {.count = 1, .reusable = false}, SHIFT(1472), + [3270] = {.count = 1, .reusable = true}, SHIFT(1472), + [3272] = {.count = 1, .reusable = true}, SHIFT(1471), + [3274] = {.count = 1, .reusable = true}, SHIFT(1473), + [3276] = {.count = 1, .reusable = true}, SHIFT(1474), + [3278] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(479), + [3281] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(480), + [3284] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(481), + [3287] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(482), + [3290] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(483), + [3293] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(484), + [3296] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(485), + [3299] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(486), + [3302] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(487), + [3305] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(482), + [3308] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(489), + [3311] = {.count = 1, .reusable = false}, SHIFT(1475), + [3313] = {.count = 1, .reusable = true}, SHIFT(1476), + [3315] = {.count = 1, .reusable = false}, SHIFT(1477), + [3317] = {.count = 1, .reusable = true}, SHIFT(1478), + [3319] = {.count = 1, .reusable = true}, SHIFT(1480), + [3321] = {.count = 1, .reusable = true}, SHIFT(1481), + [3323] = {.count = 1, .reusable = true}, SHIFT(1482), + [3325] = {.count = 1, .reusable = true}, SHIFT(1483), + [3327] = {.count = 1, .reusable = false}, SHIFT(1485), + [3329] = {.count = 1, .reusable = true}, SHIFT(1485), + [3331] = {.count = 1, .reusable = true}, SHIFT(1484), + [3333] = {.count = 1, .reusable = true}, SHIFT(1486), + [3335] = {.count = 1, .reusable = false}, SHIFT(1488), + [3337] = {.count = 1, .reusable = true}, SHIFT(1488), + [3339] = {.count = 1, .reusable = true}, SHIFT(1487), + [3341] = {.count = 1, .reusable = false}, SHIFT(1490), + [3343] = {.count = 1, .reusable = true}, SHIFT(1490), + [3345] = {.count = 1, .reusable = true}, SHIFT(1489), + [3347] = {.count = 1, .reusable = true}, SHIFT(1491), + [3349] = {.count = 1, .reusable = true}, SHIFT(1492), + [3351] = {.count = 1, .reusable = true}, SHIFT(1493), + [3353] = {.count = 1, .reusable = true}, SHIFT(1495), + [3355] = {.count = 1, .reusable = true}, SHIFT(1496), + [3357] = {.count = 1, .reusable = true}, SHIFT(1497), + [3359] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(514), + [3362] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(516), + [3365] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(516), + [3368] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(517), + [3371] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(517), + [3374] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(518), + [3377] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(515), + [3380] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(519), + [3383] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(156), + [3386] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(157), + [3389] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(520), + [3392] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(159), + [3395] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(160), + [3398] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(161), + [3401] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(162), + [3404] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(520), + [3407] = {.count = 1, .reusable = true}, SHIFT(1504), + [3409] = {.count = 1, .reusable = true}, SHIFT(1505), + [3411] = {.count = 1, .reusable = false}, SHIFT(1506), + [3413] = {.count = 1, .reusable = true}, SHIFT(1506), + [3415] = {.count = 1, .reusable = true}, SHIFT(1507), + [3417] = {.count = 1, .reusable = false}, SHIFT(1508), + [3419] = {.count = 1, .reusable = true}, SHIFT(1508), + [3421] = {.count = 1, .reusable = true}, SHIFT(1509), + [3423] = {.count = 1, .reusable = true}, SHIFT(1511), + [3425] = {.count = 1, .reusable = true}, SHIFT(1512), + [3427] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(531), + [3430] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(532), + [3433] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(533), + [3436] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(533), + [3439] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(536), + [3442] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(537), + [3445] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(537), + [3448] = {.count = 1, .reusable = true}, SHIFT(1516), + [3450] = {.count = 1, .reusable = true}, SHIFT(1517), + [3452] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(543), + [3455] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(545), + [3458] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(545), + [3461] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(546), + [3464] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(544), + [3467] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(547), + [3470] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(548), + [3473] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(548), + [3476] = {.count = 1, .reusable = true}, SHIFT(1521), + [3478] = {.count = 1, .reusable = true}, SHIFT(1522), + [3480] = {.count = 1, .reusable = false}, SHIFT(1524), + [3482] = {.count = 1, .reusable = true}, SHIFT(1524), + [3484] = {.count = 1, .reusable = true}, SHIFT(1523), + [3486] = {.count = 1, .reusable = true}, SHIFT(1525), + [3488] = {.count = 1, .reusable = true}, SHIFT(1526), + [3490] = {.count = 1, .reusable = false}, SHIFT(1527), + [3492] = {.count = 1, .reusable = false}, SHIFT(1526), + [3494] = {.count = 1, .reusable = true}, SHIFT(1529), + [3496] = {.count = 1, .reusable = false}, SHIFT(1531), + [3498] = {.count = 1, .reusable = true}, SHIFT(1531), + [3500] = {.count = 1, .reusable = true}, SHIFT(1530), + [3502] = {.count = 1, .reusable = true}, SHIFT(1532), + [3504] = {.count = 1, .reusable = false}, SHIFT(1534), + [3506] = {.count = 1, .reusable = true}, SHIFT(1534), + [3508] = {.count = 1, .reusable = true}, SHIFT(1533), + [3510] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), + [3512] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), + [3514] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1043), + [3517] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [3519] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(559), + [3522] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(560), + [3525] = {.count = 1, .reusable = false}, REDUCE(sym_command, 4), + [3527] = {.count = 1, .reusable = true}, REDUCE(sym_command, 4), + [3529] = {.count = 1, .reusable = true}, SHIFT(1537), + [3531] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [3533] = {.count = 1, .reusable = true}, SHIFT(1538), + [3535] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), + [3537] = {.count = 1, .reusable = true}, SHIFT(1539), + [3539] = {.count = 1, .reusable = false}, SHIFT(1541), + [3541] = {.count = 1, .reusable = false}, SHIFT(1542), + [3543] = {.count = 1, .reusable = true}, SHIFT(1543), + [3545] = {.count = 1, .reusable = true}, SHIFT(1544), + [3547] = {.count = 1, .reusable = false}, SHIFT(1546), + [3549] = {.count = 1, .reusable = true}, SHIFT(1546), + [3551] = {.count = 1, .reusable = true}, SHIFT(1545), + [3553] = {.count = 1, .reusable = true}, SHIFT(1547), + [3555] = {.count = 1, .reusable = true}, SHIFT(1548), + [3557] = {.count = 1, .reusable = false}, SHIFT(1549), + [3559] = {.count = 1, .reusable = false}, SHIFT(1548), + [3561] = {.count = 1, .reusable = true}, SHIFT(1551), + [3563] = {.count = 1, .reusable = false}, SHIFT(1553), + [3565] = {.count = 1, .reusable = true}, SHIFT(1553), + [3567] = {.count = 1, .reusable = true}, SHIFT(1552), + [3569] = {.count = 1, .reusable = true}, SHIFT(1554), + [3571] = {.count = 1, .reusable = false}, SHIFT(1556), + [3573] = {.count = 1, .reusable = true}, SHIFT(1556), + [3575] = {.count = 1, .reusable = true}, SHIFT(1555), + [3577] = {.count = 1, .reusable = true}, SHIFT(1557), + [3579] = {.count = 1, .reusable = true}, SHIFT(1558), + [3581] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [3583] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [3585] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3587] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(585), + [3590] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(586), + [3593] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(587), + [3596] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(588), + [3599] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(589), + [3602] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(590), + [3605] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(591), + [3608] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(592), + [3611] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(594), + [3614] = {.count = 1, .reusable = false}, SHIFT(1559), + [3616] = {.count = 1, .reusable = true}, SHIFT(1560), + [3618] = {.count = 1, .reusable = false}, SHIFT(1561), + [3620] = {.count = 1, .reusable = true}, SHIFT(1562), + [3622] = {.count = 1, .reusable = true}, SHIFT(1564), + [3624] = {.count = 1, .reusable = true}, SHIFT(1565), + [3626] = {.count = 1, .reusable = true}, SHIFT(1566), + [3628] = {.count = 1, .reusable = true}, SHIFT(1567), + [3630] = {.count = 1, .reusable = false}, SHIFT(1569), + [3632] = {.count = 1, .reusable = true}, SHIFT(1569), + [3634] = {.count = 1, .reusable = true}, SHIFT(1568), + [3636] = {.count = 1, .reusable = true}, SHIFT(1570), + [3638] = {.count = 1, .reusable = false}, SHIFT(1572), + [3640] = {.count = 1, .reusable = true}, SHIFT(1572), + [3642] = {.count = 1, .reusable = true}, SHIFT(1571), + [3644] = {.count = 1, .reusable = false}, SHIFT(1574), + [3646] = {.count = 1, .reusable = true}, SHIFT(1574), + [3648] = {.count = 1, .reusable = true}, SHIFT(1573), + [3650] = {.count = 1, .reusable = true}, SHIFT(1575), + [3652] = {.count = 1, .reusable = true}, SHIFT(1576), + [3654] = {.count = 1, .reusable = true}, SHIFT(1577), + [3656] = {.count = 1, .reusable = true}, SHIFT(1578), + [3658] = {.count = 1, .reusable = true}, SHIFT(1582), + [3660] = {.count = 1, .reusable = false}, SHIFT(1584), + [3662] = {.count = 1, .reusable = false}, SHIFT(1585), + [3664] = {.count = 1, .reusable = true}, SHIFT(1587), + [3666] = {.count = 1, .reusable = true}, SHIFT(1588), + [3668] = {.count = 1, .reusable = false}, SHIFT(1589), + [3670] = {.count = 1, .reusable = false}, SHIFT(1587), + [3672] = {.count = 1, .reusable = true}, SHIFT(1590), + [3674] = {.count = 1, .reusable = true}, SHIFT(1591), + [3676] = {.count = 1, .reusable = true}, SHIFT(1592), + [3678] = {.count = 1, .reusable = false}, SHIFT(1593), + [3680] = {.count = 1, .reusable = false}, SHIFT(1591), + [3682] = {.count = 1, .reusable = true}, SHIFT(1601), + [3684] = {.count = 1, .reusable = true}, SHIFT(1602), + [3686] = {.count = 1, .reusable = true}, SHIFT(1603), + [3688] = {.count = 1, .reusable = false}, SHIFT(1602), + [3690] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(617), + [3693] = {.count = 1, .reusable = false}, SHIFT(1605), + [3695] = {.count = 1, .reusable = true}, SHIFT(1606), + [3697] = {.count = 1, .reusable = false}, SHIFT(1607), + [3699] = {.count = 1, .reusable = true}, SHIFT(1608), + [3701] = {.count = 1, .reusable = true}, SHIFT(1610), + [3703] = {.count = 1, .reusable = true}, SHIFT(1611), + [3705] = {.count = 1, .reusable = true}, SHIFT(1612), + [3707] = {.count = 1, .reusable = true}, SHIFT(1613), + [3709] = {.count = 1, .reusable = false}, SHIFT(1615), + [3711] = {.count = 1, .reusable = true}, SHIFT(1615), + [3713] = {.count = 1, .reusable = true}, SHIFT(1614), + [3715] = {.count = 1, .reusable = true}, SHIFT(1616), + [3717] = {.count = 1, .reusable = false}, SHIFT(1618), + [3719] = {.count = 1, .reusable = true}, SHIFT(1618), + [3721] = {.count = 1, .reusable = true}, SHIFT(1617), + [3723] = {.count = 1, .reusable = false}, SHIFT(1620), + [3725] = {.count = 1, .reusable = true}, SHIFT(1620), + [3727] = {.count = 1, .reusable = true}, SHIFT(1619), + [3729] = {.count = 1, .reusable = true}, SHIFT(1621), + [3731] = {.count = 1, .reusable = true}, SHIFT(1622), + [3733] = {.count = 1, .reusable = true}, SHIFT(1623), + [3735] = {.count = 1, .reusable = false}, SHIFT(1624), + [3737] = {.count = 1, .reusable = true}, SHIFT(1624), + [3739] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3741] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(639), + [3744] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(43), + [3747] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(44), + [3750] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(640), + [3753] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(46), + [3756] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(47), + [3759] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(48), + [3762] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(49), + [3765] = {.count = 1, .reusable = false}, SHIFT(1627), + [3767] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [3769] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [3771] = {.count = 1, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), + [3773] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), + [3775] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), + [3777] = {.count = 1, .reusable = true}, SHIFT(1628), + [3779] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), + [3781] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [3783] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [3785] = {.count = 1, .reusable = true}, SHIFT(1630), + [3787] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3789] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(649), + [3792] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [3794] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [3796] = {.count = 1, .reusable = true}, SHIFT(1632), + [3798] = {.count = 1, .reusable = true}, SHIFT(1633), + [3800] = {.count = 1, .reusable = true}, SHIFT(1636), + [3802] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 1), + [3804] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [3806] = {.count = 1, .reusable = true}, SHIFT(1638), + [3808] = {.count = 1, .reusable = false}, SHIFT(1641), + [3810] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [3812] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [3814] = {.count = 1, .reusable = true}, SHIFT(1643), + [3816] = {.count = 1, .reusable = false}, SHIFT(1645), + [3818] = {.count = 1, .reusable = true}, SHIFT(1647), + [3820] = {.count = 1, .reusable = true}, SHIFT(1648), + [3822] = {.count = 1, .reusable = true}, SHIFT(1649), + [3824] = {.count = 1, .reusable = false}, SHIFT(1650), + [3826] = {.count = 1, .reusable = true}, SHIFT(1650), + [3828] = {.count = 1, .reusable = false}, SHIFT(1651), + [3830] = {.count = 1, .reusable = true}, SHIFT(1652), + [3832] = {.count = 1, .reusable = true}, SHIFT(1654), + [3834] = {.count = 1, .reusable = true}, SHIFT(1655), + [3836] = {.count = 1, .reusable = true}, SHIFT(1656), + [3838] = {.count = 1, .reusable = true}, SHIFT(1657), + [3840] = {.count = 1, .reusable = true}, SHIFT(1658), + [3842] = {.count = 1, .reusable = true}, SHIFT(1659), + [3844] = {.count = 1, .reusable = false}, SHIFT(1660), + [3846] = {.count = 1, .reusable = true}, SHIFT(1660), + [3848] = {.count = 1, .reusable = true}, SHIFT(1661), + [3850] = {.count = 1, .reusable = false}, SHIFT(1662), + [3852] = {.count = 1, .reusable = true}, SHIFT(1662), + [3854] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [3856] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [3858] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [3860] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [3862] = {.count = 1, .reusable = true}, SHIFT(1664), + [3864] = {.count = 1, .reusable = true}, SHIFT(1665), + [3866] = {.count = 1, .reusable = false}, SHIFT(1670), + [3868] = {.count = 1, .reusable = true}, SHIFT(1670), + [3870] = {.count = 1, .reusable = true}, SHIFT(1671), + [3872] = {.count = 1, .reusable = true}, SHIFT(1672), + [3874] = {.count = 1, .reusable = false}, SHIFT(1673), + [3876] = {.count = 1, .reusable = true}, SHIFT(1673), + [3878] = {.count = 1, .reusable = true}, SHIFT(1674), + [3880] = {.count = 1, .reusable = true}, SHIFT(1675), + [3882] = {.count = 1, .reusable = true}, SHIFT(1676), + [3884] = {.count = 1, .reusable = true}, SHIFT(1677), + [3886] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), + [3888] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), + [3890] = {.count = 1, .reusable = true}, SHIFT(1680), + [3892] = {.count = 1, .reusable = true}, SHIFT(1681), + [3894] = {.count = 1, .reusable = true}, SHIFT(1682), + [3896] = {.count = 1, .reusable = true}, SHIFT(1683), + [3898] = {.count = 1, .reusable = false}, SHIFT(1684), + [3900] = {.count = 1, .reusable = true}, SHIFT(1684), + [3902] = {.count = 1, .reusable = false}, SHIFT(1685), + [3904] = {.count = 1, .reusable = true}, SHIFT(1686), + [3906] = {.count = 1, .reusable = true}, SHIFT(1688), + [3908] = {.count = 1, .reusable = true}, SHIFT(1689), + [3910] = {.count = 1, .reusable = true}, SHIFT(1690), + [3912] = {.count = 1, .reusable = true}, SHIFT(1691), + [3914] = {.count = 1, .reusable = true}, SHIFT(1692), + [3916] = {.count = 1, .reusable = true}, SHIFT(1693), + [3918] = {.count = 1, .reusable = false}, SHIFT(1694), + [3920] = {.count = 1, .reusable = true}, SHIFT(1694), + [3922] = {.count = 1, .reusable = true}, SHIFT(1695), + [3924] = {.count = 1, .reusable = false}, SHIFT(1696), + [3926] = {.count = 1, .reusable = true}, SHIFT(1696), + [3928] = {.count = 1, .reusable = true}, SHIFT(1697), + [3930] = {.count = 1, .reusable = true}, SHIFT(1698), + [3932] = {.count = 1, .reusable = true}, SHIFT(1700), + [3934] = {.count = 1, .reusable = false}, SHIFT(1702), + [3936] = {.count = 1, .reusable = false}, SHIFT(1703), + [3938] = {.count = 1, .reusable = true}, SHIFT(1705), + [3940] = {.count = 1, .reusable = true}, SHIFT(1706), + [3942] = {.count = 1, .reusable = false}, SHIFT(1707), + [3944] = {.count = 1, .reusable = false}, SHIFT(1705), + [3946] = {.count = 1, .reusable = true}, SHIFT(1708), + [3948] = {.count = 1, .reusable = true}, SHIFT(1709), + [3950] = {.count = 1, .reusable = true}, SHIFT(1710), + [3952] = {.count = 1, .reusable = false}, SHIFT(1711), + [3954] = {.count = 1, .reusable = false}, SHIFT(1709), + [3956] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(744), + [3959] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(745), + [3962] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(746), + [3965] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(747), + [3968] = {.count = 1, .reusable = true}, SHIFT(1719), + [3970] = {.count = 1, .reusable = true}, SHIFT(1720), + [3972] = {.count = 1, .reusable = true}, SHIFT(1721), + [3974] = {.count = 1, .reusable = false}, SHIFT(1722), + [3976] = {.count = 1, .reusable = true}, SHIFT(1722), + [3978] = {.count = 1, .reusable = false}, SHIFT(1723), + [3980] = {.count = 1, .reusable = true}, SHIFT(1724), + [3982] = {.count = 1, .reusable = true}, SHIFT(1726), + [3984] = {.count = 1, .reusable = true}, SHIFT(1727), + [3986] = {.count = 1, .reusable = true}, SHIFT(1728), + [3988] = {.count = 1, .reusable = true}, SHIFT(1729), + [3990] = {.count = 1, .reusable = true}, SHIFT(1730), + [3992] = {.count = 1, .reusable = true}, SHIFT(1731), + [3994] = {.count = 1, .reusable = false}, SHIFT(1732), + [3996] = {.count = 1, .reusable = true}, SHIFT(1732), + [3998] = {.count = 1, .reusable = true}, SHIFT(1733), + [4000] = {.count = 1, .reusable = false}, SHIFT(1734), + [4002] = {.count = 1, .reusable = true}, SHIFT(1734), + [4004] = {.count = 1, .reusable = true}, SHIFT(1735), + [4006] = {.count = 1, .reusable = true}, SHIFT(1736), + [4008] = {.count = 1, .reusable = true}, SHIFT(1737), + [4010] = {.count = 1, .reusable = true}, SHIFT(1738), + [4012] = {.count = 1, .reusable = false}, SHIFT(1739), + [4014] = {.count = 1, .reusable = true}, SHIFT(1739), + [4016] = {.count = 1, .reusable = false}, SHIFT(1740), + [4018] = {.count = 1, .reusable = true}, SHIFT(1741), + [4020] = {.count = 1, .reusable = true}, SHIFT(1743), + [4022] = {.count = 1, .reusable = true}, SHIFT(1744), + [4024] = {.count = 1, .reusable = true}, SHIFT(1745), + [4026] = {.count = 1, .reusable = true}, SHIFT(1746), + [4028] = {.count = 1, .reusable = true}, SHIFT(1747), + [4030] = {.count = 1, .reusable = true}, SHIFT(1748), + [4032] = {.count = 1, .reusable = false}, SHIFT(1749), + [4034] = {.count = 1, .reusable = true}, SHIFT(1749), + [4036] = {.count = 1, .reusable = true}, SHIFT(1750), + [4038] = {.count = 1, .reusable = false}, SHIFT(1751), + [4040] = {.count = 1, .reusable = true}, SHIFT(1751), + [4042] = {.count = 1, .reusable = true}, SHIFT(1752), + [4044] = {.count = 1, .reusable = true}, SHIFT(1753), + [4046] = {.count = 1, .reusable = true}, SHIFT(1754), + [4048] = {.count = 1, .reusable = false}, SHIFT(1755), + [4050] = {.count = 1, .reusable = true}, SHIFT(1755), + [4052] = {.count = 1, .reusable = false}, SHIFT(1756), + [4054] = {.count = 1, .reusable = true}, SHIFT(1757), + [4056] = {.count = 1, .reusable = true}, SHIFT(1759), + [4058] = {.count = 1, .reusable = true}, SHIFT(1760), + [4060] = {.count = 1, .reusable = true}, SHIFT(1761), + [4062] = {.count = 1, .reusable = true}, SHIFT(1762), + [4064] = {.count = 1, .reusable = true}, SHIFT(1763), + [4066] = {.count = 1, .reusable = true}, SHIFT(1764), + [4068] = {.count = 1, .reusable = false}, SHIFT(1765), + [4070] = {.count = 1, .reusable = true}, SHIFT(1765), + [4072] = {.count = 1, .reusable = true}, SHIFT(1766), + [4074] = {.count = 1, .reusable = false}, SHIFT(1767), + [4076] = {.count = 1, .reusable = true}, SHIFT(1767), + [4078] = {.count = 1, .reusable = true}, SHIFT(1768), + [4080] = {.count = 1, .reusable = true}, SHIFT(1769), + [4082] = {.count = 1, .reusable = true}, SHIFT(1770), + [4084] = {.count = 1, .reusable = false}, SHIFT(1771), + [4086] = {.count = 1, .reusable = true}, SHIFT(1771), + [4088] = {.count = 1, .reusable = false}, SHIFT(1772), + [4090] = {.count = 1, .reusable = true}, SHIFT(1773), + [4092] = {.count = 1, .reusable = true}, SHIFT(1775), + [4094] = {.count = 1, .reusable = true}, SHIFT(1776), + [4096] = {.count = 1, .reusable = true}, SHIFT(1777), + [4098] = {.count = 1, .reusable = true}, SHIFT(1778), + [4100] = {.count = 1, .reusable = true}, SHIFT(1779), + [4102] = {.count = 1, .reusable = true}, SHIFT(1780), + [4104] = {.count = 1, .reusable = false}, SHIFT(1781), + [4106] = {.count = 1, .reusable = true}, SHIFT(1781), + [4108] = {.count = 1, .reusable = true}, SHIFT(1782), + [4110] = {.count = 1, .reusable = false}, SHIFT(1783), + [4112] = {.count = 1, .reusable = true}, SHIFT(1783), + [4114] = {.count = 1, .reusable = true}, SHIFT(1784), + [4116] = {.count = 1, .reusable = true}, SHIFT(1785), + [4118] = {.count = 1, .reusable = true}, SHIFT(1786), + [4120] = {.count = 1, .reusable = false}, SHIFT(1787), + [4122] = {.count = 1, .reusable = true}, SHIFT(1787), + [4124] = {.count = 1, .reusable = false}, SHIFT(1788), + [4126] = {.count = 1, .reusable = true}, SHIFT(1789), + [4128] = {.count = 1, .reusable = true}, SHIFT(1791), + [4130] = {.count = 1, .reusable = true}, SHIFT(1792), + [4132] = {.count = 1, .reusable = true}, SHIFT(1793), + [4134] = {.count = 1, .reusable = true}, SHIFT(1794), + [4136] = {.count = 1, .reusable = true}, SHIFT(1795), + [4138] = {.count = 1, .reusable = true}, SHIFT(1796), + [4140] = {.count = 1, .reusable = false}, SHIFT(1797), + [4142] = {.count = 1, .reusable = true}, SHIFT(1797), + [4144] = {.count = 1, .reusable = true}, SHIFT(1798), + [4146] = {.count = 1, .reusable = false}, SHIFT(1799), + [4148] = {.count = 1, .reusable = true}, SHIFT(1799), + [4150] = {.count = 1, .reusable = true}, SHIFT(1800), + [4152] = {.count = 1, .reusable = true}, SHIFT(1801), + [4154] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [4156] = {.count = 1, .reusable = true}, SHIFT(1802), + [4158] = {.count = 1, .reusable = true}, SHIFT(1803), + [4160] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [4162] = {.count = 1, .reusable = true}, SHIFT(1804), + [4164] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [4166] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [4168] = {.count = 1, .reusable = false}, SHIFT(1806), + [4170] = {.count = 1, .reusable = false}, SHIFT(1807), + [4172] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), + [4174] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [4176] = {.count = 1, .reusable = true}, SHIFT(1808), + [4178] = {.count = 1, .reusable = true}, SHIFT(1809), + [4180] = {.count = 1, .reusable = false}, SHIFT(1811), + [4182] = {.count = 1, .reusable = true}, SHIFT(1811), + [4184] = {.count = 1, .reusable = true}, SHIFT(1810), + [4186] = {.count = 1, .reusable = true}, SHIFT(1812), + [4188] = {.count = 1, .reusable = true}, SHIFT(1813), + [4190] = {.count = 1, .reusable = false}, SHIFT(1814), + [4192] = {.count = 1, .reusable = false}, SHIFT(1813), + [4194] = {.count = 1, .reusable = true}, SHIFT(1816), + [4196] = {.count = 1, .reusable = false}, SHIFT(1818), + [4198] = {.count = 1, .reusable = true}, SHIFT(1818), + [4200] = {.count = 1, .reusable = true}, SHIFT(1817), + [4202] = {.count = 1, .reusable = true}, SHIFT(1819), + [4204] = {.count = 1, .reusable = false}, SHIFT(1821), + [4206] = {.count = 1, .reusable = true}, SHIFT(1821), + [4208] = {.count = 1, .reusable = true}, SHIFT(1820), + [4210] = {.count = 1, .reusable = true}, SHIFT(1822), + [4212] = {.count = 1, .reusable = true}, SHIFT(1823), + [4214] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(868), + [4217] = {.count = 1, .reusable = false}, SHIFT(1824), + [4219] = {.count = 1, .reusable = true}, SHIFT(1825), + [4221] = {.count = 1, .reusable = false}, SHIFT(1826), + [4223] = {.count = 1, .reusable = true}, SHIFT(1827), + [4225] = {.count = 1, .reusable = true}, SHIFT(1829), + [4227] = {.count = 1, .reusable = true}, SHIFT(1830), + [4229] = {.count = 1, .reusable = true}, SHIFT(1831), + [4231] = {.count = 1, .reusable = true}, SHIFT(1832), + [4233] = {.count = 1, .reusable = false}, SHIFT(1834), + [4235] = {.count = 1, .reusable = true}, SHIFT(1834), + [4237] = {.count = 1, .reusable = true}, SHIFT(1833), + [4239] = {.count = 1, .reusable = true}, SHIFT(1835), + [4241] = {.count = 1, .reusable = false}, SHIFT(1837), + [4243] = {.count = 1, .reusable = true}, SHIFT(1837), + [4245] = {.count = 1, .reusable = true}, SHIFT(1836), + [4247] = {.count = 1, .reusable = false}, SHIFT(1839), + [4249] = {.count = 1, .reusable = true}, SHIFT(1839), + [4251] = {.count = 1, .reusable = true}, SHIFT(1838), + [4253] = {.count = 1, .reusable = true}, SHIFT(1840), + [4255] = {.count = 1, .reusable = true}, SHIFT(1841), + [4257] = {.count = 1, .reusable = true}, SHIFT(1842), + [4259] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4261] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4263] = {.count = 1, .reusable = true}, SHIFT(1843), + [4265] = {.count = 1, .reusable = true}, SHIFT(1844), + [4267] = {.count = 1, .reusable = true}, SHIFT(1845), + [4269] = {.count = 1, .reusable = true}, SHIFT(1846), + [4271] = {.count = 1, .reusable = false}, SHIFT(1847), + [4273] = {.count = 1, .reusable = true}, SHIFT(1847), + [4275] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [4277] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [4279] = {.count = 1, .reusable = true}, SHIFT(1848), + [4281] = {.count = 1, .reusable = false}, SHIFT(1849), + [4283] = {.count = 1, .reusable = true}, SHIFT(1849), + [4285] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [4287] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [4289] = {.count = 1, .reusable = true}, SHIFT(1850), + [4291] = {.count = 1, .reusable = false}, SHIFT(1851), + [4293] = {.count = 1, .reusable = true}, SHIFT(1851), + [4295] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4297] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4299] = {.count = 1, .reusable = true}, SHIFT(1852), + [4301] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [4303] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [4305] = {.count = 1, .reusable = true}, SHIFT(1853), + [4307] = {.count = 1, .reusable = true}, SHIFT(1855), + [4309] = {.count = 1, .reusable = false}, SHIFT(1857), + [4311] = {.count = 1, .reusable = true}, SHIFT(1857), + [4313] = {.count = 1, .reusable = false}, SHIFT(1859), + [4315] = {.count = 1, .reusable = true}, SHIFT(1859), + [4317] = {.count = 1, .reusable = false}, SHIFT(1860), + [4319] = {.count = 1, .reusable = false}, SHIFT(1862), + [4321] = {.count = 1, .reusable = true}, SHIFT(1864), + [4323] = {.count = 1, .reusable = false}, SHIFT(1864), + [4325] = {.count = 1, .reusable = false}, SHIFT(1867), + [4327] = {.count = 1, .reusable = false}, SHIFT(1870), + [4329] = {.count = 1, .reusable = true}, SHIFT(1870), + [4331] = {.count = 1, .reusable = false}, SHIFT(1871), + [4333] = {.count = 1, .reusable = false}, SHIFT(1874), + [4335] = {.count = 1, .reusable = true}, SHIFT(1874), + [4337] = {.count = 1, .reusable = true}, SHIFT(1876), + [4339] = {.count = 1, .reusable = false}, SHIFT(1877), + [4341] = {.count = 1, .reusable = true}, SHIFT(1877), + [4343] = {.count = 1, .reusable = true}, SHIFT(1878), + [4345] = {.count = 1, .reusable = true}, SHIFT(1879), + [4347] = {.count = 1, .reusable = true}, SHIFT(1881), + [4349] = {.count = 1, .reusable = false}, SHIFT(1882), + [4351] = {.count = 1, .reusable = true}, SHIFT(1882), + [4353] = {.count = 1, .reusable = true}, SHIFT(1883), + [4355] = {.count = 1, .reusable = true}, SHIFT(1884), + [4357] = {.count = 1, .reusable = false}, SHIFT(1885), + [4359] = {.count = 1, .reusable = true}, SHIFT(1886), + [4361] = {.count = 1, .reusable = true}, SHIFT(1887), + [4363] = {.count = 1, .reusable = true}, SHIFT(1888), + [4365] = {.count = 1, .reusable = true}, SHIFT(1889), + [4367] = {.count = 1, .reusable = true}, SHIFT(1890), + [4369] = {.count = 1, .reusable = true}, SHIFT(1892), + [4371] = {.count = 1, .reusable = true}, SHIFT(1893), + [4373] = {.count = 1, .reusable = true}, SHIFT(1894), + [4375] = {.count = 1, .reusable = true}, SHIFT(1897), + [4377] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(924), + [4380] = {.count = 1, .reusable = false}, SHIFT(1899), + [4382] = {.count = 1, .reusable = true}, SHIFT(1900), + [4384] = {.count = 1, .reusable = false}, SHIFT(1901), + [4386] = {.count = 1, .reusable = true}, SHIFT(1902), + [4388] = {.count = 1, .reusable = true}, SHIFT(1904), + [4390] = {.count = 1, .reusable = true}, SHIFT(1905), + [4392] = {.count = 1, .reusable = true}, SHIFT(1906), + [4394] = {.count = 1, .reusable = true}, SHIFT(1907), + [4396] = {.count = 1, .reusable = false}, SHIFT(1909), + [4398] = {.count = 1, .reusable = true}, SHIFT(1909), + [4400] = {.count = 1, .reusable = true}, SHIFT(1908), + [4402] = {.count = 1, .reusable = true}, SHIFT(1910), + [4404] = {.count = 1, .reusable = false}, SHIFT(1912), + [4406] = {.count = 1, .reusable = true}, SHIFT(1912), + [4408] = {.count = 1, .reusable = true}, SHIFT(1911), + [4410] = {.count = 1, .reusable = false}, SHIFT(1914), + [4412] = {.count = 1, .reusable = true}, SHIFT(1914), + [4414] = {.count = 1, .reusable = true}, SHIFT(1913), + [4416] = {.count = 1, .reusable = true}, SHIFT(1915), + [4418] = {.count = 1, .reusable = true}, SHIFT(1916), + [4420] = {.count = 1, .reusable = true}, SHIFT(1917), + [4422] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(944), + [4425] = {.count = 1, .reusable = false}, SHIFT(1918), + [4427] = {.count = 1, .reusable = true}, SHIFT(1919), + [4429] = {.count = 1, .reusable = false}, SHIFT(1920), + [4431] = {.count = 1, .reusable = true}, SHIFT(1921), + [4433] = {.count = 1, .reusable = true}, SHIFT(1923), + [4435] = {.count = 1, .reusable = true}, SHIFT(1924), + [4437] = {.count = 1, .reusable = true}, SHIFT(1925), + [4439] = {.count = 1, .reusable = true}, SHIFT(1926), + [4441] = {.count = 1, .reusable = false}, SHIFT(1928), + [4443] = {.count = 1, .reusable = true}, SHIFT(1928), + [4445] = {.count = 1, .reusable = true}, SHIFT(1927), + [4447] = {.count = 1, .reusable = true}, SHIFT(1929), + [4449] = {.count = 1, .reusable = false}, SHIFT(1931), + [4451] = {.count = 1, .reusable = true}, SHIFT(1931), + [4453] = {.count = 1, .reusable = true}, SHIFT(1930), + [4455] = {.count = 1, .reusable = false}, SHIFT(1933), + [4457] = {.count = 1, .reusable = true}, SHIFT(1933), + [4459] = {.count = 1, .reusable = true}, SHIFT(1932), + [4461] = {.count = 1, .reusable = true}, SHIFT(1934), + [4463] = {.count = 1, .reusable = true}, SHIFT(1935), + [4465] = {.count = 1, .reusable = true}, SHIFT(1936), + [4467] = {.count = 1, .reusable = true}, SHIFT(1937), + [4469] = {.count = 1, .reusable = true}, SHIFT(1938), + [4471] = {.count = 1, .reusable = true}, SHIFT(1939), + [4473] = {.count = 1, .reusable = false}, SHIFT(1940), + [4475] = {.count = 1, .reusable = true}, SHIFT(1940), + [4477] = {.count = 1, .reusable = false}, SHIFT(1941), + [4479] = {.count = 1, .reusable = true}, SHIFT(1942), + [4481] = {.count = 1, .reusable = true}, SHIFT(1944), + [4483] = {.count = 1, .reusable = true}, SHIFT(1945), + [4485] = {.count = 1, .reusable = true}, SHIFT(1946), + [4487] = {.count = 1, .reusable = true}, SHIFT(1947), + [4489] = {.count = 1, .reusable = true}, SHIFT(1948), + [4491] = {.count = 1, .reusable = true}, SHIFT(1949), + [4493] = {.count = 1, .reusable = false}, SHIFT(1950), + [4495] = {.count = 1, .reusable = true}, SHIFT(1950), + [4497] = {.count = 1, .reusable = true}, SHIFT(1951), + [4499] = {.count = 1, .reusable = false}, SHIFT(1952), + [4501] = {.count = 1, .reusable = true}, SHIFT(1952), + [4503] = {.count = 1, .reusable = false}, SHIFT(1958), + [4505] = {.count = 1, .reusable = true}, SHIFT(1958), + [4507] = {.count = 1, .reusable = true}, SHIFT(1959), + [4509] = {.count = 1, .reusable = true}, SHIFT(1960), + [4511] = {.count = 1, .reusable = false}, SHIFT(1961), + [4513] = {.count = 1, .reusable = true}, SHIFT(1961), + [4515] = {.count = 1, .reusable = true}, SHIFT(1962), + [4517] = {.count = 1, .reusable = true}, SHIFT(1963), + [4519] = {.count = 1, .reusable = true}, SHIFT(1964), + [4521] = {.count = 1, .reusable = true}, SHIFT(1965), + [4523] = {.count = 1, .reusable = true}, SHIFT(1968), + [4525] = {.count = 1, .reusable = false}, SHIFT(1969), + [4527] = {.count = 1, .reusable = true}, SHIFT(1970), + [4529] = {.count = 1, .reusable = true}, SHIFT(1972), + [4531] = {.count = 1, .reusable = true}, SHIFT(1973), + [4533] = {.count = 1, .reusable = true}, SHIFT(1974), + [4535] = {.count = 1, .reusable = true}, SHIFT(1975), + [4537] = {.count = 1, .reusable = false}, SHIFT(1977), + [4539] = {.count = 1, .reusable = true}, SHIFT(1977), + [4541] = {.count = 1, .reusable = true}, SHIFT(1976), + [4543] = {.count = 1, .reusable = true}, SHIFT(1978), + [4545] = {.count = 1, .reusable = false}, SHIFT(1980), + [4547] = {.count = 1, .reusable = true}, SHIFT(1980), + [4549] = {.count = 1, .reusable = true}, SHIFT(1979), + [4551] = {.count = 1, .reusable = false}, SHIFT(1982), + [4553] = {.count = 1, .reusable = true}, SHIFT(1982), + [4555] = {.count = 1, .reusable = true}, SHIFT(1981), + [4557] = {.count = 1, .reusable = true}, SHIFT(1983), + [4559] = {.count = 1, .reusable = true}, SHIFT(1984), + [4561] = {.count = 1, .reusable = true}, SHIFT(1985), + [4563] = {.count = 1, .reusable = false}, REDUCE(sym_command, 5), + [4565] = {.count = 1, .reusable = true}, REDUCE(sym_command, 5), + [4567] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [4569] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [4571] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1055), + [4574] = {.count = 1, .reusable = false}, SHIFT(1986), + [4576] = {.count = 1, .reusable = true}, SHIFT(1987), + [4578] = {.count = 1, .reusable = false}, SHIFT(1988), + [4580] = {.count = 1, .reusable = true}, SHIFT(1989), + [4582] = {.count = 1, .reusable = true}, SHIFT(1991), + [4584] = {.count = 1, .reusable = true}, SHIFT(1992), + [4586] = {.count = 1, .reusable = true}, SHIFT(1993), + [4588] = {.count = 1, .reusable = true}, SHIFT(1994), + [4590] = {.count = 1, .reusable = false}, SHIFT(1996), + [4592] = {.count = 1, .reusable = true}, SHIFT(1996), + [4594] = {.count = 1, .reusable = true}, SHIFT(1995), + [4596] = {.count = 1, .reusable = true}, SHIFT(1997), + [4598] = {.count = 1, .reusable = false}, SHIFT(1999), + [4600] = {.count = 1, .reusable = true}, SHIFT(1999), + [4602] = {.count = 1, .reusable = true}, SHIFT(1998), + [4604] = {.count = 1, .reusable = false}, SHIFT(2001), + [4606] = {.count = 1, .reusable = true}, SHIFT(2001), + [4608] = {.count = 1, .reusable = true}, SHIFT(2000), + [4610] = {.count = 1, .reusable = true}, SHIFT(2002), + [4612] = {.count = 1, .reusable = true}, SHIFT(2003), + [4614] = {.count = 1, .reusable = true}, SHIFT(2004), + [4616] = {.count = 1, .reusable = true}, SHIFT(2005), + [4618] = {.count = 1, .reusable = true}, SHIFT(2006), + [4620] = {.count = 1, .reusable = true}, SHIFT(2007), + [4622] = {.count = 1, .reusable = false}, SHIFT(2008), + [4624] = {.count = 1, .reusable = true}, SHIFT(2008), + [4626] = {.count = 1, .reusable = false}, SHIFT(2009), + [4628] = {.count = 1, .reusable = true}, SHIFT(2010), + [4630] = {.count = 1, .reusable = true}, SHIFT(2012), + [4632] = {.count = 1, .reusable = true}, SHIFT(2013), + [4634] = {.count = 1, .reusable = true}, SHIFT(2014), + [4636] = {.count = 1, .reusable = true}, SHIFT(2015), + [4638] = {.count = 1, .reusable = true}, SHIFT(2016), + [4640] = {.count = 1, .reusable = true}, SHIFT(2017), + [4642] = {.count = 1, .reusable = false}, SHIFT(2018), + [4644] = {.count = 1, .reusable = true}, SHIFT(2018), + [4646] = {.count = 1, .reusable = true}, SHIFT(2019), + [4648] = {.count = 1, .reusable = false}, SHIFT(2020), + [4650] = {.count = 1, .reusable = true}, SHIFT(2020), + [4652] = {.count = 1, .reusable = true}, SHIFT(2021), + [4654] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), + [4656] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), + [4658] = {.count = 1, .reusable = true}, SHIFT(2023), + [4660] = {.count = 1, .reusable = true}, SHIFT(2024), + [4662] = {.count = 1, .reusable = false}, SHIFT(2026), + [4664] = {.count = 1, .reusable = false}, SHIFT(2027), + [4666] = {.count = 1, .reusable = true}, SHIFT(2028), + [4668] = {.count = 1, .reusable = true}, SHIFT(2029), + [4670] = {.count = 1, .reusable = false}, SHIFT(2031), + [4672] = {.count = 1, .reusable = true}, SHIFT(2031), + [4674] = {.count = 1, .reusable = true}, SHIFT(2030), + [4676] = {.count = 1, .reusable = true}, SHIFT(2032), + [4678] = {.count = 1, .reusable = true}, SHIFT(2033), + [4680] = {.count = 1, .reusable = false}, SHIFT(2034), + [4682] = {.count = 1, .reusable = false}, SHIFT(2033), + [4684] = {.count = 1, .reusable = true}, SHIFT(2036), + [4686] = {.count = 1, .reusable = false}, SHIFT(2038), + [4688] = {.count = 1, .reusable = true}, SHIFT(2038), + [4690] = {.count = 1, .reusable = true}, SHIFT(2037), + [4692] = {.count = 1, .reusable = true}, SHIFT(2039), + [4694] = {.count = 1, .reusable = false}, SHIFT(2041), + [4696] = {.count = 1, .reusable = true}, SHIFT(2041), + [4698] = {.count = 1, .reusable = true}, SHIFT(2040), + [4700] = {.count = 1, .reusable = true}, SHIFT(2042), + [4702] = {.count = 1, .reusable = true}, SHIFT(2043), + [4704] = {.count = 1, .reusable = false}, SHIFT(1097), + [4706] = {.count = 1, .reusable = false}, SHIFT(1099), + [4708] = {.count = 1, .reusable = false}, SHIFT(1100), + [4710] = {.count = 1, .reusable = false}, SHIFT(1103), + [4712] = {.count = 1, .reusable = false}, SHIFT(1104), + [4714] = {.count = 1, .reusable = false}, SHIFT(1105), + [4716] = {.count = 1, .reusable = false}, SHIFT(1106), + [4718] = {.count = 1, .reusable = false}, SHIFT(2046), + [4720] = {.count = 1, .reusable = true}, SHIFT(2047), + [4722] = {.count = 1, .reusable = true}, SHIFT(2048), + [4724] = {.count = 1, .reusable = true}, SHIFT(2049), + [4726] = {.count = 1, .reusable = true}, SHIFT(2050), + [4728] = {.count = 1, .reusable = false}, SHIFT(2051), + [4730] = {.count = 1, .reusable = true}, SHIFT(2051), + [4732] = {.count = 1, .reusable = false}, SHIFT(2052), + [4734] = {.count = 1, .reusable = true}, SHIFT(2053), + [4736] = {.count = 1, .reusable = true}, SHIFT(2055), + [4738] = {.count = 1, .reusable = true}, SHIFT(2056), + [4740] = {.count = 1, .reusable = true}, SHIFT(2057), + [4742] = {.count = 1, .reusable = true}, SHIFT(2058), + [4744] = {.count = 1, .reusable = true}, SHIFT(2059), + [4746] = {.count = 1, .reusable = true}, SHIFT(2060), + [4748] = {.count = 1, .reusable = false}, SHIFT(2061), + [4750] = {.count = 1, .reusable = true}, SHIFT(2061), + [4752] = {.count = 1, .reusable = true}, SHIFT(2062), + [4754] = {.count = 1, .reusable = false}, SHIFT(2063), + [4756] = {.count = 1, .reusable = true}, SHIFT(2063), + [4758] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4760] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4762] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [4764] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [4766] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [4768] = {.count = 1, .reusable = true}, SHIFT(2066), + [4770] = {.count = 1, .reusable = true}, SHIFT(2067), + [4772] = {.count = 1, .reusable = true}, SHIFT(2068), + [4774] = {.count = 1, .reusable = true}, SHIFT(2070), + [4776] = {.count = 1, .reusable = false}, SHIFT(2071), + [4778] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), + [4780] = {.count = 1, .reusable = true}, SHIFT(2072), + [4782] = {.count = 1, .reusable = false}, SHIFT(2073), + [4784] = {.count = 1, .reusable = false}, SHIFT(2074), + [4786] = {.count = 1, .reusable = false}, SHIFT(2075), + [4788] = {.count = 1, .reusable = true}, SHIFT(2076), + [4790] = {.count = 1, .reusable = false}, SHIFT(2077), + [4792] = {.count = 1, .reusable = false}, SHIFT(2078), + [4794] = {.count = 1, .reusable = false}, SHIFT(2079), + [4796] = {.count = 1, .reusable = true}, SHIFT(2080), + [4798] = {.count = 1, .reusable = false}, SHIFT(2081), + [4800] = {.count = 1, .reusable = true}, SHIFT(2088), + [4802] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [4804] = {.count = 1, .reusable = true}, SHIFT(2091), + [4806] = {.count = 1, .reusable = true}, SHIFT(2095), + [4808] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [4810] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [4812] = {.count = 1, .reusable = true}, SHIFT(2096), + [4814] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2097), + [4817] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(86), + [4820] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(87), + [4823] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2098), + [4826] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(89), + [4829] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(90), + [4832] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(91), + [4835] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(92), + [4838] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4840] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4842] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [4844] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [4846] = {.count = 1, .reusable = true}, SHIFT(2101), + [4848] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [4850] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [4852] = {.count = 1, .reusable = true}, SHIFT(2103), + [4854] = {.count = 1, .reusable = true}, SHIFT(2104), + [4856] = {.count = 1, .reusable = true}, SHIFT(2105), + [4858] = {.count = 1, .reusable = true}, SHIFT(2106), + [4860] = {.count = 1, .reusable = false}, SHIFT(2107), + [4862] = {.count = 1, .reusable = true}, SHIFT(2107), + [4864] = {.count = 1, .reusable = true}, SHIFT(2108), + [4866] = {.count = 1, .reusable = false}, SHIFT(2109), + [4868] = {.count = 1, .reusable = true}, SHIFT(2109), + [4870] = {.count = 1, .reusable = true}, SHIFT(2110), + [4872] = {.count = 1, .reusable = false}, SHIFT(2111), + [4874] = {.count = 1, .reusable = true}, SHIFT(2111), + [4876] = {.count = 1, .reusable = true}, SHIFT(2112), + [4878] = {.count = 1, .reusable = true}, SHIFT(2113), + [4880] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 6), + [4882] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 6), + [4884] = {.count = 1, .reusable = true}, SHIFT(2115), + [4886] = {.count = 1, .reusable = true}, SHIFT(2116), + [4888] = {.count = 1, .reusable = true}, SHIFT(2118), + [4890] = {.count = 1, .reusable = true}, SHIFT(2119), + [4892] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1192), + [4895] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1193), + [4898] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1194), + [4901] = {.count = 1, .reusable = true}, SHIFT(2121), + [4903] = {.count = 1, .reusable = true}, SHIFT(2122), + [4905] = {.count = 1, .reusable = true}, SHIFT(2123), + [4907] = {.count = 1, .reusable = true}, SHIFT(2124), + [4909] = {.count = 1, .reusable = false}, SHIFT(2125), + [4911] = {.count = 1, .reusable = true}, SHIFT(2125), + [4913] = {.count = 1, .reusable = true}, SHIFT(2126), + [4915] = {.count = 1, .reusable = false}, SHIFT(2127), + [4917] = {.count = 1, .reusable = true}, SHIFT(2127), + [4919] = {.count = 1, .reusable = true}, SHIFT(2128), + [4921] = {.count = 1, .reusable = false}, SHIFT(2129), + [4923] = {.count = 1, .reusable = true}, SHIFT(2129), + [4925] = {.count = 1, .reusable = true}, SHIFT(2130), + [4927] = {.count = 1, .reusable = true}, SHIFT(2131), + [4929] = {.count = 1, .reusable = true}, SHIFT(2132), + [4931] = {.count = 1, .reusable = false}, SHIFT(2134), + [4933] = {.count = 1, .reusable = false}, SHIFT(2135), + [4935] = {.count = 1, .reusable = true}, SHIFT(2136), + [4937] = {.count = 1, .reusable = true}, SHIFT(2137), + [4939] = {.count = 1, .reusable = false}, SHIFT(2139), + [4941] = {.count = 1, .reusable = true}, SHIFT(2139), + [4943] = {.count = 1, .reusable = true}, SHIFT(2138), + [4945] = {.count = 1, .reusable = true}, SHIFT(2140), + [4947] = {.count = 1, .reusable = true}, SHIFT(2141), + [4949] = {.count = 1, .reusable = false}, SHIFT(2142), + [4951] = {.count = 1, .reusable = false}, SHIFT(2141), + [4953] = {.count = 1, .reusable = true}, SHIFT(2144), + [4955] = {.count = 1, .reusable = false}, SHIFT(2146), + [4957] = {.count = 1, .reusable = true}, SHIFT(2146), + [4959] = {.count = 1, .reusable = true}, SHIFT(2145), + [4961] = {.count = 1, .reusable = true}, SHIFT(2147), + [4963] = {.count = 1, .reusable = false}, SHIFT(2149), + [4965] = {.count = 1, .reusable = true}, SHIFT(2149), + [4967] = {.count = 1, .reusable = true}, SHIFT(2148), + [4969] = {.count = 1, .reusable = true}, SHIFT(2150), + [4971] = {.count = 1, .reusable = true}, SHIFT(2151), + [4973] = {.count = 1, .reusable = true}, SHIFT(2152), + [4975] = {.count = 1, .reusable = true}, SHIFT(2153), + [4977] = {.count = 1, .reusable = true}, SHIFT(2154), + [4979] = {.count = 1, .reusable = true}, SHIFT(2155), + [4981] = {.count = 1, .reusable = false}, SHIFT(2156), + [4983] = {.count = 1, .reusable = true}, SHIFT(2156), + [4985] = {.count = 1, .reusable = true}, SHIFT(2157), + [4987] = {.count = 1, .reusable = false}, SHIFT(2158), + [4989] = {.count = 1, .reusable = true}, SHIFT(2158), + [4991] = {.count = 1, .reusable = true}, SHIFT(2159), + [4993] = {.count = 1, .reusable = false}, SHIFT(2160), + [4995] = {.count = 1, .reusable = true}, SHIFT(2160), + [4997] = {.count = 1, .reusable = true}, SHIFT(2161), + [4999] = {.count = 1, .reusable = true}, SHIFT(2162), + [5001] = {.count = 1, .reusable = true}, SHIFT(2163), + [5003] = {.count = 1, .reusable = true}, SHIFT(2164), + [5005] = {.count = 1, .reusable = true}, SHIFT(2165), + [5007] = {.count = 1, .reusable = true}, SHIFT(2166), + [5009] = {.count = 1, .reusable = false}, SHIFT(2167), + [5011] = {.count = 1, .reusable = true}, SHIFT(2167), + [5013] = {.count = 1, .reusable = true}, SHIFT(2168), + [5015] = {.count = 1, .reusable = false}, SHIFT(2169), + [5017] = {.count = 1, .reusable = true}, SHIFT(2169), + [5019] = {.count = 1, .reusable = true}, SHIFT(2170), + [5021] = {.count = 1, .reusable = false}, SHIFT(2171), + [5023] = {.count = 1, .reusable = true}, SHIFT(2171), + [5025] = {.count = 1, .reusable = true}, SHIFT(2172), + [5027] = {.count = 1, .reusable = true}, SHIFT(2173), + [5029] = {.count = 1, .reusable = true}, SHIFT(2174), + [5031] = {.count = 1, .reusable = true}, SHIFT(2175), + [5033] = {.count = 1, .reusable = true}, SHIFT(2176), + [5035] = {.count = 1, .reusable = true}, SHIFT(2177), + [5037] = {.count = 1, .reusable = false}, SHIFT(2178), + [5039] = {.count = 1, .reusable = true}, SHIFT(2178), + [5041] = {.count = 1, .reusable = true}, SHIFT(2179), + [5043] = {.count = 1, .reusable = false}, SHIFT(2180), + [5045] = {.count = 1, .reusable = true}, SHIFT(2180), + [5047] = {.count = 1, .reusable = true}, SHIFT(2181), + [5049] = {.count = 1, .reusable = false}, SHIFT(2182), + [5051] = {.count = 1, .reusable = true}, SHIFT(2182), + [5053] = {.count = 1, .reusable = true}, SHIFT(2183), + [5055] = {.count = 1, .reusable = true}, SHIFT(2184), + [5057] = {.count = 1, .reusable = true}, SHIFT(2185), + [5059] = {.count = 1, .reusable = true}, SHIFT(2186), + [5061] = {.count = 1, .reusable = true}, SHIFT(2187), + [5063] = {.count = 1, .reusable = true}, SHIFT(2188), + [5065] = {.count = 1, .reusable = false}, SHIFT(2189), + [5067] = {.count = 1, .reusable = true}, SHIFT(2189), + [5069] = {.count = 1, .reusable = true}, SHIFT(2190), + [5071] = {.count = 1, .reusable = false}, SHIFT(2191), + [5073] = {.count = 1, .reusable = true}, SHIFT(2191), + [5075] = {.count = 1, .reusable = true}, SHIFT(2192), + [5077] = {.count = 1, .reusable = false}, SHIFT(2193), + [5079] = {.count = 1, .reusable = true}, SHIFT(2193), + [5081] = {.count = 1, .reusable = true}, SHIFT(2194), + [5083] = {.count = 1, .reusable = true}, SHIFT(2195), + [5085] = {.count = 1, .reusable = true}, SHIFT(2196), + [5087] = {.count = 1, .reusable = true}, SHIFT(2197), + [5089] = {.count = 1, .reusable = true}, SHIFT(2198), + [5091] = {.count = 1, .reusable = true}, SHIFT(2199), + [5093] = {.count = 1, .reusable = false}, SHIFT(2200), + [5095] = {.count = 1, .reusable = true}, SHIFT(2200), + [5097] = {.count = 1, .reusable = true}, SHIFT(2201), + [5099] = {.count = 1, .reusable = false}, SHIFT(2202), + [5101] = {.count = 1, .reusable = true}, SHIFT(2202), + [5103] = {.count = 1, .reusable = true}, SHIFT(2203), + [5105] = {.count = 1, .reusable = false}, SHIFT(2204), + [5107] = {.count = 1, .reusable = true}, SHIFT(2204), + [5109] = {.count = 1, .reusable = true}, SHIFT(2205), + [5111] = {.count = 1, .reusable = true}, SHIFT(2206), + [5113] = {.count = 1, .reusable = true}, SHIFT(2207), + [5115] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [5117] = {.count = 1, .reusable = true}, SHIFT(2208), + [5119] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), + [5121] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1344), + [5124] = {.count = 1, .reusable = false}, SHIFT(2209), + [5126] = {.count = 1, .reusable = true}, SHIFT(2210), + [5128] = {.count = 1, .reusable = false}, SHIFT(2211), + [5130] = {.count = 1, .reusable = true}, SHIFT(2212), + [5132] = {.count = 1, .reusable = true}, SHIFT(2214), + [5134] = {.count = 1, .reusable = true}, SHIFT(2215), + [5136] = {.count = 1, .reusable = true}, SHIFT(2216), + [5138] = {.count = 1, .reusable = true}, SHIFT(2217), + [5140] = {.count = 1, .reusable = false}, SHIFT(2219), + [5142] = {.count = 1, .reusable = true}, SHIFT(2219), + [5144] = {.count = 1, .reusable = true}, SHIFT(2218), + [5146] = {.count = 1, .reusable = true}, SHIFT(2220), + [5148] = {.count = 1, .reusable = false}, SHIFT(2222), + [5150] = {.count = 1, .reusable = true}, SHIFT(2222), + [5152] = {.count = 1, .reusable = true}, SHIFT(2221), + [5154] = {.count = 1, .reusable = false}, SHIFT(2224), + [5156] = {.count = 1, .reusable = true}, SHIFT(2224), + [5158] = {.count = 1, .reusable = true}, SHIFT(2223), + [5160] = {.count = 1, .reusable = true}, SHIFT(2225), + [5162] = {.count = 1, .reusable = true}, SHIFT(2226), + [5164] = {.count = 1, .reusable = true}, SHIFT(2227), + [5166] = {.count = 1, .reusable = true}, SHIFT(2228), + [5168] = {.count = 1, .reusable = true}, SHIFT(2229), + [5170] = {.count = 1, .reusable = true}, SHIFT(2230), + [5172] = {.count = 1, .reusable = false}, SHIFT(2231), + [5174] = {.count = 1, .reusable = true}, SHIFT(2231), + [5176] = {.count = 1, .reusable = false}, SHIFT(2232), + [5178] = {.count = 1, .reusable = true}, SHIFT(2233), + [5180] = {.count = 1, .reusable = true}, SHIFT(2235), + [5182] = {.count = 1, .reusable = true}, SHIFT(2236), + [5184] = {.count = 1, .reusable = true}, SHIFT(2237), + [5186] = {.count = 1, .reusable = true}, SHIFT(2238), + [5188] = {.count = 1, .reusable = true}, SHIFT(2239), + [5190] = {.count = 1, .reusable = true}, SHIFT(2240), + [5192] = {.count = 1, .reusable = false}, SHIFT(2241), + [5194] = {.count = 1, .reusable = true}, SHIFT(2241), + [5196] = {.count = 1, .reusable = true}, SHIFT(2242), + [5198] = {.count = 1, .reusable = false}, SHIFT(2243), + [5200] = {.count = 1, .reusable = true}, SHIFT(2243), + [5202] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [5204] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [5206] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [5208] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [5210] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [5212] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [5214] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [5216] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [5218] = {.count = 1, .reusable = true}, SHIFT(2244), + [5220] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [5222] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [5224] = {.count = 1, .reusable = true}, SHIFT(2245), + [5226] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [5228] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [5230] = {.count = 1, .reusable = true}, SHIFT(2246), + [5232] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [5234] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [5236] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [5238] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [5240] = {.count = 1, .reusable = true}, SHIFT(2247), + [5242] = {.count = 1, .reusable = true}, SHIFT(2249), + [5244] = {.count = 1, .reusable = false}, SHIFT(2251), + [5246] = {.count = 1, .reusable = true}, SHIFT(2251), + [5248] = {.count = 1, .reusable = false}, SHIFT(2253), + [5250] = {.count = 1, .reusable = true}, SHIFT(2254), + [5252] = {.count = 1, .reusable = true}, SHIFT(2256), + [5254] = {.count = 1, .reusable = false}, SHIFT(2258), + [5256] = {.count = 1, .reusable = true}, SHIFT(2260), + [5258] = {.count = 1, .reusable = false}, SHIFT(2262), + [5260] = {.count = 1, .reusable = true}, SHIFT(2265), + [5262] = {.count = 1, .reusable = true}, SHIFT(2266), + [5264] = {.count = 1, .reusable = true}, SHIFT(2269), + [5266] = {.count = 1, .reusable = true}, SHIFT(2270), + [5268] = {.count = 1, .reusable = true}, SHIFT(2272), + [5270] = {.count = 1, .reusable = false}, SHIFT(2274), + [5272] = {.count = 1, .reusable = false}, SHIFT(2275), + [5274] = {.count = 1, .reusable = true}, SHIFT(2277), + [5276] = {.count = 1, .reusable = true}, SHIFT(2278), + [5278] = {.count = 1, .reusable = false}, SHIFT(2279), + [5280] = {.count = 1, .reusable = false}, SHIFT(2277), + [5282] = {.count = 1, .reusable = true}, SHIFT(2280), + [5284] = {.count = 1, .reusable = true}, SHIFT(2281), + [5286] = {.count = 1, .reusable = true}, SHIFT(2282), + [5288] = {.count = 1, .reusable = false}, SHIFT(2283), + [5290] = {.count = 1, .reusable = false}, SHIFT(2281), + [5292] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1426), + [5295] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1427), + [5298] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1427), + [5301] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1428), + [5304] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1428), + [5307] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1429), + [5310] = {.count = 1, .reusable = true}, SHIFT(2291), + [5312] = {.count = 1, .reusable = true}, SHIFT(2292), + [5314] = {.count = 1, .reusable = true}, SHIFT(2293), + [5316] = {.count = 1, .reusable = true}, SHIFT(2294), + [5318] = {.count = 1, .reusable = false}, SHIFT(2295), + [5320] = {.count = 1, .reusable = true}, SHIFT(2295), + [5322] = {.count = 1, .reusable = false}, SHIFT(2296), + [5324] = {.count = 1, .reusable = true}, SHIFT(2297), + [5326] = {.count = 1, .reusable = true}, SHIFT(2299), + [5328] = {.count = 1, .reusable = true}, SHIFT(2300), + [5330] = {.count = 1, .reusable = true}, SHIFT(2301), + [5332] = {.count = 1, .reusable = true}, SHIFT(2302), + [5334] = {.count = 1, .reusable = true}, SHIFT(2303), + [5336] = {.count = 1, .reusable = true}, SHIFT(2304), + [5338] = {.count = 1, .reusable = false}, SHIFT(2305), + [5340] = {.count = 1, .reusable = true}, SHIFT(2305), + [5342] = {.count = 1, .reusable = true}, SHIFT(2306), + [5344] = {.count = 1, .reusable = false}, SHIFT(2307), + [5346] = {.count = 1, .reusable = true}, SHIFT(2307), + [5348] = {.count = 1, .reusable = true}, SHIFT(2308), + [5350] = {.count = 1, .reusable = true}, SHIFT(2309), + [5352] = {.count = 1, .reusable = true}, SHIFT(2310), + [5354] = {.count = 1, .reusable = false}, SHIFT(2311), + [5356] = {.count = 1, .reusable = true}, SHIFT(2311), + [5358] = {.count = 1, .reusable = false}, SHIFT(2312), + [5360] = {.count = 1, .reusable = true}, SHIFT(2313), + [5362] = {.count = 1, .reusable = true}, SHIFT(2315), + [5364] = {.count = 1, .reusable = true}, SHIFT(2316), + [5366] = {.count = 1, .reusable = true}, SHIFT(2317), + [5368] = {.count = 1, .reusable = true}, SHIFT(2318), + [5370] = {.count = 1, .reusable = true}, SHIFT(2319), + [5372] = {.count = 1, .reusable = true}, SHIFT(2320), + [5374] = {.count = 1, .reusable = false}, SHIFT(2321), + [5376] = {.count = 1, .reusable = true}, SHIFT(2321), + [5378] = {.count = 1, .reusable = true}, SHIFT(2322), + [5380] = {.count = 1, .reusable = false}, SHIFT(2323), + [5382] = {.count = 1, .reusable = true}, SHIFT(2323), + [5384] = {.count = 1, .reusable = true}, SHIFT(2324), + [5386] = {.count = 1, .reusable = true}, SHIFT(2325), + [5388] = {.count = 1, .reusable = true}, SHIFT(2326), + [5390] = {.count = 1, .reusable = true}, SHIFT(2327), + [5392] = {.count = 1, .reusable = false}, SHIFT(2328), + [5394] = {.count = 1, .reusable = true}, SHIFT(2328), + [5396] = {.count = 1, .reusable = true}, SHIFT(2329), + [5398] = {.count = 1, .reusable = false}, SHIFT(2330), + [5400] = {.count = 1, .reusable = true}, SHIFT(2330), + [5402] = {.count = 1, .reusable = true}, SHIFT(2331), + [5404] = {.count = 1, .reusable = false}, SHIFT(2332), + [5406] = {.count = 1, .reusable = true}, SHIFT(2332), + [5408] = {.count = 1, .reusable = true}, SHIFT(2333), + [5410] = {.count = 1, .reusable = true}, SHIFT(2334), + [5412] = {.count = 1, .reusable = true}, SHIFT(2335), + [5414] = {.count = 1, .reusable = true}, SHIFT(2336), + [5416] = {.count = 1, .reusable = true}, SHIFT(2338), + [5418] = {.count = 1, .reusable = true}, SHIFT(2339), + [5420] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1507), + [5423] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1508), + [5426] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1508), + [5429] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1509), + [5432] = {.count = 1, .reusable = true}, SHIFT(2341), + [5434] = {.count = 1, .reusable = true}, SHIFT(2342), + [5436] = {.count = 1, .reusable = true}, SHIFT(2343), + [5438] = {.count = 1, .reusable = false}, SHIFT(2344), + [5440] = {.count = 1, .reusable = true}, SHIFT(2344), + [5442] = {.count = 1, .reusable = false}, SHIFT(2345), + [5444] = {.count = 1, .reusable = true}, SHIFT(2346), + [5446] = {.count = 1, .reusable = true}, SHIFT(2348), + [5448] = {.count = 1, .reusable = true}, SHIFT(2349), + [5450] = {.count = 1, .reusable = true}, SHIFT(2350), + [5452] = {.count = 1, .reusable = true}, SHIFT(2351), + [5454] = {.count = 1, .reusable = true}, SHIFT(2352), + [5456] = {.count = 1, .reusable = true}, SHIFT(2353), + [5458] = {.count = 1, .reusable = false}, SHIFT(2354), + [5460] = {.count = 1, .reusable = true}, SHIFT(2354), + [5462] = {.count = 1, .reusable = true}, SHIFT(2355), + [5464] = {.count = 1, .reusable = false}, SHIFT(2356), + [5466] = {.count = 1, .reusable = true}, SHIFT(2356), + [5468] = {.count = 1, .reusable = true}, SHIFT(2357), + [5470] = {.count = 1, .reusable = true}, SHIFT(2358), + [5472] = {.count = 1, .reusable = true}, SHIFT(2359), + [5474] = {.count = 1, .reusable = false}, SHIFT(2360), + [5476] = {.count = 1, .reusable = true}, SHIFT(2360), + [5478] = {.count = 1, .reusable = false}, SHIFT(2361), + [5480] = {.count = 1, .reusable = true}, SHIFT(2362), + [5482] = {.count = 1, .reusable = true}, SHIFT(2364), + [5484] = {.count = 1, .reusable = true}, SHIFT(2365), + [5486] = {.count = 1, .reusable = true}, SHIFT(2366), + [5488] = {.count = 1, .reusable = true}, SHIFT(2367), + [5490] = {.count = 1, .reusable = true}, SHIFT(2368), + [5492] = {.count = 1, .reusable = true}, SHIFT(2369), + [5494] = {.count = 1, .reusable = false}, SHIFT(2370), + [5496] = {.count = 1, .reusable = true}, SHIFT(2370), + [5498] = {.count = 1, .reusable = true}, SHIFT(2371), + [5500] = {.count = 1, .reusable = false}, SHIFT(2372), + [5502] = {.count = 1, .reusable = true}, SHIFT(2372), + [5504] = {.count = 1, .reusable = true}, SHIFT(2373), + [5506] = {.count = 1, .reusable = true}, SHIFT(2374), + [5508] = {.count = 1, .reusable = true}, SHIFT(2375), + [5510] = {.count = 1, .reusable = true}, SHIFT(2376), + [5512] = {.count = 1, .reusable = false}, SHIFT(2377), + [5514] = {.count = 1, .reusable = true}, SHIFT(2377), + [5516] = {.count = 1, .reusable = true}, SHIFT(2378), + [5518] = {.count = 1, .reusable = false}, SHIFT(2379), + [5520] = {.count = 1, .reusable = true}, SHIFT(2379), + [5522] = {.count = 1, .reusable = true}, SHIFT(2380), + [5524] = {.count = 1, .reusable = false}, SHIFT(2381), + [5526] = {.count = 1, .reusable = true}, SHIFT(2381), + [5528] = {.count = 1, .reusable = true}, SHIFT(2382), + [5530] = {.count = 1, .reusable = true}, SHIFT(2383), + [5532] = {.count = 1, .reusable = true}, SHIFT(2384), + [5534] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1582), + [5537] = {.count = 1, .reusable = false}, SHIFT(2385), + [5539] = {.count = 1, .reusable = true}, SHIFT(2386), + [5541] = {.count = 1, .reusable = false}, SHIFT(2387), + [5543] = {.count = 1, .reusable = true}, SHIFT(2388), + [5545] = {.count = 1, .reusable = true}, SHIFT(2390), + [5547] = {.count = 1, .reusable = true}, SHIFT(2391), + [5549] = {.count = 1, .reusable = true}, SHIFT(2392), + [5551] = {.count = 1, .reusable = true}, SHIFT(2393), + [5553] = {.count = 1, .reusable = false}, SHIFT(2395), + [5555] = {.count = 1, .reusable = true}, SHIFT(2395), + [5557] = {.count = 1, .reusable = true}, SHIFT(2394), + [5559] = {.count = 1, .reusable = true}, SHIFT(2396), + [5561] = {.count = 1, .reusable = false}, SHIFT(2398), + [5563] = {.count = 1, .reusable = true}, SHIFT(2398), + [5565] = {.count = 1, .reusable = true}, SHIFT(2397), + [5567] = {.count = 1, .reusable = false}, SHIFT(2400), + [5569] = {.count = 1, .reusable = true}, SHIFT(2400), + [5571] = {.count = 1, .reusable = true}, SHIFT(2399), + [5573] = {.count = 1, .reusable = true}, SHIFT(2401), + [5575] = {.count = 1, .reusable = true}, SHIFT(2402), + [5577] = {.count = 1, .reusable = true}, SHIFT(2403), + [5579] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), + [5581] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), + [5583] = {.count = 1, .reusable = true}, SHIFT(2405), + [5585] = {.count = 1, .reusable = true}, SHIFT(2406), + [5587] = {.count = 1, .reusable = true}, SHIFT(2407), + [5589] = {.count = 1, .reusable = true}, SHIFT(2408), + [5591] = {.count = 1, .reusable = false}, SHIFT(2409), + [5593] = {.count = 1, .reusable = true}, SHIFT(2409), + [5595] = {.count = 1, .reusable = true}, SHIFT(2410), + [5597] = {.count = 1, .reusable = false}, SHIFT(2411), + [5599] = {.count = 1, .reusable = true}, SHIFT(2411), + [5601] = {.count = 1, .reusable = true}, SHIFT(2412), + [5603] = {.count = 1, .reusable = false}, SHIFT(2413), + [5605] = {.count = 1, .reusable = true}, SHIFT(2413), + [5607] = {.count = 1, .reusable = true}, SHIFT(2414), + [5609] = {.count = 1, .reusable = true}, SHIFT(2415), + [5611] = {.count = 1, .reusable = true}, SHIFT(2416), + [5613] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), + [5615] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [5617] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [5619] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), + [5621] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [5623] = {.count = 1, .reusable = true}, SHIFT(2417), + [5625] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [5627] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5629] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5631] = {.count = 1, .reusable = true}, SHIFT(2419), + [5633] = {.count = 1, .reusable = true}, SHIFT(2422), + [5635] = {.count = 1, .reusable = false}, SHIFT(2423), + [5637] = {.count = 1, .reusable = false}, SHIFT(2424), + [5639] = {.count = 1, .reusable = false}, SHIFT(2425), + [5641] = {.count = 1, .reusable = false}, SHIFT(2426), + [5643] = {.count = 1, .reusable = false}, SHIFT(2427), + [5645] = {.count = 1, .reusable = false}, SHIFT(2428), + [5647] = {.count = 1, .reusable = false}, SHIFT(2429), + [5649] = {.count = 1, .reusable = false}, SHIFT(2430), + [5651] = {.count = 1, .reusable = false}, SHIFT(2431), + [5653] = {.count = 1, .reusable = false}, SHIFT(2435), + [5655] = {.count = 1, .reusable = false}, SHIFT(2436), + [5657] = {.count = 1, .reusable = false}, SHIFT(2437), + [5659] = {.count = 1, .reusable = false}, SHIFT(2438), + [5661] = {.count = 1, .reusable = false}, SHIFT(2439), + [5663] = {.count = 1, .reusable = false}, SHIFT(2440), + [5665] = {.count = 1, .reusable = false}, SHIFT(2441), + [5667] = {.count = 1, .reusable = false}, SHIFT(2442), + [5669] = {.count = 1, .reusable = false}, SHIFT(2443), + [5671] = {.count = 1, .reusable = false}, SHIFT(2446), + [5673] = {.count = 1, .reusable = false}, SHIFT(2447), + [5675] = {.count = 1, .reusable = false}, SHIFT(2448), + [5677] = {.count = 1, .reusable = false}, SHIFT(2449), + [5679] = {.count = 1, .reusable = true}, SHIFT(2450), + [5681] = {.count = 1, .reusable = false}, SHIFT(2451), + [5683] = {.count = 1, .reusable = false}, SHIFT(2452), + [5685] = {.count = 1, .reusable = false}, SHIFT(2453), + [5687] = {.count = 1, .reusable = false}, SHIFT(2454), + [5689] = {.count = 1, .reusable = false}, SHIFT(2455), + [5691] = {.count = 1, .reusable = true}, SHIFT(2458), + [5693] = {.count = 1, .reusable = true}, SHIFT(2079), + [5695] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1632), + [5698] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [5700] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [5702] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [5704] = {.count = 1, .reusable = false}, SHIFT(2464), + [5706] = {.count = 1, .reusable = true}, SHIFT(2465), + [5708] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [5710] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [5712] = {.count = 1, .reusable = true}, SHIFT(2469), + [5714] = {.count = 1, .reusable = true}, SHIFT(2471), + [5716] = {.count = 1, .reusable = true}, SHIFT(2473), + [5718] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [5720] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [5722] = {.count = 1, .reusable = true}, SHIFT(2474), + [5724] = {.count = 1, .reusable = true}, SHIFT(2475), + [5726] = {.count = 1, .reusable = true}, SHIFT(2476), + [5728] = {.count = 1, .reusable = true}, SHIFT(2477), + [5730] = {.count = 1, .reusable = true}, SHIFT(2480), + [5732] = {.count = 1, .reusable = true}, SHIFT(2481), + [5734] = {.count = 1, .reusable = true}, SHIFT(2482), + [5736] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1700), + [5739] = {.count = 1, .reusable = false}, SHIFT(2483), + [5741] = {.count = 1, .reusable = true}, SHIFT(2484), + [5743] = {.count = 1, .reusable = false}, SHIFT(2485), + [5745] = {.count = 1, .reusable = true}, SHIFT(2486), + [5747] = {.count = 1, .reusable = true}, SHIFT(2488), + [5749] = {.count = 1, .reusable = true}, SHIFT(2489), + [5751] = {.count = 1, .reusable = true}, SHIFT(2490), + [5753] = {.count = 1, .reusable = true}, SHIFT(2491), + [5755] = {.count = 1, .reusable = false}, SHIFT(2493), + [5757] = {.count = 1, .reusable = true}, SHIFT(2493), + [5759] = {.count = 1, .reusable = true}, SHIFT(2492), + [5761] = {.count = 1, .reusable = true}, SHIFT(2494), + [5763] = {.count = 1, .reusable = false}, SHIFT(2496), + [5765] = {.count = 1, .reusable = true}, SHIFT(2496), + [5767] = {.count = 1, .reusable = true}, SHIFT(2495), + [5769] = {.count = 1, .reusable = false}, SHIFT(2498), + [5771] = {.count = 1, .reusable = true}, SHIFT(2498), + [5773] = {.count = 1, .reusable = true}, SHIFT(2497), + [5775] = {.count = 1, .reusable = true}, SHIFT(2499), + [5777] = {.count = 1, .reusable = true}, SHIFT(2500), + [5779] = {.count = 1, .reusable = true}, SHIFT(2501), + [5781] = {.count = 1, .reusable = true}, SHIFT(2502), + [5783] = {.count = 1, .reusable = true}, SHIFT(2503), + [5785] = {.count = 1, .reusable = true}, SHIFT(2504), + [5787] = {.count = 1, .reusable = true}, SHIFT(2505), + [5789] = {.count = 1, .reusable = true}, SHIFT(2506), + [5791] = {.count = 1, .reusable = true}, SHIFT(2507), + [5793] = {.count = 1, .reusable = true}, SHIFT(2508), + [5795] = {.count = 1, .reusable = true}, SHIFT(2509), + [5797] = {.count = 1, .reusable = true}, SHIFT(2510), + [5799] = {.count = 1, .reusable = true}, SHIFT(2511), + [5801] = {.count = 1, .reusable = true}, SHIFT(2512), + [5803] = {.count = 1, .reusable = true}, SHIFT(2513), + [5805] = {.count = 1, .reusable = true}, SHIFT(2514), + [5807] = {.count = 1, .reusable = true}, SHIFT(2515), + [5809] = {.count = 1, .reusable = true}, SHIFT(2516), + [5811] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [5813] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [5815] = {.count = 1, .reusable = true}, SHIFT(2517), + [5817] = {.count = 1, .reusable = true}, SHIFT(2518), + [5819] = {.count = 1, .reusable = true}, SHIFT(2519), + [5821] = {.count = 1, .reusable = false}, SHIFT(2520), + [5823] = {.count = 1, .reusable = true}, SHIFT(2520), + [5825] = {.count = 1, .reusable = false}, SHIFT(2521), + [5827] = {.count = 1, .reusable = true}, SHIFT(2522), + [5829] = {.count = 1, .reusable = true}, SHIFT(2524), + [5831] = {.count = 1, .reusable = true}, SHIFT(2525), + [5833] = {.count = 1, .reusable = true}, SHIFT(2526), + [5835] = {.count = 1, .reusable = true}, SHIFT(2527), + [5837] = {.count = 1, .reusable = true}, SHIFT(2528), + [5839] = {.count = 1, .reusable = true}, SHIFT(2529), + [5841] = {.count = 1, .reusable = false}, SHIFT(2530), + [5843] = {.count = 1, .reusable = true}, SHIFT(2530), + [5845] = {.count = 1, .reusable = true}, SHIFT(2531), + [5847] = {.count = 1, .reusable = false}, SHIFT(2532), + [5849] = {.count = 1, .reusable = true}, SHIFT(2532), + [5851] = {.count = 1, .reusable = true}, SHIFT(2533), + [5853] = {.count = 1, .reusable = true}, SHIFT(2534), + [5855] = {.count = 1, .reusable = true}, SHIFT(2535), + [5857] = {.count = 1, .reusable = true}, SHIFT(2536), + [5859] = {.count = 1, .reusable = false}, SHIFT(2537), + [5861] = {.count = 1, .reusable = true}, SHIFT(2537), + [5863] = {.count = 1, .reusable = true}, SHIFT(2538), + [5865] = {.count = 1, .reusable = false}, SHIFT(2539), + [5867] = {.count = 1, .reusable = true}, SHIFT(2539), + [5869] = {.count = 1, .reusable = true}, SHIFT(2540), + [5871] = {.count = 1, .reusable = false}, SHIFT(2541), + [5873] = {.count = 1, .reusable = true}, SHIFT(2541), + [5875] = {.count = 1, .reusable = true}, SHIFT(2542), + [5877] = {.count = 1, .reusable = true}, SHIFT(2543), + [5879] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5881] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5883] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5885] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5887] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5889] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5891] = {.count = 1, .reusable = true}, SHIFT(2544), + [5893] = {.count = 1, .reusable = true}, SHIFT(2547), + [5895] = {.count = 1, .reusable = true}, SHIFT(2549), + [5897] = {.count = 1, .reusable = true}, SHIFT(2550), + [5899] = {.count = 1, .reusable = true}, SHIFT(2552), + [5901] = {.count = 1, .reusable = true}, SHIFT(2555), + [5903] = {.count = 1, .reusable = false}, SHIFT(2557), + [5905] = {.count = 1, .reusable = false}, SHIFT(2558), + [5907] = {.count = 1, .reusable = true}, SHIFT(2559), + [5909] = {.count = 1, .reusable = true}, SHIFT(2560), + [5911] = {.count = 1, .reusable = false}, SHIFT(2562), + [5913] = {.count = 1, .reusable = true}, SHIFT(2562), + [5915] = {.count = 1, .reusable = true}, SHIFT(2561), + [5917] = {.count = 1, .reusable = true}, SHIFT(2563), + [5919] = {.count = 1, .reusable = true}, SHIFT(2564), + [5921] = {.count = 1, .reusable = false}, SHIFT(2565), + [5923] = {.count = 1, .reusable = false}, SHIFT(2564), + [5925] = {.count = 1, .reusable = true}, SHIFT(2567), + [5927] = {.count = 1, .reusable = false}, SHIFT(2569), + [5929] = {.count = 1, .reusable = true}, SHIFT(2569), + [5931] = {.count = 1, .reusable = true}, SHIFT(2568), + [5933] = {.count = 1, .reusable = true}, SHIFT(2570), + [5935] = {.count = 1, .reusable = false}, SHIFT(2572), + [5937] = {.count = 1, .reusable = true}, SHIFT(2572), + [5939] = {.count = 1, .reusable = true}, SHIFT(2571), + [5941] = {.count = 1, .reusable = true}, SHIFT(2573), + [5943] = {.count = 1, .reusable = true}, SHIFT(2574), + [5945] = {.count = 1, .reusable = true}, SHIFT(2575), + [5947] = {.count = 1, .reusable = true}, SHIFT(2576), + [5949] = {.count = 1, .reusable = true}, SHIFT(2577), + [5951] = {.count = 1, .reusable = true}, SHIFT(2578), + [5953] = {.count = 1, .reusable = false}, SHIFT(2579), + [5955] = {.count = 1, .reusable = true}, SHIFT(2579), + [5957] = {.count = 1, .reusable = true}, SHIFT(2580), + [5959] = {.count = 1, .reusable = false}, SHIFT(2581), + [5961] = {.count = 1, .reusable = true}, SHIFT(2581), + [5963] = {.count = 1, .reusable = true}, SHIFT(2582), + [5965] = {.count = 1, .reusable = false}, SHIFT(2583), + [5967] = {.count = 1, .reusable = true}, SHIFT(2583), + [5969] = {.count = 1, .reusable = true}, SHIFT(2584), + [5971] = {.count = 1, .reusable = true}, SHIFT(2585), + [5973] = {.count = 1, .reusable = true}, SHIFT(2586), + [5975] = {.count = 1, .reusable = true}, SHIFT(2587), + [5977] = {.count = 1, .reusable = true}, SHIFT(2588), + [5979] = {.count = 1, .reusable = true}, SHIFT(2589), + [5981] = {.count = 1, .reusable = false}, SHIFT(2590), + [5983] = {.count = 1, .reusable = true}, SHIFT(2590), + [5985] = {.count = 1, .reusable = true}, SHIFT(2591), + [5987] = {.count = 1, .reusable = false}, SHIFT(2592), + [5989] = {.count = 1, .reusable = true}, SHIFT(2592), + [5991] = {.count = 1, .reusable = true}, SHIFT(2593), + [5993] = {.count = 1, .reusable = false}, SHIFT(2594), + [5995] = {.count = 1, .reusable = true}, SHIFT(2594), + [5997] = {.count = 1, .reusable = true}, SHIFT(2595), + [5999] = {.count = 1, .reusable = true}, SHIFT(2596), + [6001] = {.count = 1, .reusable = true}, SHIFT(2597), + [6003] = {.count = 1, .reusable = true}, SHIFT(2598), + [6005] = {.count = 1, .reusable = true}, SHIFT(2599), + [6007] = {.count = 1, .reusable = true}, SHIFT(2602), + [6009] = {.count = 1, .reusable = true}, SHIFT(2603), + [6011] = {.count = 1, .reusable = true}, SHIFT(2604), + [6013] = {.count = 1, .reusable = true}, SHIFT(2605), + [6015] = {.count = 1, .reusable = false}, SHIFT(2606), + [6017] = {.count = 1, .reusable = true}, SHIFT(2606), + [6019] = {.count = 1, .reusable = true}, SHIFT(2607), + [6021] = {.count = 1, .reusable = false}, SHIFT(2608), + [6023] = {.count = 1, .reusable = true}, SHIFT(2608), + [6025] = {.count = 1, .reusable = true}, SHIFT(2609), + [6027] = {.count = 1, .reusable = false}, SHIFT(2610), + [6029] = {.count = 1, .reusable = true}, SHIFT(2610), + [6031] = {.count = 1, .reusable = true}, SHIFT(2611), + [6033] = {.count = 1, .reusable = true}, SHIFT(2612), + [6035] = {.count = 1, .reusable = true}, SHIFT(2613), + [6037] = {.count = 1, .reusable = true}, SHIFT(2614), + [6039] = {.count = 1, .reusable = true}, SHIFT(2615), + [6041] = {.count = 1, .reusable = true}, SHIFT(2616), + [6043] = {.count = 1, .reusable = false}, SHIFT(2617), + [6045] = {.count = 1, .reusable = true}, SHIFT(2617), + [6047] = {.count = 1, .reusable = true}, SHIFT(2618), + [6049] = {.count = 1, .reusable = false}, SHIFT(2619), + [6051] = {.count = 1, .reusable = true}, SHIFT(2619), + [6053] = {.count = 1, .reusable = true}, SHIFT(2620), + [6055] = {.count = 1, .reusable = false}, SHIFT(2621), + [6057] = {.count = 1, .reusable = true}, SHIFT(2621), + [6059] = {.count = 1, .reusable = true}, SHIFT(2622), + [6061] = {.count = 1, .reusable = true}, SHIFT(2623), + [6063] = {.count = 1, .reusable = true}, SHIFT(2624), + [6065] = {.count = 1, .reusable = true}, SHIFT(2625), + [6067] = {.count = 1, .reusable = true}, SHIFT(2626), + [6069] = {.count = 1, .reusable = true}, SHIFT(2627), + [6071] = {.count = 1, .reusable = true}, SHIFT(2628), + [6073] = {.count = 1, .reusable = true}, SHIFT(2629), + [6075] = {.count = 1, .reusable = false}, SHIFT(2630), + [6077] = {.count = 1, .reusable = true}, SHIFT(2630), + [6079] = {.count = 1, .reusable = false}, SHIFT(2631), + [6081] = {.count = 1, .reusable = true}, SHIFT(2632), + [6083] = {.count = 1, .reusable = true}, SHIFT(2634), + [6085] = {.count = 1, .reusable = true}, SHIFT(2635), + [6087] = {.count = 1, .reusable = true}, SHIFT(2636), + [6089] = {.count = 1, .reusable = true}, SHIFT(2637), + [6091] = {.count = 1, .reusable = true}, SHIFT(2638), + [6093] = {.count = 1, .reusable = true}, SHIFT(2639), + [6095] = {.count = 1, .reusable = false}, SHIFT(2640), + [6097] = {.count = 1, .reusable = true}, SHIFT(2640), + [6099] = {.count = 1, .reusable = true}, SHIFT(2641), + [6101] = {.count = 1, .reusable = false}, SHIFT(2642), + [6103] = {.count = 1, .reusable = true}, SHIFT(2642), + [6105] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), + [6107] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), + [6109] = {.count = 1, .reusable = true}, SHIFT(2643), + [6111] = {.count = 1, .reusable = true}, SHIFT(2644), + [6113] = {.count = 1, .reusable = true}, SHIFT(2645), + [6115] = {.count = 1, .reusable = true}, SHIFT(2647), + [6117] = {.count = 1, .reusable = true}, SHIFT(2648), + [6119] = {.count = 1, .reusable = true}, SHIFT(2650), + [6121] = {.count = 1, .reusable = true}, SHIFT(2652), + [6123] = {.count = 1, .reusable = true}, SHIFT(2653), + [6125] = {.count = 1, .reusable = true}, SHIFT(2654), + [6127] = {.count = 1, .reusable = false}, SHIFT(2656), + [6129] = {.count = 1, .reusable = false}, SHIFT(2657), + [6131] = {.count = 1, .reusable = true}, SHIFT(2424), + [6133] = {.count = 1, .reusable = true}, SHIFT(2659), + [6135] = {.count = 1, .reusable = true}, SHIFT(2660), + [6137] = {.count = 1, .reusable = false}, SHIFT(2661), + [6139] = {.count = 1, .reusable = false}, SHIFT(2659), + [6141] = {.count = 1, .reusable = true}, SHIFT(2662), + [6143] = {.count = 1, .reusable = true}, SHIFT(2663), + [6145] = {.count = 1, .reusable = true}, SHIFT(2664), + [6147] = {.count = 1, .reusable = false}, SHIFT(2665), + [6149] = {.count = 1, .reusable = false}, SHIFT(2663), + [6151] = {.count = 1, .reusable = true}, SHIFT(2674), + [6153] = {.count = 1, .reusable = false}, SHIFT(2676), + [6155] = {.count = 1, .reusable = false}, SHIFT(2677), + [6157] = {.count = 1, .reusable = true}, SHIFT(2436), + [6159] = {.count = 1, .reusable = true}, SHIFT(2679), + [6161] = {.count = 1, .reusable = true}, SHIFT(2680), + [6163] = {.count = 1, .reusable = false}, SHIFT(2681), + [6165] = {.count = 1, .reusable = false}, SHIFT(2679), + [6167] = {.count = 1, .reusable = true}, SHIFT(2682), + [6169] = {.count = 1, .reusable = true}, SHIFT(2683), + [6171] = {.count = 1, .reusable = true}, SHIFT(2684), + [6173] = {.count = 1, .reusable = false}, SHIFT(2685), + [6175] = {.count = 1, .reusable = false}, SHIFT(2683), + [6177] = {.count = 1, .reusable = true}, SHIFT(2695), + [6179] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [6181] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [6183] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [6185] = {.count = 1, .reusable = false}, SHIFT(2698), + [6187] = {.count = 1, .reusable = true}, SHIFT(2698), + [6189] = {.count = 1, .reusable = false}, SHIFT(2699), + [6191] = {.count = 1, .reusable = false}, SHIFT(2700), + [6193] = {.count = 1, .reusable = true}, SHIFT(2701), + [6195] = {.count = 1, .reusable = true}, SHIFT(2702), + [6197] = {.count = 1, .reusable = true}, SHIFT(2703), + [6199] = {.count = 1, .reusable = true}, SHIFT(2704), + [6201] = {.count = 1, .reusable = false}, SHIFT(2708), + [6203] = {.count = 1, .reusable = true}, SHIFT(2710), + [6205] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [6207] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [6209] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [6211] = {.count = 1, .reusable = false}, SHIFT(2713), + [6213] = {.count = 1, .reusable = true}, SHIFT(2714), + [6215] = {.count = 1, .reusable = true}, SHIFT(2717), + [6217] = {.count = 1, .reusable = true}, SHIFT(2721), + [6219] = {.count = 1, .reusable = true}, SHIFT(2722), + [6221] = {.count = 1, .reusable = true}, SHIFT(2726), + [6223] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [6225] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [6227] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [6229] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [6231] = {.count = 1, .reusable = true}, SHIFT(2727), + [6233] = {.count = 1, .reusable = true}, SHIFT(2728), + [6235] = {.count = 1, .reusable = true}, SHIFT(2729), + [6237] = {.count = 1, .reusable = false}, SHIFT(2730), + [6239] = {.count = 1, .reusable = true}, SHIFT(2730), + [6241] = {.count = 1, .reusable = false}, SHIFT(2731), + [6243] = {.count = 1, .reusable = true}, SHIFT(2732), + [6245] = {.count = 1, .reusable = true}, SHIFT(2734), + [6247] = {.count = 1, .reusable = true}, SHIFT(2735), + [6249] = {.count = 1, .reusable = true}, SHIFT(2736), + [6251] = {.count = 1, .reusable = true}, SHIFT(2737), + [6253] = {.count = 1, .reusable = true}, SHIFT(2738), + [6255] = {.count = 1, .reusable = true}, SHIFT(2739), + [6257] = {.count = 1, .reusable = false}, SHIFT(2740), + [6259] = {.count = 1, .reusable = true}, SHIFT(2740), + [6261] = {.count = 1, .reusable = true}, SHIFT(2741), + [6263] = {.count = 1, .reusable = false}, SHIFT(2742), + [6265] = {.count = 1, .reusable = true}, SHIFT(2742), + [6267] = {.count = 1, .reusable = true}, SHIFT(2743), + [6269] = {.count = 1, .reusable = true}, SHIFT(2744), + [6271] = {.count = 1, .reusable = true}, SHIFT(2745), + [6273] = {.count = 1, .reusable = true}, SHIFT(2746), + [6275] = {.count = 1, .reusable = false}, SHIFT(2747), + [6277] = {.count = 1, .reusable = true}, SHIFT(2747), + [6279] = {.count = 1, .reusable = true}, SHIFT(2748), + [6281] = {.count = 1, .reusable = false}, SHIFT(2749), + [6283] = {.count = 1, .reusable = true}, SHIFT(2749), + [6285] = {.count = 1, .reusable = true}, SHIFT(2750), + [6287] = {.count = 1, .reusable = false}, SHIFT(2751), + [6289] = {.count = 1, .reusable = true}, SHIFT(2751), + [6291] = {.count = 1, .reusable = true}, SHIFT(2752), + [6293] = {.count = 1, .reusable = true}, SHIFT(2753), + [6295] = {.count = 1, .reusable = true}, SHIFT(2754), + [6297] = {.count = 1, .reusable = true}, SHIFT(2755), + [6299] = {.count = 1, .reusable = true}, SHIFT(2756), + [6301] = {.count = 1, .reusable = true}, SHIFT(2757), + [6303] = {.count = 1, .reusable = true}, SHIFT(2759), + [6305] = {.count = 1, .reusable = true}, SHIFT(2760), + [6307] = {.count = 1, .reusable = true}, SHIFT(2761), + [6309] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2272), + [6312] = {.count = 1, .reusable = false}, SHIFT(2762), + [6314] = {.count = 1, .reusable = true}, SHIFT(2763), + [6316] = {.count = 1, .reusable = false}, SHIFT(2764), + [6318] = {.count = 1, .reusable = true}, SHIFT(2765), + [6320] = {.count = 1, .reusable = true}, SHIFT(2767), + [6322] = {.count = 1, .reusable = true}, SHIFT(2768), + [6324] = {.count = 1, .reusable = true}, SHIFT(2769), + [6326] = {.count = 1, .reusable = true}, SHIFT(2770), + [6328] = {.count = 1, .reusable = false}, SHIFT(2772), + [6330] = {.count = 1, .reusable = true}, SHIFT(2772), + [6332] = {.count = 1, .reusable = true}, SHIFT(2771), + [6334] = {.count = 1, .reusable = true}, SHIFT(2773), + [6336] = {.count = 1, .reusable = false}, SHIFT(2775), + [6338] = {.count = 1, .reusable = true}, SHIFT(2775), + [6340] = {.count = 1, .reusable = true}, SHIFT(2774), + [6342] = {.count = 1, .reusable = false}, SHIFT(2777), + [6344] = {.count = 1, .reusable = true}, SHIFT(2777), + [6346] = {.count = 1, .reusable = true}, SHIFT(2776), + [6348] = {.count = 1, .reusable = true}, SHIFT(2778), + [6350] = {.count = 1, .reusable = true}, SHIFT(2779), + [6352] = {.count = 1, .reusable = true}, SHIFT(2780), + [6354] = {.count = 1, .reusable = true}, SHIFT(2781), + [6356] = {.count = 1, .reusable = true}, SHIFT(2782), + [6358] = {.count = 1, .reusable = true}, SHIFT(2783), + [6360] = {.count = 1, .reusable = true}, SHIFT(2784), + [6362] = {.count = 1, .reusable = true}, SHIFT(2785), + [6364] = {.count = 1, .reusable = true}, SHIFT(2786), + [6366] = {.count = 1, .reusable = true}, SHIFT(2787), + [6368] = {.count = 1, .reusable = true}, SHIFT(2788), + [6370] = {.count = 1, .reusable = true}, SHIFT(2789), + [6372] = {.count = 1, .reusable = true}, SHIFT(2790), + [6374] = {.count = 1, .reusable = true}, SHIFT(2791), + [6376] = {.count = 1, .reusable = true}, SHIFT(2792), + [6378] = {.count = 1, .reusable = true}, SHIFT(2793), + [6380] = {.count = 1, .reusable = true}, SHIFT(2794), + [6382] = {.count = 1, .reusable = true}, SHIFT(2795), + [6384] = {.count = 1, .reusable = true}, SHIFT(2796), + [6386] = {.count = 1, .reusable = false}, SHIFT(2797), + [6388] = {.count = 1, .reusable = true}, SHIFT(2797), + [6390] = {.count = 1, .reusable = true}, SHIFT(2798), + [6392] = {.count = 1, .reusable = false}, SHIFT(2799), + [6394] = {.count = 1, .reusable = true}, SHIFT(2799), + [6396] = {.count = 1, .reusable = true}, SHIFT(2800), + [6398] = {.count = 1, .reusable = false}, SHIFT(2801), + [6400] = {.count = 1, .reusable = true}, SHIFT(2801), + [6402] = {.count = 1, .reusable = true}, SHIFT(2802), + [6404] = {.count = 1, .reusable = true}, SHIFT(2803), + [6406] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), + [6408] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), + [6410] = {.count = 1, .reusable = true}, SHIFT(2806), + [6412] = {.count = 1, .reusable = true}, SHIFT(2807), + [6414] = {.count = 1, .reusable = false}, SHIFT(2808), + [6416] = {.count = 1, .reusable = true}, SHIFT(2809), + [6418] = {.count = 1, .reusable = false}, SHIFT(2810), + [6420] = {.count = 1, .reusable = false}, SHIFT(2811), + [6422] = {.count = 1, .reusable = true}, SHIFT(2813), + [6424] = {.count = 1, .reusable = true}, SHIFT(2814), + [6426] = {.count = 1, .reusable = true}, SHIFT(2815), + [6428] = {.count = 1, .reusable = true}, SHIFT(2816), + [6430] = {.count = 1, .reusable = true}, SHIFT(2427), + [6432] = {.count = 1, .reusable = true}, SHIFT(2428), + [6434] = {.count = 1, .reusable = true}, SHIFT(2429), + [6436] = {.count = 1, .reusable = true}, SHIFT(2430), + [6438] = {.count = 1, .reusable = true}, SHIFT(2817), + [6440] = {.count = 1, .reusable = false}, SHIFT(2819), + [6442] = {.count = 1, .reusable = false}, SHIFT(2820), + [6444] = {.count = 1, .reusable = true}, SHIFT(2821), + [6446] = {.count = 1, .reusable = true}, SHIFT(2822), + [6448] = {.count = 1, .reusable = false}, SHIFT(2824), + [6450] = {.count = 1, .reusable = true}, SHIFT(2824), + [6452] = {.count = 1, .reusable = true}, SHIFT(2823), + [6454] = {.count = 1, .reusable = true}, SHIFT(2825), + [6456] = {.count = 1, .reusable = true}, SHIFT(2826), + [6458] = {.count = 1, .reusable = false}, SHIFT(2827), + [6460] = {.count = 1, .reusable = false}, SHIFT(2826), + [6462] = {.count = 1, .reusable = true}, SHIFT(2829), + [6464] = {.count = 1, .reusable = false}, SHIFT(2831), + [6466] = {.count = 1, .reusable = true}, SHIFT(2831), + [6468] = {.count = 1, .reusable = true}, SHIFT(2830), + [6470] = {.count = 1, .reusable = true}, SHIFT(2832), + [6472] = {.count = 1, .reusable = false}, SHIFT(2834), + [6474] = {.count = 1, .reusable = true}, SHIFT(2834), + [6476] = {.count = 1, .reusable = true}, SHIFT(2833), + [6478] = {.count = 1, .reusable = true}, SHIFT(2835), + [6480] = {.count = 1, .reusable = true}, SHIFT(2836), + [6482] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2422), + [6485] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2423), + [6488] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2424), + [6491] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2425), + [6494] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2426), + [6497] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2427), + [6500] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2428), + [6503] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2429), + [6506] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2430), + [6509] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2431), + [6512] = {.count = 1, .reusable = true}, SHIFT(2837), + [6514] = {.count = 1, .reusable = true}, SHIFT(2439), + [6516] = {.count = 1, .reusable = true}, SHIFT(2440), + [6518] = {.count = 1, .reusable = true}, SHIFT(2441), + [6520] = {.count = 1, .reusable = true}, SHIFT(2442), + [6522] = {.count = 1, .reusable = false}, SHIFT(2839), + [6524] = {.count = 1, .reusable = false}, SHIFT(2840), + [6526] = {.count = 1, .reusable = true}, SHIFT(2841), + [6528] = {.count = 1, .reusable = true}, SHIFT(2842), + [6530] = {.count = 1, .reusable = false}, SHIFT(2844), + [6532] = {.count = 1, .reusable = true}, SHIFT(2844), + [6534] = {.count = 1, .reusable = true}, SHIFT(2843), + [6536] = {.count = 1, .reusable = true}, SHIFT(2845), + [6538] = {.count = 1, .reusable = true}, SHIFT(2846), + [6540] = {.count = 1, .reusable = false}, SHIFT(2847), + [6542] = {.count = 1, .reusable = false}, SHIFT(2846), + [6544] = {.count = 1, .reusable = true}, SHIFT(2849), + [6546] = {.count = 1, .reusable = false}, SHIFT(2851), + [6548] = {.count = 1, .reusable = true}, SHIFT(2851), + [6550] = {.count = 1, .reusable = true}, SHIFT(2850), + [6552] = {.count = 1, .reusable = true}, SHIFT(2852), + [6554] = {.count = 1, .reusable = false}, SHIFT(2854), + [6556] = {.count = 1, .reusable = true}, SHIFT(2854), + [6558] = {.count = 1, .reusable = true}, SHIFT(2853), + [6560] = {.count = 1, .reusable = true}, SHIFT(2855), + [6562] = {.count = 1, .reusable = true}, SHIFT(2856), + [6564] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2435), + [6567] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2436), + [6570] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2437), + [6573] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2438), + [6576] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2439), + [6579] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2440), + [6582] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2441), + [6585] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2442), + [6588] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2443), + [6591] = {.count = 1, .reusable = true}, SHIFT(2858), + [6593] = {.count = 1, .reusable = true}, SHIFT(2859), + [6595] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2450), + [6598] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2452), + [6601] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2453), + [6604] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2451), + [6607] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2454), + [6610] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2455), + [6613] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [6615] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [6617] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [6619] = {.count = 1, .reusable = false}, SHIFT(2862), + [6621] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [6623] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [6625] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [6627] = {.count = 1, .reusable = false}, SHIFT(2863), + [6629] = {.count = 1, .reusable = false}, SHIFT(2864), + [6631] = {.count = 1, .reusable = true}, SHIFT(2865), + [6633] = {.count = 1, .reusable = false}, SHIFT(2870), + [6635] = {.count = 1, .reusable = true}, SHIFT(2871), + [6637] = {.count = 1, .reusable = true}, SHIFT(2875), + [6639] = {.count = 1, .reusable = true}, SHIFT(2876), + [6641] = {.count = 1, .reusable = true}, SHIFT(2877), + [6643] = {.count = 1, .reusable = true}, SHIFT(2878), + [6645] = {.count = 1, .reusable = false}, SHIFT(2879), + [6647] = {.count = 1, .reusable = true}, SHIFT(2879), + [6649] = {.count = 1, .reusable = true}, SHIFT(2880), + [6651] = {.count = 1, .reusable = false}, SHIFT(2881), + [6653] = {.count = 1, .reusable = true}, SHIFT(2881), + [6655] = {.count = 1, .reusable = true}, SHIFT(2882), + [6657] = {.count = 1, .reusable = false}, SHIFT(2883), + [6659] = {.count = 1, .reusable = true}, SHIFT(2883), + [6661] = {.count = 1, .reusable = true}, SHIFT(2884), + [6663] = {.count = 1, .reusable = true}, SHIFT(2885), + [6665] = {.count = 1, .reusable = true}, SHIFT(2886), + [6667] = {.count = 1, .reusable = true}, SHIFT(2887), + [6669] = {.count = 1, .reusable = true}, SHIFT(2888), + [6671] = {.count = 1, .reusable = true}, SHIFT(2890), + [6673] = {.count = 1, .reusable = true}, SHIFT(2891), + [6675] = {.count = 1, .reusable = true}, SHIFT(2892), + [6677] = {.count = 1, .reusable = false}, SHIFT(2893), + [6679] = {.count = 1, .reusable = true}, SHIFT(2893), + [6681] = {.count = 1, .reusable = false}, SHIFT(2894), + [6683] = {.count = 1, .reusable = true}, SHIFT(2895), + [6685] = {.count = 1, .reusable = true}, SHIFT(2897), + [6687] = {.count = 1, .reusable = true}, SHIFT(2898), + [6689] = {.count = 1, .reusable = true}, SHIFT(2899), + [6691] = {.count = 1, .reusable = true}, SHIFT(2900), + [6693] = {.count = 1, .reusable = true}, SHIFT(2901), + [6695] = {.count = 1, .reusable = true}, SHIFT(2902), + [6697] = {.count = 1, .reusable = false}, SHIFT(2903), + [6699] = {.count = 1, .reusable = true}, SHIFT(2903), + [6701] = {.count = 1, .reusable = true}, SHIFT(2904), + [6703] = {.count = 1, .reusable = false}, SHIFT(2905), + [6705] = {.count = 1, .reusable = true}, SHIFT(2905), + [6707] = {.count = 1, .reusable = true}, SHIFT(2906), + [6709] = {.count = 1, .reusable = true}, SHIFT(2907), + [6711] = {.count = 1, .reusable = true}, SHIFT(2908), + [6713] = {.count = 1, .reusable = false}, SHIFT(2911), + [6715] = {.count = 1, .reusable = true}, SHIFT(2911), + [6717] = {.count = 1, .reusable = true}, SHIFT(2912), + [6719] = {.count = 1, .reusable = true}, SHIFT(2913), + [6721] = {.count = 1, .reusable = false}, SHIFT(2914), + [6723] = {.count = 1, .reusable = true}, SHIFT(2914), + [6725] = {.count = 1, .reusable = true}, SHIFT(2915), + [6727] = {.count = 1, .reusable = true}, SHIFT(2916), + [6729] = {.count = 1, .reusable = true}, SHIFT(2917), + [6731] = {.count = 1, .reusable = true}, SHIFT(2918), + [6733] = {.count = 1, .reusable = true}, SHIFT(2920), + [6735] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2654), + [6738] = {.count = 1, .reusable = false}, SHIFT(2922), + [6740] = {.count = 1, .reusable = true}, SHIFT(2923), + [6742] = {.count = 1, .reusable = false}, SHIFT(2924), + [6744] = {.count = 1, .reusable = true}, SHIFT(2925), + [6746] = {.count = 1, .reusable = true}, SHIFT(2927), + [6748] = {.count = 1, .reusable = true}, SHIFT(2928), + [6750] = {.count = 1, .reusable = true}, SHIFT(2929), + [6752] = {.count = 1, .reusable = true}, SHIFT(2930), + [6754] = {.count = 1, .reusable = false}, SHIFT(2932), + [6756] = {.count = 1, .reusable = true}, SHIFT(2932), + [6758] = {.count = 1, .reusable = true}, SHIFT(2931), + [6760] = {.count = 1, .reusable = true}, SHIFT(2933), + [6762] = {.count = 1, .reusable = false}, SHIFT(2935), + [6764] = {.count = 1, .reusable = true}, SHIFT(2935), + [6766] = {.count = 1, .reusable = true}, SHIFT(2934), + [6768] = {.count = 1, .reusable = false}, SHIFT(2937), + [6770] = {.count = 1, .reusable = true}, SHIFT(2937), + [6772] = {.count = 1, .reusable = true}, SHIFT(2936), + [6774] = {.count = 1, .reusable = true}, SHIFT(2938), + [6776] = {.count = 1, .reusable = true}, SHIFT(2939), + [6778] = {.count = 1, .reusable = true}, SHIFT(2940), + [6780] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2674), + [6783] = {.count = 1, .reusable = false}, SHIFT(2941), + [6785] = {.count = 1, .reusable = true}, SHIFT(2942), + [6787] = {.count = 1, .reusable = false}, SHIFT(2943), + [6789] = {.count = 1, .reusable = true}, SHIFT(2944), + [6791] = {.count = 1, .reusable = true}, SHIFT(2946), + [6793] = {.count = 1, .reusable = true}, SHIFT(2947), + [6795] = {.count = 1, .reusable = true}, SHIFT(2948), + [6797] = {.count = 1, .reusable = true}, SHIFT(2949), + [6799] = {.count = 1, .reusable = false}, SHIFT(2951), + [6801] = {.count = 1, .reusable = true}, SHIFT(2951), + [6803] = {.count = 1, .reusable = true}, SHIFT(2950), + [6805] = {.count = 1, .reusable = true}, SHIFT(2952), + [6807] = {.count = 1, .reusable = false}, SHIFT(2954), + [6809] = {.count = 1, .reusable = true}, SHIFT(2954), + [6811] = {.count = 1, .reusable = true}, SHIFT(2953), + [6813] = {.count = 1, .reusable = false}, SHIFT(2956), + [6815] = {.count = 1, .reusable = true}, SHIFT(2956), + [6817] = {.count = 1, .reusable = true}, SHIFT(2955), + [6819] = {.count = 1, .reusable = true}, SHIFT(2957), + [6821] = {.count = 1, .reusable = true}, SHIFT(2958), + [6823] = {.count = 1, .reusable = true}, SHIFT(2959), + [6825] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), + [6827] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6829] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6831] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), + [6833] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), + [6835] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), + [6837] = {.count = 1, .reusable = false}, SHIFT(2961), + [6839] = {.count = 1, .reusable = true}, SHIFT(2962), + [6841] = {.count = 1, .reusable = false}, SHIFT(2965), + [6843] = {.count = 1, .reusable = true}, SHIFT(2966), + [6845] = {.count = 1, .reusable = true}, SHIFT(2969), + [6847] = {.count = 1, .reusable = true}, SHIFT(2970), + [6849] = {.count = 1, .reusable = true}, SHIFT(2971), + [6851] = {.count = 1, .reusable = true}, SHIFT(2972), + [6853] = {.count = 1, .reusable = true}, SHIFT(2973), + [6855] = {.count = 1, .reusable = true}, SHIFT(2974), + [6857] = {.count = 1, .reusable = true}, SHIFT(2975), + [6859] = {.count = 1, .reusable = false}, SHIFT(2976), + [6861] = {.count = 1, .reusable = true}, SHIFT(2976), + [6863] = {.count = 1, .reusable = true}, SHIFT(2977), + [6865] = {.count = 1, .reusable = false}, SHIFT(2978), + [6867] = {.count = 1, .reusable = true}, SHIFT(2978), + [6869] = {.count = 1, .reusable = true}, SHIFT(2979), + [6871] = {.count = 1, .reusable = false}, SHIFT(2980), + [6873] = {.count = 1, .reusable = true}, SHIFT(2980), + [6875] = {.count = 1, .reusable = true}, SHIFT(2981), + [6877] = {.count = 1, .reusable = true}, SHIFT(2982), + [6879] = {.count = 1, .reusable = true}, SHIFT(2983), + [6881] = {.count = 1, .reusable = true}, SHIFT(2984), + [6883] = {.count = 1, .reusable = true}, SHIFT(2986), + [6885] = {.count = 1, .reusable = true}, SHIFT(2987), + [6887] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2809), + [6890] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2810), + [6893] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2811), + [6896] = {.count = 1, .reusable = true}, SHIFT(2989), + [6898] = {.count = 1, .reusable = true}, SHIFT(2990), + [6900] = {.count = 1, .reusable = true}, SHIFT(2991), + [6902] = {.count = 1, .reusable = true}, SHIFT(2992), + [6904] = {.count = 1, .reusable = false}, SHIFT(2993), + [6906] = {.count = 1, .reusable = true}, SHIFT(2993), + [6908] = {.count = 1, .reusable = false}, SHIFT(2994), + [6910] = {.count = 1, .reusable = true}, SHIFT(2995), + [6912] = {.count = 1, .reusable = true}, SHIFT(2997), + [6914] = {.count = 1, .reusable = true}, SHIFT(2998), + [6916] = {.count = 1, .reusable = true}, SHIFT(2999), + [6918] = {.count = 1, .reusable = true}, SHIFT(3000), + [6920] = {.count = 1, .reusable = true}, SHIFT(3001), + [6922] = {.count = 1, .reusable = true}, SHIFT(3002), + [6924] = {.count = 1, .reusable = false}, SHIFT(3003), + [6926] = {.count = 1, .reusable = true}, SHIFT(3003), + [6928] = {.count = 1, .reusable = true}, SHIFT(3004), + [6930] = {.count = 1, .reusable = false}, SHIFT(3005), + [6932] = {.count = 1, .reusable = true}, SHIFT(3005), + [6934] = {.count = 1, .reusable = true}, SHIFT(3006), + [6936] = {.count = 1, .reusable = true}, SHIFT(3007), + [6938] = {.count = 1, .reusable = true}, SHIFT(3008), + [6940] = {.count = 1, .reusable = false}, SHIFT(3009), + [6942] = {.count = 1, .reusable = true}, SHIFT(3009), + [6944] = {.count = 1, .reusable = false}, SHIFT(3010), + [6946] = {.count = 1, .reusable = true}, SHIFT(3011), + [6948] = {.count = 1, .reusable = true}, SHIFT(3013), + [6950] = {.count = 1, .reusable = true}, SHIFT(3014), + [6952] = {.count = 1, .reusable = true}, SHIFT(3015), + [6954] = {.count = 1, .reusable = true}, SHIFT(3016), + [6956] = {.count = 1, .reusable = true}, SHIFT(3017), + [6958] = {.count = 1, .reusable = true}, SHIFT(3018), + [6960] = {.count = 1, .reusable = false}, SHIFT(3019), + [6962] = {.count = 1, .reusable = true}, SHIFT(3019), + [6964] = {.count = 1, .reusable = true}, SHIFT(3020), + [6966] = {.count = 1, .reusable = false}, SHIFT(3021), + [6968] = {.count = 1, .reusable = true}, SHIFT(3021), + [6970] = {.count = 1, .reusable = false}, SHIFT(3022), + [6972] = {.count = 1, .reusable = false}, SHIFT(3023), + [6974] = {.count = 1, .reusable = true}, SHIFT(3024), + [6976] = {.count = 1, .reusable = true}, SHIFT(3025), + [6978] = {.count = 1, .reusable = true}, SHIFT(3026), + [6980] = {.count = 1, .reusable = true}, SHIFT(3029), + [6982] = {.count = 1, .reusable = true}, SHIFT(3030), + [6984] = {.count = 1, .reusable = true}, SHIFT(3031), + [6986] = {.count = 1, .reusable = true}, SHIFT(3032), + [6988] = {.count = 1, .reusable = false}, SHIFT(3033), + [6990] = {.count = 1, .reusable = true}, SHIFT(3033), + [6992] = {.count = 1, .reusable = true}, SHIFT(3034), + [6994] = {.count = 1, .reusable = false}, SHIFT(3035), + [6996] = {.count = 1, .reusable = true}, SHIFT(3035), + [6998] = {.count = 1, .reusable = true}, SHIFT(3036), + [7000] = {.count = 1, .reusable = false}, SHIFT(3037), + [7002] = {.count = 1, .reusable = true}, SHIFT(3037), + [7004] = {.count = 1, .reusable = true}, SHIFT(3038), + [7006] = {.count = 1, .reusable = true}, SHIFT(3039), + [7008] = {.count = 1, .reusable = true}, SHIFT(3040), + [7010] = {.count = 1, .reusable = true}, SHIFT(3041), + [7012] = {.count = 1, .reusable = true}, SHIFT(3042), + [7014] = {.count = 1, .reusable = true}, SHIFT(3043), + [7016] = {.count = 1, .reusable = false}, SHIFT(3044), + [7018] = {.count = 1, .reusable = true}, SHIFT(3044), + [7020] = {.count = 1, .reusable = true}, SHIFT(3045), + [7022] = {.count = 1, .reusable = false}, SHIFT(3046), + [7024] = {.count = 1, .reusable = true}, SHIFT(3046), + [7026] = {.count = 1, .reusable = true}, SHIFT(3047), + [7028] = {.count = 1, .reusable = false}, SHIFT(3048), + [7030] = {.count = 1, .reusable = true}, SHIFT(3048), + [7032] = {.count = 1, .reusable = true}, SHIFT(3049), + [7034] = {.count = 1, .reusable = true}, SHIFT(3050), + [7036] = {.count = 1, .reusable = true}, SHIFT(3051), + [7038] = {.count = 1, .reusable = true}, SHIFT(3052), + [7040] = {.count = 1, .reusable = true}, SHIFT(3053), + [7042] = {.count = 1, .reusable = true}, SHIFT(3054), + [7044] = {.count = 1, .reusable = true}, SHIFT(3055), + [7046] = {.count = 1, .reusable = true}, SHIFT(3056), }; void *tree_sitter_bash_external_scanner_create();